Re: [PATCH 3/9] Use new functions for conversion between size and sector count.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> > > +def sectorsToSize(sectors, sectorSize):
> > > +    """ Convert length in sectors to size in MB.
> > > +
> > > +        Arguments:
> > > +
> > > +            sectors     -   sector count
> > > +            sectorSize  -   sector size for the device, in bytes
> > > +    """
> > > +    return (sectors * sectorSize) / (1024.0 * 1024.0)

parted.Device has a getSize() method that already covers this one.  You
can even pass it a unit to return the size in, MB by default.

> > > +def sizeToSectors(size, sectorSize):
> > > +    """ Convert size in MB to length in sectors.
> > > +
> > > +        Arguments:
> > > +
> > > +            size        -   size in MB
> > > +            sectorSize  -   sector size for the device, in bytes
> > > +    """
> > > +    return (size * 1024.0 * 1024.0) / sectorSize

We don't have an equivalent method for this, though that could easily be
added.

- Chris

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux