insmod sbd.ko error ??
insmod sbd.ko error ??
Posted Aug 13, 2007 8:48 UTC (Mon) by midhun001 (guest, #46739)In reply to: insmod sbd.ko error ?? by sahib
Parent article: A simple block driver
Hi All,
Even I got the same error. Please share it with me if you tion for this.
-Midhun
Posted Nov 3, 2007 0:39 UTC (Sat)
by rbartlett (guest, #48846)
[Link]
insmod sbd.ko error ??
The "sbd0: unknown partition table" is normal. The allocated memory is uninitialized when the
module is first loaded so it can't contain a valid partition table. You can either use sfdisk
or mkfs to create a partition table or file system in the allocated memory. If mkfs is used,
the driver may subsequently be mounted.
I had to make a few minor changes to the driver to get it to this point. I had to add the
following line to the sbd_ops structure:
".getgeo = sbd_blk_getgeo"
Then I had to create a function sbd_blk_getgeo with the code from the HDIO_GETGEO case from
the sbd_ioctl function. This was because sfdisk complained that "Disk /dev/sbd0: cannot get
geometry".
The last thing I had to do was change "geo.start = 4" to geo.start = 0". This was because
sfdisk complained that "Warning: start=4 - this looks like a partition rather than the entire
disk. Using fdisk on it is probably meaningless."
Once these changes were made, I was able to use sfdisk and mkfs on the device and mount it as
well.