2.6.35-longterm review patch. If anyone has any objections, please let me know.
------------------ From: OGAWA Hirofumi <[email protected]> commit 1adffbae22332bb558c2a29de19d9aca391869f6 upstream. We are clearly missing '~' in fat_ioctl_set_attributes(). Reported-by: Dmitry Dmitriev <[email protected]> Signed-off-by: OGAWA Hirofumi <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Andi Kleen <[email protected]> --- fs/fat/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.35.y/fs/fat/file.c =================================================================== --- linux-2.6.35.y.orig/fs/fat/file.c +++ linux-2.6.35.y/fs/fat/file.c @@ -102,7 +102,7 @@ static int fat_ioctl_set_attributes(stru if (attr & ATTR_SYS) inode->i_flags |= S_IMMUTABLE; else - inode->i_flags &= S_IMMUTABLE; + inode->i_flags &= ~S_IMMUTABLE; } fat_save_attrs(inode, attr); _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
