2020-12-01 02:02:51 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
|
|
* Witness Service client for CIFS
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020 Samuel Cabrero <scabrero@suse.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CIFS_SWN_H
|
|
|
|
#define _CIFS_SWN_H
|
|
|
|
|
|
|
|
struct cifs_tcon;
|
2020-12-01 02:02:52 +08:00
|
|
|
struct sk_buff;
|
|
|
|
struct genl_info;
|
2020-12-01 02:02:51 +08:00
|
|
|
|
|
|
|
extern int cifs_swn_register(struct cifs_tcon *tcon);
|
|
|
|
|
|
|
|
extern int cifs_swn_unregister(struct cifs_tcon *tcon);
|
|
|
|
|
2020-12-01 02:02:52 +08:00
|
|
|
extern int cifs_swn_notify(struct sk_buff *skb, struct genl_info *info);
|
|
|
|
|
2020-12-01 02:02:51 +08:00
|
|
|
#endif /* _CIFS_SWN_H */
|