> diff --git a/storage/devices.py b/storage/devices.py > index d31ceae..ead7ae8 100644 > --- a/storage/devices.py > +++ b/storage/devices.py > @@ -305,6 +305,7 @@ class Device(object): > > def setupParents(self): > """ Run setup method of all parent devices. """ > + log_method_call(self, name=self.name, kids=self.kids) > for parent in self.parents: > parent.setup() > > @@ -2972,6 +2973,8 @@ class MultipathDevice(DMDevice): > return "WWID %s" % (self.wwid,) > > def addParent(self, parent): > + """ Add a parent device to the mpath. """ > + log_method_call(self, self.name, status=self.status) > if self.status: > self.teardown() > self.parents.append(parent) Looks obviously right. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list