diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2009-05-19 09:25:16 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-05-19 09:25:16 -0400 |
commit | ef9e8b14a5c1d0afbaf12b4c3b271188ddfc52a4 (patch) | |
tree | a0cf0f3e57484a1f897bae07af57870eff841c9a /fs/gfs2 | |
parent | e9ccb73ab57ada469602506496c42e5b4468ac3e (diff) |
GFS2: Don't warn when delete inode fails on ro filesystem
If the filesystem is read-only, then we expect that delete inode
will fail, so there is no need to warn about it.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/ops_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_super.c b/fs/gfs2/ops_super.c index a3c2272e7cad..2fd1dcbcc5b7 100644 --- a/fs/gfs2/ops_super.c +++ b/fs/gfs2/ops_super.c | |||
@@ -714,7 +714,7 @@ out_unlock: | |||
714 | gfs2_glock_dq(&ip->i_iopen_gh); | 714 | gfs2_glock_dq(&ip->i_iopen_gh); |
715 | gfs2_holder_uninit(&ip->i_iopen_gh); | 715 | gfs2_holder_uninit(&ip->i_iopen_gh); |
716 | gfs2_glock_dq_uninit(&gh); | 716 | gfs2_glock_dq_uninit(&gh); |
717 | if (error && error != GLR_TRYFAILED) | 717 | if (error && error != GLR_TRYFAILED && error != -EROFS) |
718 | fs_warn(sdp, "gfs2_delete_inode: %d\n", error); | 718 | fs_warn(sdp, "gfs2_delete_inode: %d\n", error); |
719 | out: | 719 | out: |
720 | truncate_inode_pages(&inode->i_data, 0); | 720 | truncate_inode_pages(&inode->i_data, 0); |