Commit 36f20c6d authored by Trond Myklebust's avatar Trond Myklebust

NFSv4: Fix buggy nfs_wait_on_sequence()

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent af955987
...@@ -644,12 +644,15 @@ void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t f ...@@ -644,12 +644,15 @@ void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t f
struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter) struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter)
{ {
struct rpc_sequence *sequence = counter->sequence;
struct nfs_seqid *new; struct nfs_seqid *new;
new = kmalloc(sizeof(*new), GFP_KERNEL); new = kmalloc(sizeof(*new), GFP_KERNEL);
if (new != NULL) { if (new != NULL) {
new->sequence = counter; new->sequence = counter;
INIT_LIST_HEAD(&new->list); spin_lock(&sequence->lock);
list_add_tail(&new->list, &sequence->list);
spin_unlock(&sequence->lock);
} }
return new; return new;
} }
...@@ -658,12 +661,10 @@ void nfs_free_seqid(struct nfs_seqid *seqid) ...@@ -658,12 +661,10 @@ void nfs_free_seqid(struct nfs_seqid *seqid)
{ {
struct rpc_sequence *sequence = seqid->sequence->sequence; struct rpc_sequence *sequence = seqid->sequence->sequence;
if (!list_empty(&seqid->list)) { spin_lock(&sequence->lock);
spin_lock(&sequence->lock); list_del(&seqid->list);
list_del(&seqid->list); spin_unlock(&sequence->lock);
spin_unlock(&sequence->lock); rpc_wake_up(&sequence->wait);
}
rpc_wake_up_next(&sequence->wait);
kfree(seqid); kfree(seqid);
} }
...@@ -722,11 +723,10 @@ int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task) ...@@ -722,11 +723,10 @@ int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
if (sequence->list.next == &seqid->list) if (sequence->list.next == &seqid->list)
goto out; goto out;
spin_lock(&sequence->lock); spin_lock(&sequence->lock);
if (!list_empty(&sequence->list)) { if (sequence->list.next != &seqid->list) {
rpc_sleep_on(&sequence->wait, task, NULL, NULL); rpc_sleep_on(&sequence->wait, task, NULL, NULL);
status = -EAGAIN; status = -EAGAIN;
} else }
list_add(&seqid->list, &sequence->list);
spin_unlock(&sequence->lock); spin_unlock(&sequence->lock);
out: out:
return status; return status;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment