From: Steve Dickson <SteveD@RedHat.com>
To: trond.myklebust@fys.uio.no
Cc: nfs@lists.sourceforge.net
Subject: Re: Readdirplus compatibility fix for IRIX server
Date: Thu, 11 Dec 2003 06:11:41 -0500 [thread overview]
Message-ID: <3FD850ED.6060907@RedHat.com> (raw)
In-Reply-To: <16343.48833.339487.248965@guts.uio.no>
[-- Attachment #1: Type: text/plain, Size: 244 bytes --]
Trond Myklebust wrote:
>Your patch is merely short-circuiting that recovery mechanism
>
Exactly.... I realized this as soon as I hit the Send button. :-(
Here is a patch that explicitly fixes the problem and only
effects READDIRPLUSs
SteveD
[-- Attachment #2: linux-2.4.22-nfs-readdirplus-irix.patch --]
[-- Type: text/plain, Size: 543 bytes --]
--- linux-2.4.22/fs/nfs/dir.c.org 2003-12-09 14:21:59.000000000 -0500
+++ linux-2.4.22/fs/nfs/dir.c 2003-12-11 05:50:26.000000000 -0500
@@ -437,6 +437,14 @@ static int nfs_readdir(struct file *filp
if (res >= 0)
continue;
}
+ /*
+ * Some IRIX servers fail READDIRPLUS RPC calls
+ * with NFSERR_TOOSMALL when a non-existent cookie
+ * is requested, which is a bug. So ignore that failure.
+ */
+ if (desc->plus && desc->error == -ETOOSMALL)
+ desc->error = 0;
+
res = 0;
break;
} else if (res < 0)
prev parent reply other threads:[~2003-12-11 11:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-12-10 22:48 Readdirplus compatibility fix for IRIX server Steve Dickson
2003-12-11 0:48 ` Trond Myklebust
2003-12-11 2:03 ` Greg Banks
2003-12-11 11:11 ` Steve Dickson [this message]
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=3FD850ED.6060907@RedHat.com \
--to=steved@redhat.com \
--cc=nfs@lists.sourceforge.net \
--cc=trond.myklebust@fys.uio.no \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.