Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
b5627943
Commit
b5627943
authored
Oct 25, 2007
by
Trond Myklebust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SUNRPC: Remove the now unused function rpc_call_setup()
Signed-off-by:
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
parent
5138fde0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
19 deletions
+0
-19
include/linux/sunrpc/clnt.h
include/linux/sunrpc/clnt.h
+0
-1
net/sunrpc/clnt.c
net/sunrpc/clnt.c
+0
-18
No files found.
include/linux/sunrpc/clnt.h
View file @
b5627943
...
@@ -126,7 +126,6 @@ int rpcb_register(u32, u32, int, unsigned short, int *);
...
@@ -126,7 +126,6 @@ int rpcb_register(u32, u32, int, unsigned short, int *);
int
rpcb_getport_sync
(
struct
sockaddr_in
*
,
__u32
,
__u32
,
int
);
int
rpcb_getport_sync
(
struct
sockaddr_in
*
,
__u32
,
__u32
,
int
);
void
rpcb_getport_async
(
struct
rpc_task
*
);
void
rpcb_getport_async
(
struct
rpc_task
*
);
void
rpc_call_setup
(
struct
rpc_task
*
,
const
struct
rpc_message
*
,
int
);
void
rpc_call_start
(
struct
rpc_task
*
);
void
rpc_call_start
(
struct
rpc_task
*
);
int
rpc_call_async
(
struct
rpc_clnt
*
clnt
,
struct
rpc_message
*
msg
,
int
rpc_call_async
(
struct
rpc_clnt
*
clnt
,
struct
rpc_message
*
msg
,
int
flags
,
const
struct
rpc_call_ops
*
tk_ops
,
int
flags
,
const
struct
rpc_call_ops
*
tk_ops
,
...
...
net/sunrpc/clnt.c
View file @
b5627943
...
@@ -613,24 +613,6 @@ rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags,
...
@@ -613,24 +613,6 @@ rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags,
}
}
EXPORT_SYMBOL_GPL
(
rpc_call_async
);
EXPORT_SYMBOL_GPL
(
rpc_call_async
);
void
rpc_call_setup
(
struct
rpc_task
*
task
,
const
struct
rpc_message
*
msg
,
int
flags
)
{
task
->
tk_msg
=
*
msg
;
task
->
tk_flags
|=
flags
;
/* Bind the user cred */
if
(
task
->
tk_msg
.
rpc_cred
!=
NULL
)
rpcauth_holdcred
(
task
);
else
rpcauth_bindcred
(
task
);
if
(
task
->
tk_status
==
0
)
task
->
tk_action
=
call_start
;
else
task
->
tk_action
=
rpc_exit_task
;
}
EXPORT_SYMBOL_GPL
(
rpc_call_setup
);
void
void
rpc_call_start
(
struct
rpc_task
*
task
)
rpc_call_start
(
struct
rpc_task
*
task
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment