Skip to content

Commit

Permalink
[PATCH] NFS: Fix Oops in rpc_call_sync()
Browse files Browse the repository at this point in the history
Fix the Oops in http://bugzilla.linux-nfs.org/show_bug.cgi?id=138
We shouldn't be calling rpc_release_task() for tasks that are not active.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Trond Myklebust authored and Linus Torvalds committed Jan 24, 2007
1 parent 5394cd2 commit bde8f00
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion include/linux/sunrpc/sched.h
Expand Up @@ -250,7 +250,6 @@ void rpc_init_task(struct rpc_task *task, struct rpc_clnt *clnt,
int flags, const struct rpc_call_ops *ops,
void *data);
void rpc_put_task(struct rpc_task *);
void rpc_release_task(struct rpc_task *);
void rpc_exit_task(struct rpc_task *);
void rpc_release_calldata(const struct rpc_call_ops *, void *);
void rpc_killall_tasks(struct rpc_clnt *);
Expand Down
8 changes: 3 additions & 5 deletions net/sunrpc/clnt.c
Expand Up @@ -490,16 +490,14 @@ int rpc_call_sync(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)

/* Set up the call info struct and execute the task */
status = task->tk_status;
if (status != 0) {
rpc_release_task(task);
if (status != 0)
goto out;
}
atomic_inc(&task->tk_count);
status = rpc_execute(task);
if (status == 0)
status = task->tk_status;
rpc_put_task(task);
out:
rpc_put_task(task);
rpc_restore_sigmask(&oldset);
return status;
}
Expand Down Expand Up @@ -537,7 +535,7 @@ rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags,
if (status == 0)
rpc_execute(task);
else
rpc_release_task(task);
rpc_put_task(task);

rpc_restore_sigmask(&oldset);
return status;
Expand Down
3 changes: 2 additions & 1 deletion net/sunrpc/sched.c
Expand Up @@ -42,6 +42,7 @@ static mempool_t *rpc_buffer_mempool __read_mostly;
static void __rpc_default_timer(struct rpc_task *task);
static void rpciod_killall(void);
static void rpc_async_schedule(struct work_struct *);
static void rpc_release_task(struct rpc_task *task);

/*
* RPC tasks sit here while waiting for conditions to improve.
Expand Down Expand Up @@ -896,7 +897,7 @@ void rpc_put_task(struct rpc_task *task)
}
EXPORT_SYMBOL(rpc_put_task);

void rpc_release_task(struct rpc_task *task)
static void rpc_release_task(struct rpc_task *task)
{
#ifdef RPC_DEBUG
BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
Expand Down

0 comments on commit bde8f00

Please sign in to comment.