From: Andrew Morton Cc: Nishanth Aravamudan Signed-off-by: Andrew Morton --- net/sunrpc/svcsock.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN net/sunrpc/svcsock.c~net-fix-up-schedule_timeout-usage-fix-2 net/sunrpc/svcsock.c --- devel/net/sunrpc/svcsock.c~net-fix-up-schedule_timeout-usage-fix-2 2005-08-18 00:14:52.000000000 -0700 +++ devel-akpm/net/sunrpc/svcsock.c 2005-08-18 00:14:52.000000000 -0700 @@ -1170,7 +1170,7 @@ svc_recv(struct svc_serv *serv, struct s while (rqstp->rq_arghi < pages) { struct page *p = alloc_page(GFP_KERNEL); if (!p) { - schedule_timeout_uninterruptible(msecs_to_jiffies(500); + schedule_timeout_uninterruptible(msecs_to_jiffies(500)); continue; } rqstp->rq_argpages[rqstp->rq_arghi++] = p; _