Return-Path: Received: from fieldses.org ([174.143.236.118]:36608 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933873Ab1ETS7j (ORCPT ); Fri, 20 May 2011 14:59:39 -0400 Date: Fri, 20 May 2011 14:59:35 -0400 From: "Dr. J. Bruce Fields" To: Trond Myklebust Cc: Harry Edmon , Chuck Lever , linux-nfs@vger.kernel.org Subject: Re: 2.6.38.6 - state manager constantly respawns Message-ID: <20110520185935.GC11670@fieldses.org> References: <4DD17CB5.7010009@uw.edu> <1305575007.19725.3.camel@lade.trondhjem.org> <4DD17F79.305@uw.edu> <1305575656.19725.9.camel@lade.trondhjem.org> <20110516202059.GC1680@fieldses.org> <20110516205351.GD1680@fieldses.org> <4DD694DF.2060302@uw.edu> <20110520172639.GA11670@fieldses.org> <1305913963.12712.6.camel@lade.trondhjem.org> <1305916616.14253.1.camel@lade.trondhjem.org> Content-Type: text/plain; charset=us-ascii In-Reply-To: <1305916616.14253.1.camel@lade.trondhjem.org> Sender: linux-nfs-owner@vger.kernel.org List-ID: MIME-Version: 1.0 On Fri, May 20, 2011 at 02:36:56PM -0400, Trond Myklebust wrote: > On Fri, 2011-05-20 at 13:52 -0400, Trond Myklebust wrote: > > On Fri, 2011-05-20 at 13:26 -0400, Dr. J. Bruce Fields wrote: > > > On Fri, May 20, 2011 at 09:20:47AM -0700, Harry Edmon wrote: > > > > On 05/16/11 13:53, Dr. J. Bruce Fields wrote: > > > > >Hm, so the renews all have clid 465ccc4d09000000, and the reads all have > > > > >a stateid (0, 465ccc4dc24c0a0000000000). > > > > > > > > > >So the first 4 bytes matching just tells me both were handed out by the > > > > >same server instance (so there was no server reboot in between); there's > > > > >no way for me to tell whether they really belong to the same client. > > > > > > > > > >The server does assume that any stateid from the current server instance > > > > >that no longer exists in its table is expired. I believe that's > > > > >correct, given a correctly functioning client, but perhaps I'm missing a > > > > >case. > > > > > > > > > >--b. > > > > I am very appreciative of the quick initial comments I receive from > > > > all of you on my NFS problem. I notice that there has been silence > > > > on the problem since the 16th, so I assume that either this is a > > > > hard bug to track down or you have been busy with higher priority > > > > tasks. Is there anything I can do to help develop a solution to > > > > this problem? > > > > > > Well, the only candidate explanation for the problem is that my > > > assumption--that any time the server gets a stateid from the current > > > boot instance that it doesn't recognize as an active stateid, it is safe > > > for the server to return EXPIRED--is wrong. > > > > > > I don't immediately see why it's wrong, and based on the silence nobody > > > else does either, but I'm not 100% convinced I'm right either. > > > > > > So one approach might be to add server code that makes a better effort > > > to return EXPIRED only when we're sure it's a stateid from an expired > > > client, and see if that solves your problem. > > > > > > Remind me, did you have an easy way to reproduce your problem? > > > > My silence is simply because I'm mystified as to how this can happen. > > Patching for it is trivial (see below). > > > > When the server tells us that our lease is expired, the normal behaviour > > for the client is to re-establish the lease, and then proceed to recover > > all known stateids. I don't see how we can 'miss' a stateid that then > > needs to be recovered afterwards... > > Bruce, > > If the clientid expired, is it possible that the server may have handed > out the same numerical short clientid to someone else and that explains > why the RENEW is succeeding? Clientid's are created from a u32 counter that's sampled only under the state lock, so it sounds unlikely. I think more likely would be some bug affecting the lifetime of a stateid--e.g. if the server destroyed a lock stateid earlier than it should in some case, then this would happen. (Since, as I say, we assume EXPIRED for any stateid we don't recognize.) --b.