diff options
| author | Andreas Gruenbacher <agruenba@redhat.com> | 2024-03-19 01:01:28 +0100 |
|---|---|---|
| committer | Andreas Gruenbacher <agruenba@redhat.com> | 2024-05-28 16:59:53 +0200 |
| commit | 0a0383a93e5d28f2873a72b8378c2b36404e431e (patch) | |
| tree | a72f16aff3c4b44e123f649826bf33f1d8fa5f9d /fs/gfs2/incore.h | |
| parent | 121e730112788ab9aceedfb38d59dae2dee83301 (diff) | |
| download | linux-0a0383a93e5d28f2873a72b8378c2b36404e431e.tar.gz linux-0a0383a93e5d28f2873a72b8378c2b36404e431e.tar.bz2 linux-0a0383a93e5d28f2873a72b8378c2b36404e431e.zip | |
gfs2: Rename GLF_REPLY_PENDING to GLF_HAVE_REPLY
The GLF_REPLY_PENDING flag indicates to glock_work_func() that in
response to a locking request, DLM has sent a reply that needs to be
processed. A flag with that name could as well indicate that we are
waiting on a reply from DLM, however. To disambiguate these two cases,
rename the flag to GLF_HAVE_REPLY.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
| -rw-r--r-- | fs/gfs2/incore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index aa6dbde9cd19..e4423075433b 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h @@ -322,7 +322,7 @@ enum { GLF_DIRTY = 6, GLF_LFLUSH = 7, GLF_INVALIDATE_IN_PROGRESS = 8, - GLF_REPLY_PENDING = 9, + GLF_HAVE_REPLY = 9, GLF_INITIAL = 10, GLF_FROZEN = 11, GLF_INSTANTIATE_IN_PROG = 12, /* instantiate happening now */ |
