diff options
author | Alexander Aring <aahringo@redhat.com> | 2023-03-06 21:48:13 +0100 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2023-03-06 22:49:07 +0100 |
commit | 9f48eead5ea4c55692dd5628699a0d5715416615 (patch) | |
tree | bdd631ce821feb406c9a3d25b3ee3a53c68f7c07 /include/trace/events | |
parent | fs: dlm: rename stub to local message flag (diff) | |
download | linux-9f48eead5ea4c55692dd5628699a0d5715416615.tar.xz linux-9f48eead5ea4c55692dd5628699a0d5715416615.zip |
fs: dlm: remove DLM_IFL_LOCAL_MS flag
The DLM_IFL_LOCAL_MS flag is an internal non shared flag but used in
m_flags of dlm messages. It is not shared because it is only used for
local messaging. Instead using DLM_IFL_LOCAL_MS in dlm messages we pass a
parameter around to signal local messaging or not. This patch is adding
the local parameter to signal local messaging.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'include/trace/events')
-rw-r--r-- | include/trace/events/dlm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/trace/events/dlm.h b/include/trace/events/dlm.h index 2d3ff2f1a4a6..cd00b2d34e33 100644 --- a/include/trace/events/dlm.h +++ b/include/trace/events/dlm.h @@ -54,7 +54,6 @@ { DLM_IFL_OVERLAP_CANCEL, "OVERLAP_CANCEL" }, \ { DLM_IFL_ENDOFLIFE, "ENDOFLIFE" }, \ { DLM_IFL_DEADLOCK_CANCEL, "DEADLOCK_CANCEL" }, \ - { DLM_IFL_LOCAL_MS, "LOCAL_MS" }, \ { DLM_IFL_USER, "USER" }, \ { DLM_IFL_ORPHAN, "ORPHAN" }) |