mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
13727f85b4
Generate stubs and uAPI for nfsd netlink protocol. For the moment, the new protocol has one operation: rpc_status. The generated header and source files are created by running: tools/net/ynl/ynl-regen.sh Tested-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Acked-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
23 lines
641 B
C
23 lines
641 B
C
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
|
|
/* Do not edit directly, auto-generated from: */
|
|
/* Documentation/netlink/specs/nfsd.yaml */
|
|
/* YNL-GEN kernel header */
|
|
|
|
#ifndef _LINUX_NFSD_GEN_H
|
|
#define _LINUX_NFSD_GEN_H
|
|
|
|
#include <net/netlink.h>
|
|
#include <net/genetlink.h>
|
|
|
|
#include <uapi/linux/nfsd_netlink.h>
|
|
|
|
int nfsd_nl_rpc_status_get_start(struct netlink_callback *cb);
|
|
int nfsd_nl_rpc_status_get_done(struct netlink_callback *cb);
|
|
|
|
int nfsd_nl_rpc_status_get_dumpit(struct sk_buff *skb,
|
|
struct netlink_callback *cb);
|
|
|
|
extern struct genl_family nfsd_nl_family;
|
|
|
|
#endif /* _LINUX_NFSD_GEN_H */
|