Re: [PATCH v3 1/5] fat: modify nfs mount option

2012-09-23 Thread Namjae Jeon
2012/9/22, OGAWA Hirofumi : > Namjae Jeon writes: > >> +case Opt_nfs_full: >> +opts->nfs = FAT_NFS_FULL; >> +break; >> +case Opt_nfs_limited: >> +opts->nfs = FAT_NFS_LIMITED; >> +sb->s_flags |=

Re: [PATCH v3 1/5] fat: modify nfs mount option

2012-09-22 Thread OGAWA Hirofumi
Namjae Jeon writes: > + case Opt_nfs_full: > + opts->nfs = FAT_NFS_FULL; > + break; > + case Opt_nfs_limited: > + opts->nfs = FAT_NFS_LIMITED; > + sb->s_flags |= MS_RDONLY; > +

[PATCH v3 1/5] fat: modify nfs mount option

2012-09-16 Thread Namjae Jeon
From: Namjae Jeon Provide two possible values 'full_unstable' and 'limited_stable' for the -o nfs mount option.The first one allows all file operations but does not reduce ESTALE errors on memory constrained systems. The second one eliminates ESTALE errors but mounts the filesystem as read-only.