xref: /linux/fs/smb/client/netlink.h (revision c7decec2f2d2ab0366567f9e30c0e1418cece43f)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Netlink routines for CIFS
4  *
5  * Copyright (c) 2020 Samuel Cabrero <scabrero@suse.de>
6  */
7 
8 #ifndef _CIFS_NETLINK_H
9 #define _CIFS_NETLINK_H
10 
11 extern struct genl_family cifs_genl_family;
12 
13 int cifs_genl_init(void);
14 void cifs_genl_exit(void);
15 
16 #endif /* _CIFS_NETLINK_H */
17