Re: Weirdness of "mount -o remount,rw" with write-protected floppy
From: Jon Masters
Date: Sat Oct 29 2005 - 07:00:02 EST
On 10/27/05, Jon Masters <jonmasters@xxxxxxxxx> wrote:
> On 10/27/05, Evgeny Stambulchik <Evgeny.Stambulchik@xxxxxxxxxxxxxx> wrote:
>
> > # mount /dev/fd0 /mnt/floppy/
> > mount: block device /dev/fd0 is write-protected, mounting read-only
> > # mount -o remount,rw /mnt/floppy
> > # echo $?
> > 0
>
> Oops. That looks like a bug.
Callchain is:
sys_mount -> do_mount -> do_remount
and that then calls:
do_remount_sb
which does:
if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev))
return -EACCES;
So I'm missing something. I'll have another look, it's failing somewhere else.
Jon.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/