obsolete flag s_rd_only in struct super_block

Uwe Ohse (uwe@tirka.gun.de)
Thu, 29 Feb 1996 09:53:12 +0100


Struct super_block in include/linux/fs.h contains an obsolete element:

unsigned char s_rd_only;

It is still initialized to 0 in fs/super.c but has no real use anymore
because it is obsoleted by MS_RDONLY.

include/linux/fs.h: unsigned char s_rd_only;
fs/super.c: s->s_rd_only = 0;
fs/super.c: sb->s_rd_only = 0;

Uwe