Merge tag 'ktest-v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux-2.6-microblaze.git] / fs / cifs / cifs_swn.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Witness Service client for CIFS
4  *
5  * Copyright (c) 2020 Samuel Cabrero <scabrero@suse.de>
6  */
7
8 #ifndef _CIFS_SWN_H
9 #define _CIFS_SWN_H
10
11 struct cifs_tcon;
12 struct sk_buff;
13 struct genl_info;
14
15 extern int cifs_swn_register(struct cifs_tcon *tcon);
16
17 extern int cifs_swn_unregister(struct cifs_tcon *tcon);
18
19 extern int cifs_swn_notify(struct sk_buff *skb, struct genl_info *info);
20
21 extern void cifs_swn_dump(struct seq_file *m);
22
23 extern void cifs_swn_check(void);
24
25 #endif /* _CIFS_SWN_H */