Bug 496394 - disk I/O error in installation process
Summary: disk I/O error in installation process
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Fedora
Classification: Fedora
Component: kernel
Version: 11
Hardware: x86_64
OS: Linux
low
medium
Target Milestone: ---
Assignee: Kernel Maintainer List
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard: anaconda_trace_hash:9d3acd72cee64664d...
: 496393 (view as bug list)
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2009-04-18 16:44 UTC by ENDOH takanao
Modified: 2014-11-19 09:35 UTC (History)
5 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2010-06-28 12:04:55 UTC
Type: ---
Embargoed:
djmchl: needinfo-


Attachments (Terms of Use)
Attached traceback automatically from anaconda. (164.31 KB, text/plain)
2009-04-18 16:44 UTC, ENDOH takanao
no flags Details

Description ENDOH takanao 2009-04-18 16:44:25 UTC
This bug was filed automatically by anaconda.

Comment 1 ENDOH takanao 2009-04-18 16:44:31 UTC
Created attachment 340164 [details]
Attached traceback automatically from anaconda.

Comment 2 Chris Lumens 2009-04-20 14:01:05 UTC
Reassigning to kernel on the basis of the many log messages like these:

<4>raid10_make_request bug: can't convert block across chunks or bigger than 256k 1752056 68
<4>raid10_make_request bug: can't convert block across chunks or bigger than 256k 1752440 124
<4>raid10_make_request bug: can't convert block across chunks or bigger than 256k 1752952 124
<4>raid10_make_request bug: can't convert block across chunks or bigger than 256k 1753464 124

Comment 3 Chris Lumens 2009-04-20 14:34:46 UTC
*** Bug 496393 has been marked as a duplicate of this bug. ***

Comment 4 Chuck Ebbert 2009-04-21 19:12:22 UTC
What kind of disk setup caused this? Is there an LVM volume on top of the raid10 array?

Comment 5 Chuck Ebbert 2009-04-21 19:18:47 UTC
drivers/md/raid10.c:make_request():

        /* If this request crosses a chunk boundary, we need to
         * split it.  This will only happen for 1 PAGE (or less) requests.
         */
        if (unlikely( (bio->bi_sector & conf->chunk_mask) + (bio->bi_size >> 9)
                      > chunk_sects &&
                    conf->near_copies < conf->raid_disks)) {
                struct bio_pair *bp;
                /* Sanity check -- queue functions should prevent this happening */
                if (bio->bi_vcnt != 1 ||
                    bio->bi_idx != 0)
                        goto bad_map;
                /* This is a one page bio that upper layers
                 * refuse to split for us, so we need to split it.
                 */
                bp = bio_split(bio,
                               chunk_sects - (bio->bi_sector & (chunk_sects - 1)) );
                if (make_request(q, &bp->bio1))
                        generic_make_request(&bp->bio1);
                if (make_request(q, &bp->bio2))
                        generic_make_request(&bp->bio2);

                bio_pair_release(bp);
                return 0;
        bad_map:
                printk("raid10_make_request bug: can't convert block across chunks"
                       " or bigger than %dk %llu %d\n", chunk_sects/2,
                       (unsigned long long)bio->bi_sector, bio->bi_size >> 10);
 
                bio_io_error(bio);
                return 0;
        }

Comment 6 Bug Zapper 2009-06-09 14:04:34 UTC
This bug appears to have been reported against 'rawhide' during the Fedora 11 development cycle.
Changing version to '11'.

More information and reason for this action is here:
http://fedoraproject.org/wiki/BugZappers/HouseKeeping

Comment 7 Bug Zapper 2010-04-27 13:46:01 UTC
This message is a reminder that Fedora 11 is nearing its end of life.
Approximately 30 (thirty) days from now Fedora will stop maintaining
and issuing updates for Fedora 11.  It is Fedora's policy to close all
bug reports from releases that are no longer maintained.  At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '11'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 11's end of life.

Bug Reporter: Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 11 is end of life.  If you 
would still like to see this bug fixed and are able to reproduce it 
against a later version of Fedora please change the 'version' of this 
bug to the applicable version.  If you are unable to change the version, 
please add a comment here and someone will do it for you.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events.  Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

The process we are following is described here: 
http://fedoraproject.org/wiki/BugZappers/HouseKeeping

Comment 8 Bug Zapper 2010-06-28 12:04:55 UTC
Fedora 11 changed to end-of-life (EOL) status on 2010-06-25. Fedora 11 is 
no longer maintained, which means that it will not receive any further 
security or bug fix updates. As a result we are closing this bug.

If you can reproduce this bug against a currently maintained version of 
Fedora please feel free to reopen this bug against that version.

Thank you for reporting this bug and we are sorry it could not be fixed.


Note You need to log in before you can comment on or make changes to this bug.