From: Alexander Aring Date: Fri, 16 Jul 2021 20:22:36 +0000 (-0400) Subject: fs: dlm: fix typo in tlv prefix X-Git-Tag: libata-5.15-2021-09-05~20^2~12 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b892e4792c992a0d5a272c3bdd6155bf772acfa7;p=linux-block.git 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 Signed-off-by: David Teigland --- diff --git a/fs/dlm/dlm_internal.h b/fs/dlm/dlm_internal.h index 91d1ca3a121a..5f57538b5d45 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[]; };