Skip to content
Snippets Groups Projects
Commit 74fe5f7c authored by Trond Myklebust's avatar Trond Myklebust
Browse files

SUNRPC: Remove unused functions rpc_task_set/has_priority

parent 64bbe3d6
No related branches found
No related tags found
No related merge requests found
...@@ -249,16 +249,6 @@ static inline int rpc_wait_for_completion_task(struct rpc_task *task) ...@@ -249,16 +249,6 @@ static inline int rpc_wait_for_completion_task(struct rpc_task *task)
return __rpc_wait_for_completion_task(task, NULL); return __rpc_wait_for_completion_task(task, NULL);
} }
static inline void rpc_task_set_priority(struct rpc_task *task, unsigned char prio)
{
task->tk_priority = prio - RPC_PRIORITY_LOW;
}
static inline int rpc_task_has_priority(struct rpc_task *task, unsigned char prio)
{
return (task->tk_priority + RPC_PRIORITY_LOW == prio);
}
#if defined(RPC_DEBUG) || defined (RPC_TRACEPOINTS) #if defined(RPC_DEBUG) || defined (RPC_TRACEPOINTS)
static inline const char * rpc_qname(const struct rpc_wait_queue *q) static inline const char * rpc_qname(const struct rpc_wait_queue *q)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment