blob: 49553ac236b64cf56812ba1c225d6ee6b7c8bf06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Shared Memory Communications over RDMA (SMC-R) and RoCE
*
* smc_sysctl.c: sysctl interface to SMC subsystem.
*
* Copyright (c) 2022, Alibaba Inc.
*
* Author: Tony Lu <tonylu@linux.alibaba.com>
*
*/
#ifndef _SMC_SYSCTL_H
#define _SMC_SYSCTL_H
#ifdef CONFIG_SYSCTL
int smc_sysctl_init(void);
void smc_sysctl_exit(void);
#else
int smc_sysctl_init(void)
{
return 0;
}
void smc_sysctl_exit(void) { }
#endif /* CONFIG_SYSCTL */
#endif /* _SMC_SYSCTL_H */
|