mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: lustre: make functions only used locally static
Add a static modifier to two functions that have no separate declaration and are only used within the file they are defined in. This problem was reported by sparse. Signed-off-by: Kolbeinn Karlsson <kk752@cornell.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e5c2f7b56e
commit
9a2477c2ca
1 changed files with 2 additions and 2 deletions
|
@ -485,7 +485,7 @@ int ptlrpc_uuid_to_peer(struct obd_uuid *uuid,
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ptlrpc_ni_fini(void)
|
static void ptlrpc_ni_fini(void)
|
||||||
{
|
{
|
||||||
wait_queue_head_t waitq;
|
wait_queue_head_t waitq;
|
||||||
struct l_wait_info lwi;
|
struct l_wait_info lwi;
|
||||||
|
@ -529,7 +529,7 @@ lnet_pid_t ptl_get_pid(void)
|
||||||
return pid;
|
return pid;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ptlrpc_ni_init(void)
|
static int ptlrpc_ni_init(void)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
lnet_pid_t pid;
|
lnet_pid_t pid;
|
||||||
|
|
Loading…
Reference in a new issue