From owner-svn-src-all@FreeBSD.ORG Sun Mar 11 15:58:28 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3382E1065670; Sun, 11 Mar 2012 15:58:28 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2253C8FC0C; Sun, 11 Mar 2012 15:58:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q2BFwRtM015997; Sun, 11 Mar 2012 15:58:27 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q2BFwR7B015994; Sun, 11 Mar 2012 15:58:27 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201203111558.q2BFwR7B015994@svn.freebsd.org> From: Konstantin Belousov Date: Sun, 11 Mar 2012 15:58:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r232823 - head/sys/fs/fifofs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 11 Mar 2012 15:58:28 -0000 Author: kib Date: Sun Mar 11 15:58:27 2012 New Revision: 232823 URL: http://svn.freebsd.org/changeset/base/232823 Log: Update comment. Submitted by: gianni Modified: head/sys/fs/fifofs/fifo_vnops.c Modified: head/sys/fs/fifofs/fifo_vnops.c ============================================================================== --- head/sys/fs/fifofs/fifo_vnops.c Sun Mar 11 13:39:19 2012 (r232822) +++ head/sys/fs/fifofs/fifo_vnops.c Sun Mar 11 15:58:27 2012 (r232823) @@ -59,7 +59,7 @@ * Notes about locking: * - fi_pipe is invariant since init time. * - fi_readers and fi_writers are protected by the vnode lock. - * - fi_wgen is protected by the pipe mutex. + * - fi_wgen and fi_seqcount are protected by the pipe mutex. */ struct fifoinfo { struct pipe *fi_pipe;