From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751980Ab1ARMeG (ORCPT ); Tue, 18 Jan 2011 07:34:06 -0500 Received: from fxip-0047f.externet.hu ([88.209.222.127]:48414 "EHLO pomaz-ex.szeredi.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751131Ab1ARMdb (ORCPT ); Tue, 18 Jan 2011 07:33:31 -0500 Message-Id: <20110118123317.507750355@szeredi.hu> References: <20110118123233.712697250@szeredi.hu> User-Agent: quilt/0.46-1 Date: Tue, 18 Jan 2011 13:32:37 +0100 From: Miklos Szeredi To: viro@zeniv.linux.org.uk Cc: dave@linux.vnet.ibm.com, akpm@linux-foundation.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v4 4/4] vfs: fs_may_remount_ro: turn unnecessary check into a WARN_ON Content-Disposition: inline; filename=vfs-remove-unnecessary-remount-check.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Miklos Szeredi Now a successful sb_prepare_remount_readonly() should ensure that no writable files remain for this superblock. So turn this check into a WARN_ON. Signed-off-by: Miklos Szeredi --- fs/file_table.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) Index: linux-2.6/fs/file_table.c =================================================================== --- linux-2.6.orig/fs/file_table.c 2011-01-18 09:01:20.000000000 +0100 +++ linux-2.6/fs/file_table.c 2011-01-18 12:39:21.000000000 +0100 @@ -436,8 +436,11 @@ int fs_may_remount_ro(struct super_block if (inode->i_nlink == 0) goto too_bad; - /* Writeable file? */ - if (S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE)) + /* + * Writable file? + * Should be caught by sb_prepare_remount_readonly(). + */ + if (WARN_ON(S_ISREG(inode->i_mode) && (file->f_mode & FMODE_WRITE))) goto too_bad; } while_file_list_for_each_entry; lg_global_unlock(files_lglock); --