On Thu, Aug 9, 2012 at 8:05 PM, <bjschuma@xxxxxxxxxx> wrote: > From: Bryan Schumaker <bjschuma@xxxxxxxxxx> > > This allows the normal error-paths to handle the error, rather than > making a special call to complete_request_key() just for this instance. > > Signed-off-by: Bryan Schumaker <bjschuma@xxxxxxxxxx> > --- > fs/nfs/idmap.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c > index c2b4004..9864b48 100644 > --- a/fs/nfs/idmap.c > +++ b/fs/nfs/idmap.c > @@ -756,9 +756,8 @@ idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) > } > > if (!(im.im_status & IDMAP_STATUS_SUCCESS)) { > - ret = mlen; > - complete_request_key(cons, -ENOKEY); > - goto out_incomplete; > + ret = -ENOKEY; > + goto out; and I think this patch could fix the "unable to handle kernel NULL pointer dereference on wait_for_key_construction" I reported earlier. -- William -- 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