diff options
author | Dr. David Alan Gilbert <linux@treblig.org> | 2024-05-31 02:49:18 +0300 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2024-06-12 23:50:29 +0300 |
commit | ec5530d6932ec35e92d3ef60d51b0dbc216c8049 (patch) | |
tree | 8284696a48a2abf8e1385c7fc80333771ea5a139 /fs/dlm | |
parent | 5ce02000eb29db98dc2909b1a346f68acdd9db80 (diff) | |
download | linux-ec5530d6932ec35e92d3ef60d51b0dbc216c8049.tar.xz |
fs: dlm: remove unused struct 'dlm_processed_nodes'
The last use of 'dlm_processed_nodes' was removed in
commit 1696c75f1864 ("fs: dlm: add send ack threshold and append acks to
msgs").
Remove it.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/lowcomms.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c index 591385701c7d..2e3e269d820e 100644 --- a/fs/dlm/lowcomms.c +++ b/fs/dlm/lowcomms.c @@ -858,12 +858,6 @@ static void free_processqueue_entry(struct processqueue_entry *pentry) kfree(pentry); } -struct dlm_processed_nodes { - int nodeid; - - struct list_head list; -}; - static void process_dlm_messages(struct work_struct *work) { struct processqueue_entry *pentry; |