On Wed, 2011-01-19 at 14:18 -0500, Fred Isaman wrote: > Cleanup of the allocated list entries should not call > put_nfs_open_context() on each entry, as the context will > always be NULL, causing an oops. > > Signed-off-by: Fred Isaman <iisaman@xxxxxxxxxx> > --- > fs/nfs/write.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/fs/nfs/write.c b/fs/nfs/write.c > index 10d648e..c8278f4 100644 > --- a/fs/nfs/write.c > +++ b/fs/nfs/write.c > @@ -932,7 +932,7 @@ out_bad: > while (!list_empty(&list)) { > data = list_entry(list.next, struct nfs_write_data, pages); > list_del(&data->pages); > - nfs_writedata_release(data); > + nfs_writedata_free(data); > } > nfs_redirty_request(req); > return -ENOMEM; Yep. That looks like a long standing bug. Will apply... -- Trond Myklebust Linux NFS client maintainer NetApp Trond.Myklebust@xxxxxxxxxx www.netapp.com -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html