View | Details | Raw Unified | Return to bug 217807
Collapse All | Expand All

(-)yast2-storage-2.14.16/libstorage/src/DmraidCo.cc.orig (-1 lines)
Lines 18-24 DmraidCo::DmraidCo( Storage * const s, c Link Here
18
    DmPartCo(s, "/dev/mapper/"+Name, staticType(), ppart )
18
    DmPartCo(s, "/dev/mapper/"+Name, staticType(), ppart )
19
    {
19
    {
20
    DmPartCo::init( ppart );
20
    DmPartCo::init( ppart );
21
    getRaidData( Name );
22
    y2debug( "constructing dmraid co %s", Name.c_str() );
21
    y2debug( "constructing dmraid co %s", Name.c_str() );
23
    }
22
    }
24
23
(-)yast2-storage-2.14.16/libstorage/src/Storage.cc.orig (+1 lines)
Lines 607-612 Storage::detectDmraid( ProcPart& ppart ) Link Here
607
	DmraidCo::getRaids( l );
607
	DmraidCo::getRaids( l );
608
	for( list<string>::const_iterator i=l.begin(); i!=l.end(); ++i )
608
	for( list<string>::const_iterator i=l.begin(); i!=l.end(); ++i )
609
	    {
609
	    {
610
	    DmraidCo::getRaidData( *i );
610
	    DmraidCo * v = new DmraidCo( this, *i, ppart );
611
	    DmraidCo * v = new DmraidCo( this, *i, ppart );
611
	    if( v->isValid() )
612
	    if( v->isValid() )
612
		{
613
		{

Return to bug 217807