From: Steve Dickson <SteveD@redhat.com>
To: James Pearson <james-p@moving-picture.com>, nfs@lists.sourceforge.net
Subject: Re: acl_extended_file() and NFS file systems
Date: Thu, 24 Jun 2004 11:23:28 -0400 [thread overview]
Message-ID: <40DAF1F0.9020008@RedHat.com> (raw)
In-Reply-To: <40D9FC0B.6050401@moving-picture.com>
[-- Attachment #1: Type: text/plain, Size: 70 bytes --]
Ok... see if the attached patch takes care of the problem...
SteveD.
[-- Attachment #2: linux-2.4.22-nfs-unavail.patch --]
[-- Type: text/plain, Size: 711 bytes --]
--- linux-2.4.22/net/sunrpc/clnt.c.org 2004-06-24 10:49:57.000000000 -0400
+++ linux-2.4.22/net/sunrpc/clnt.c 2004-06-24 10:57:59.000000000 -0400
@@ -923,6 +923,16 @@ call_verify(struct rpc_task *task)
return p;
case RPC_GARBAGE_ARGS:
break; /* retry */
+ case RPC_PROG_UNAVAIL:
+ /* report requested program number*/
+ dprintk(KERN_WARNING "RPC: unknown program\n");
+ rpc_exit(task, -ENOSYS);
+ return NULL;
+ case RPC_PROC_UNAVAIL:
+ /* report requested program and procedure number, version */
+ dprintk(KERN_WARNING "RPC: unknown procedure\n");
+ rpc_exit(task, -ENOSYS);
+ return NULL;
default:
printk(KERN_WARNING "call_verify: server accept status: %x\n", n);
/* Also retry */
next prev parent reply other threads:[~2004-06-24 15:23 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-23 16:11 acl_extended_file() and NFS file systems James Pearson
2004-06-23 18:10 ` Steve Dickson
2004-06-23 21:54 ` James Pearson
2004-06-24 15:23 ` Steve Dickson [this message]
2004-06-24 15:32 ` James Pearson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=40DAF1F0.9020008@RedHat.com \
--to=steved@redhat.com \
--cc=james-p@moving-picture.com \
--cc=nfs@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox