aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm/dlm_internal.h
diff options
context:
space:
mode:
authorAlexander Aring <aahringo@redhat.com>2021-07-16 16:22:36 -0400
committerDavid Teigland <teigland@redhat.com>2021-07-19 11:53:43 -0500
commitb892e4792c992a0d5a272c3bdd6155bf772acfa7 (patch)
tree621296ade125d4c6581497bf75c20b290e454c3a /fs/dlm/dlm_internal.h
parentd921a23f3e1a703875db436cc7cdb4404cf1565f (diff)
downloadlinux-b892e4792c992a0d5a272c3bdd6155bf772acfa7.tar.gz
fs: dlm: fix typo in tlv prefix
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>
Diffstat (limited to 'fs/dlm/dlm_internal.h')
-rw-r--r--fs/dlm/dlm_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/dlm_internal.h b/fs/dlm/dlm_internal.h
index 91d1ca3a121a4..5f57538b5d450 100644
--- 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[];
};