]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
NFSv4: Remove the BUG_ON() from nfs4_get_lease_time_prepare()...
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Mon, 15 Oct 2012 17:14:43 +0000 (13:14 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Thu, 1 Nov 2012 16:02:05 +0000 (12:02 -0400)
An EAGAIN return value would be unexpected, but there is no reason to
BUG...

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4proc.c

index 091baab3eccf602fa8984acab1d64dd29ee5b14c..2188d4e3382ee3b8e739ba2b919103b65e13a62d 100644 (file)
@@ -5581,8 +5581,8 @@ static void nfs4_get_lease_time_prepare(struct rpc_task *task,
                                   &data->args->la_seq_args,
                                   &data->res->lr_seq_res, task);
 
-       BUG_ON(ret == -EAGAIN);
-       rpc_call_start(task);
+       if (ret != -EAGAIN)
+               rpc_call_start(task);
        dprintk("<-- %s\n", __func__);
 }