From owner-svn-src-all@freebsd.org Mon Jun 27 20:18:50 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71602B84BB1; Mon, 27 Jun 2016 20:18:50 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-qt0-x236.google.com (mail-qt0-x236.google.com [IPv6:2607:f8b0:400d:c0d::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 292432532; Mon, 27 Jun 2016 20:18:50 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by mail-qt0-x236.google.com with SMTP id c34so27889232qte.0; Mon, 27 Jun 2016 13:18:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=iQQhMCaXchsH9crFQCj1roY5472mQjnW88KSQBtZqxc=; b=ocWDSDqYKKWJM28i65a3XJg1iVgM4ttt3nc03O/Xl3NTnmvV4Xa9Z26B1kUZCuTBI1 j3YRMzJ8xMgWvRKeoHzlBR30wLQbW8jNwmkRYxzZRwa0lOwlqqJb7LZeT+HJUWOYFGkM u9YmNsQWn7XQ+imryE519qx0ZHzQ+/cB1QMtkjWq4B57uj7mmtxn1lQBx+CshFEE3Fe6 aE9CfI0MMd5I7pz54Fl32IAikdcoq5yTlY3aKgwTqL4+ZoU+MZtVNR8Nn29y/ldd0m39 Vn1W2gJe+oTtj9RX6nTic+ZVlQJv9KUO77Cm6fQ2D8eCoFudfWmrulwnGJNsG3Fn2vrf HRxQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=iQQhMCaXchsH9crFQCj1roY5472mQjnW88KSQBtZqxc=; b=VqL9xC3hU/iZp62rOQqvWwuOlxBzAiHF5MBNQuTpBgW0PYEhSdbuaJ0dbN8YCJFOQk K00N6NPoUv98sGD+eVSTXhsj8asbxAW7hG7NYTUXuBKeOid9R5Hyu7LbK3uF3cW5z3g6 fQ3GtU1kKk40+PgJ44d2x+DqLurLSwCuJpHpsP82rV6XQ8kZvl+MIto7Whhj0UHZ5uvg TKDIQiXpVoyBvrzaGHf9mLI0+1kESClhKotIimpvWTE3cpBI1EM3iLmxsWf2npK52lFx cs8e5MzdLnHHlpyYoMETIlwRSUQ7jmft65XZ6gxGI/8C2Xd3/HJ+0TkPdy9x1REvIPD7 UZMg== X-Gm-Message-State: ALyK8tIKC4SyD+bxM03Hb/3iqKQYIqffpE+BJciiXaMvA4w/R/VMD4IQMhA31jzvlhEygu2ruNXTMY0aQqEvaw== X-Received: by 10.237.39.167 with SMTP id a36mr26576151qtd.103.1467058729215; Mon, 27 Jun 2016 13:18:49 -0700 (PDT) MIME-Version: 1.0 Received: by 10.55.148.131 with HTTP; Mon, 27 Jun 2016 13:18:48 -0700 (PDT) In-Reply-To: <201606262008.u5QK8gTx042729@repo.freebsd.org> References: <201606262008.u5QK8gTx042729@repo.freebsd.org> From: Ngie Cooper Date: Mon, 27 Jun 2016 13:18:48 -0700 Message-ID: Subject: Re: svn commit: r302216 - in head/sys: kern nlm To: Konstantin Belousov Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jun 2016 20:18:50 -0000 On Sun, Jun 26, 2016 at 1:08 PM, Konstantin Belousov wrote: > Author: kib > Date: Sun Jun 26 20:08:42 2016 > New Revision: 302216 > URL: https://svnweb.freebsd.org/changeset/base/302216 > > Log: > When sleeping waiting for either local or remote advisory lock, > interrupt sleeps with the ERESTART on the suspension attempts. > Otherwise, single-threading requests are deferred until the locks are > granted for NFS files, which causes hangs. > > When retrying local registration of the remotely-granted adv lock, > allow full suspension and check for suspension, for usual reasons. > > Reported by: markj, pho > Reviewed by: jilles > Tested by: pho > Sponsored by: The FreeBSD Foundation > MFC after: 2 weeks > Approved by: re (gjb) One of the NetBSD tests seems to be failing now: https://jenkins.freebsd.org/job/FreeBSD_HEAD/334/testReport/junit/sys.kern/lockf_test/randlock/ . Thanks, -Ngie