mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
c5a382ebdb
These will eventually have files placed under them for sysfs operations. Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com> Signed-off-by: Olga Kornievskaia <kolga@netapp.com> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
20 lines
417 B
C
20 lines
417 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2020 Anna Schumaker <Anna.Schumaker@Netapp.com>
|
|
*/
|
|
#ifndef __SUNRPC_SYSFS_H
|
|
#define __SUNRPC_SYSFS_H
|
|
|
|
struct rpc_sysfs_client {
|
|
struct kobject kobject;
|
|
struct net *net;
|
|
};
|
|
|
|
int rpc_sysfs_init(void);
|
|
void rpc_sysfs_exit(void);
|
|
|
|
void rpc_sysfs_client_setup(struct rpc_clnt *clnt, struct net *net);
|
|
void rpc_sysfs_client_destroy(struct rpc_clnt *clnt);
|
|
|
|
#endif
|