diff options
author | Bob Peterson <rpeterso@redhat.com> | 2020-06-17 07:47:34 -0500 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2020-07-03 12:05:34 +0200 |
commit | 7542486b89b2e321ffe0de82163b425d6a38bc72 (patch) | |
tree | 69dad92b550226ee3e77caf2b141542f8686ef8a /fs/gfs2/incore.h | |
parent | 34244d711dea568f4a42c5b0d6b3d620f8cb6971 (diff) | |
download | linux-7542486b89b2e321ffe0de82163b425d6a38bc72.tar.gz linux-7542486b89b2e321ffe0de82163b425d6a38bc72.tar.bz2 linux-7542486b89b2e321ffe0de82163b425d6a38bc72.zip |
gfs2: eliminate GIF_ORDERED in favor of list_empty
In several places, we used the GIF_ORDERED inode flag to determine
if an inode was on the ordered writes list. However, since we always
held the sd_ordered_lock spin_lock during the manipulation, we can
just as easily check list_empty(&ip->i_ordered) instead.
This allows us to keep more than one ordered writes list to make
journal writing improvements.
This patch eliminates GIF_ORDERED in favor of checking list_empty.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r-- | fs/gfs2/incore.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index 03ab11fab962..ca2ec02436ec 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h @@ -399,7 +399,6 @@ enum { GIF_QD_LOCKED = 1, GIF_ALLOC_FAILED = 2, GIF_SW_PAGED = 3, - GIF_ORDERED = 4, GIF_FREE_VFS_INODE = 5, GIF_GLOP_PENDING = 6, GIF_DEFERRED_DELETE = 7, |