Mailinglist Archive: opensuse-bugs (15113 mails)
| < Previous | Next > |
[Bug 308256] mkfs. minix creates invalid filesystem on flash disk with 2KB sectors
- From: bugzilla_noreply@xxxxxxxxxx
- Date: Fri, 14 Sep 2007 04:12:52 -0600 (MDT)
- Message-id: <20070914101252.14ACDCC789@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=308256#c2
Matthias Koenig <mkoenig@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
--- Comment #2 from Matthias Koenig <mkoenig@xxxxxxxxxx> 2007-09-14 04:12:51 MST ---
This seems to be a MINIX problem, minix-fs (< v3) has a fixed block size of
1024 bytes.
The kernel does not allow to mount a filesystem which has a block size that is
smaller than the physical sector size:
fs/block_dev.c: set_blocksize(struct block_device *bdev, int size)
/* Size cannot be smaller than the size supported by the device */
if (size < bdev_hardsect_size(bdev))
return -EINVAL;
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Matthias Koenig <mkoenig@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
--- Comment #2 from Matthias Koenig <mkoenig@xxxxxxxxxx> 2007-09-14 04:12:51 MST ---
This seems to be a MINIX problem, minix-fs (< v3) has a fixed block size of
1024 bytes.
The kernel does not allow to mount a filesystem which has a block size that is
smaller than the physical sector size:
fs/block_dev.c: set_blocksize(struct block_device *bdev, int size)
/* Size cannot be smaller than the size supported by the device */
if (size < bdev_hardsect_size(bdev))
return -EINVAL;
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
| < Previous | Next > |