projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d921a23
)
fs: dlm: fix typo in tlv prefix
author
Alexander Aring
<aahringo@redhat.com>
Fri, 16 Jul 2021 20:22:36 +0000
(16:22 -0400)
committer
David Teigland
<teigland@redhat.com>
Mon, 19 Jul 2021 16:53:43 +0000
(11:53 -0500)
This patch fixes a small typo in a unused struct field. It should named
be t_pad instead of o_pad. Came over this as I updated wireshark
dissector.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/dlm_internal.h
patch
|
blob
|
blame
|
history
diff --git
a/fs/dlm/dlm_internal.h
b/fs/dlm/dlm_internal.h
index 91d1ca3a121a42fbc5ced1767613ece1299f51d0..5f57538b5d4504f8338ebb8bdf0d9b6c0413c5a9 100644
(file)
--- a/
fs/dlm/dlm_internal.h
+++ b/
fs/dlm/dlm_internal.h
@@
-468,7
+468,7
@@
struct dlm_rcom {
struct dlm_opt_header {
uint16_t t_type;
uint16_t t_length;
- uint32_t
o
_pad;
+ uint32_t
t
_pad;
/* need to be 8 byte aligned */
char t_value[];
};