diff options
author | Alexander Aring <aahringo@redhat.com> | 2021-05-21 21:08:40 +0200 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2021-05-25 16:22:20 +0200 |
commit | 6fb5cf9d4206f2cdccb05be1bf2307dab4e5babe (patch) | |
tree | b9349de4b34d8a55a070f06f8978901c940a1280 /fs/dlm/util.h | |
parent | fs: dlm: fix connection tcp EOF handling (diff) | |
download | linux-6fb5cf9d4206f2cdccb05be1bf2307dab4e5babe.tar.xz linux-6fb5cf9d4206f2cdccb05be1bf2307dab4e5babe.zip |
fs: dlm: public header in out utility
This patch allows to use header_out() and header_in() outside of dlm
util functionality.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/util.h')
-rw-r--r-- | fs/dlm/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/dlm/util.h b/fs/dlm/util.h index cc719ca9397e..d46f23c7a6a0 100644 --- a/fs/dlm/util.h +++ b/fs/dlm/util.h @@ -15,6 +15,8 @@ void dlm_message_out(struct dlm_message *ms); void dlm_message_in(struct dlm_message *ms); void dlm_rcom_out(struct dlm_rcom *rc); void dlm_rcom_in(struct dlm_rcom *rc); +void header_out(struct dlm_header *hd); +void header_in(struct dlm_header *hd); #endif |