From owner-svn-src-projects@freebsd.org Thu Jun 21 01:22:36 2018 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A05311018EC0 for ; Thu, 21 Jun 2018 01:22:36 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5161C7DBC7; Thu, 21 Jun 2018 01:22:36 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 328562547; Thu, 21 Jun 2018 01:22:36 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L1MZcw041198; Thu, 21 Jun 2018 01:22:35 GMT (envelope-from rmacklem@FreeBSD.org) Received: (from rmacklem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L1MZ6O041197; Thu, 21 Jun 2018 01:22:35 GMT (envelope-from rmacklem@FreeBSD.org) Message-Id: <201806210122.w5L1MZ6O041197@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rmacklem set sender to rmacklem@FreeBSD.org using -f From: Rick Macklem Date: Thu, 21 Jun 2018 01:22:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r335463 - projects/pnfs-planb-server/sys/fs/nfs X-SVN-Group: projects X-SVN-Commit-Author: rmacklem X-SVN-Commit-Paths: projects/pnfs-planb-server/sys/fs/nfs X-SVN-Commit-Revision: 335463 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2018 01:22:36 -0000 Author: rmacklem Date: Thu Jun 21 01:22:35 2018 New Revision: 335463 URL: https://svnweb.freebsd.org/changeset/base/335463 Log: Comment out the code in newnfs_canceldspreq() for now, since it causes problems when multiple DSs are on the same machine. Modified: projects/pnfs-planb-server/sys/fs/nfs/nfs_commonkrpc.c Modified: projects/pnfs-planb-server/sys/fs/nfs/nfs_commonkrpc.c ============================================================================== --- projects/pnfs-planb-server/sys/fs/nfs/nfs_commonkrpc.c Wed Jun 20 22:16:46 2018 (r335462) +++ projects/pnfs-planb-server/sys/fs/nfs/nfs_commonkrpc.c Thu Jun 21 01:22:35 2018 (r335463) @@ -1205,6 +1205,7 @@ lookformore: void newnfs_canceldspreq(struct nfsclds *dsp) { +#ifdef notnow struct __rpc_client *cl; NFSLOCKDS(dsp); @@ -1219,6 +1220,7 @@ newnfs_canceldspreq(struct nfsclds *dsp) return; } NFSUNLOCKDS(dsp); +#endif } /*