Samuel Cabrero | bf80e5d | 2020-11-30 19:02:51 +0100 | [diff] [blame^] | 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 | |||||
13 | extern int cifs_swn_register(struct cifs_tcon *tcon); | ||||
14 | |||||
15 | extern int cifs_swn_unregister(struct cifs_tcon *tcon); | ||||
16 | |||||
17 | #endif /* _CIFS_SWN_H */ |