mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00: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>
33 lines
843 B
C
33 lines
843 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 source */
|
|
|
|
#include <net/netlink.h>
|
|
#include <net/genetlink.h>
|
|
|
|
#include "netlink.h"
|
|
|
|
#include <uapi/linux/nfsd_netlink.h>
|
|
|
|
/* Ops table for nfsd */
|
|
static const struct genl_split_ops nfsd_nl_ops[] = {
|
|
{
|
|
.cmd = NFSD_CMD_RPC_STATUS_GET,
|
|
.start = nfsd_nl_rpc_status_get_start,
|
|
.dumpit = nfsd_nl_rpc_status_get_dumpit,
|
|
.done = nfsd_nl_rpc_status_get_done,
|
|
.flags = GENL_CMD_CAP_DUMP,
|
|
},
|
|
};
|
|
|
|
struct genl_family nfsd_nl_family __ro_after_init = {
|
|
.name = NFSD_FAMILY_NAME,
|
|
.version = NFSD_FAMILY_VERSION,
|
|
.netnsok = true,
|
|
.parallel_ops = true,
|
|
.module = THIS_MODULE,
|
|
.split_ops = nfsd_nl_ops,
|
|
.n_split_ops = ARRAY_SIZE(nfsd_nl_ops),
|
|
};
|