linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Russell King - ARM Linux <linux@arm.linux.org.uk>
To: Chuck Lever <chuck.lever@oracle.com>
Cc: Trond Myklebust <trond.myklebust@primarydata.com>,
	Anna Schumaker <anna.schumaker@netapp.com>,
	linux-fsdevel@vger.kernel.org,
	Linux NFS Mailing List <linux-nfs@vger.kernel.org>,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: NFS client broken in 4.1.0-rc2
Date: Fri, 15 May 2015 15:50:14 +0100	[thread overview]
Message-ID: <20150515145013.GM2067@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <F423EE93-1A93-42F8-8593-9D2E4F85CB3B@oracle.com>

On Fri, May 15, 2015 at 10:26:48AM -0400, Chuck Lever wrote:
> 
> On May 15, 2015, at 10:24 AM, Russell King - ARM Linux <linux@arm.linux.org.uk> wrote:
> 
> > While trying to update a kernel and modules on one of my test systems,
> > I was greeted by these errors:
> > 
> > tar: lib/modules/4.1.0-rc2+/kernel/drivers/media/platform/coda/coda.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/drivers/media/dvb-frontends/drx39xyj/drx39xyj.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/drivers/media/usb/em28xx/em28xx.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/drivers/usb/serial/option.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/drivers/usb/serial/ftdi_sio.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/drivers/net/wireless/brcm80211/brcmfmac/brcmfmac.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/drivers/input/mouse/psmouse.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/fs/udf/udf.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/fs/fuse/fuse.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/fs/nfsd/nfsd.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/sound/soc/codecs/snd-soc-wm8962.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/kernel/net/bluetooth/bluetooth.ko: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/modules.alias.bin: Cannot utime
> > tar: lib/modules/4.1.0-rc2+/modules.alias: Cannot utime
> > tar: Exiting with failure status due to previous errors
> > 
> > Searching google wasn't helpful, as all the "Cannot utime" errors that
> > google could find are followed by an errno string.
> > 
> > stracing at first sight didn't seem to be helpful, as no syscalls (apart
> > from openat() with a pre-existing file) were failing.
> > 
> > Having recently updated to fc21 tar generating the archive, I thought
> > maybe it was a tar format bug between fc21 tar and the target's tar.
> > That was until I tried to "apt-get source tar" on the target, and was
> > greeted by the same error.
> > 
> > So I then tried untaring the tar source archive onto a ramfs, which
> > worked without complaint.  The difference being that it's a root NFS
> > box, and so I was untaring onto NFS.
> > 
> > Here's the entry from /proc/mounts:
> > 
> > x.y.z.221:/var/boot/ci on / type nfs (rw,nolock,vers=4,addr=x.y.z.221,clientaddr=a.b.c.55)
> > 
> > Looking closer at the strace reveals this:
> > 
> > openat(AT_FDCWD, "lib/modules/4.1.0-rc2+/kernel/drivers/media/platform/coda/coda.ko", O_WRONLY|O_CREAT|O_EXCL|O_NOCTTY|O_NONBLOCK|O_LARGEFILE|O_CLOEXEC, 0600) = -1 EEXIST (File exists)
> > unlinkat(AT_FDCWD, "lib/modules/4.1.0-rc2+/kernel/drivers/media/platform/coda/coda.ko", 0) = 0
> > openat(AT_FDCWD, "lib/modules/4.1.0-rc2+/kernel/drivers/media/platform/coda/coda.ko", O_WRONLY|O_CREAT|O_EXCL|O_NOCTTY|O_NONBLOCK|O_LARGEFILE|O_CLOEXEC, 0600) = 4
> > write(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\1\0(\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
> > ...
> > write(4, "\300H\0\0\34\345\1\0\314H\0\0\34\345\1\0\330H\0\0\34\345\1\0<I\0\0\34\370\1\0"..., 7312) = 7312
> > dup2(4, 4)                              = 4
> > fstat64(4, {st_mode=0757221, st_size=13181880119170311768, ...}) = 21
> > write(2, "tar: ", 5)                    = 5
> > write(2, "lib/modules/4.1.0-rc2+/kernel/dr"..., 79) = 79
> > write(2, "\n", 1)                       = 1
> > fchown32(4, 0, 0)                       = 0
> > fchmod(4, 0664)                         = 0
> > close(4)                                = 0
> > 
> > Look closely at that fstat64, and you'll notice that it's returning crap.
> 
> This is likely fixed by:
> 
>   http://marc.info/?l=linux-nfs&m=143095122604344&w=2

Yes, it appears to be fixed by that change.  I'll add it to my tree so
my test systems work.

Many thanks.

-- 
FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up
according to speedtest.net.

  reply	other threads:[~2015-05-15 14:50 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-15 14:24 NFS client broken in 4.1.0-rc2 Russell King - ARM Linux
2015-05-15 14:26 ` Chuck Lever
2015-05-15 14:50   ` Russell King - ARM Linux [this message]
     [not found]     ` <20150515145013.GM2067-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2015-05-20 23:22       ` Russell King - ARM Linux
     [not found]         ` <20150520232228.GC2067-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2015-05-21  1:16           ` Chuck Lever

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=20150515145013.GM2067@n2100.arm.linux.org.uk \
    --to=linux@arm.linux.org.uk \
    --cc=anna.schumaker@netapp.com \
    --cc=chuck.lever@oracle.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=trond.myklebust@primarydata.com \
    /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;
as well as URLs for NNTP newsgroup(s).