Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

gfs2: hide error messages after withdraw

In gfs2_evict_inode(), don't issue error messages once a withdraw has already
occurred.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>

+1 -1
+1 -1
fs/gfs2/super.c
··· 1483 1483 if (gfs2_rs_active(&ip->i_res)) 1484 1484 gfs2_rs_deltree(&ip->i_res); 1485 1485 1486 - if (ret && ret != -EROFS) 1486 + if (ret && !gfs2_withdrawn(sdp) && ret != -EROFS) 1487 1487 fs_warn(sdp, "gfs2_evict_inode: %d\n", ret); 1488 1488 out: 1489 1489 if (gfs2_holder_initialized(&gh))