From owner-svn-src-all@FreeBSD.ORG Sun Jul 17 05:33:22 2011 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 B6A18106564A; Sun, 17 Jul 2011 05:33:22 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A6E2F8FC08; Sun, 17 Jul 2011 05:33:22 +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 p6H5XMfv059835; Sun, 17 Jul 2011 05:33:22 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p6H5XMMB059833; Sun, 17 Jul 2011 05:33:22 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <201107170533.p6H5XMMB059833@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Sun, 17 Jul 2011 05:33:22 +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: r224123 - head/sys/compat/linux 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, 17 Jul 2011 05:33:22 -0000 Author: bz Date: Sun Jul 17 05:33:22 2011 New Revision: 224123 URL: http://svn.freebsd.org/changeset/base/224123 Log: Remove the 'either' from the comment as it'll be less obvious that we removed semmap in a bit of time from now. Re-wrap. Suggested by: jhb Modified: head/sys/compat/linux/linux_ipc.c Modified: head/sys/compat/linux/linux_ipc.c ============================================================================== --- head/sys/compat/linux/linux_ipc.c Sun Jul 17 04:10:00 2011 (r224122) +++ head/sys/compat/linux/linux_ipc.c Sun Jul 17 05:33:22 2011 (r224123) @@ -578,10 +578,10 @@ linux_semctl(struct thread *td, struct l bcopy(&seminfo, &linux_seminfo.semmni, sizeof(linux_seminfo) - sizeof(linux_seminfo.semmap) ); /* - * Linux does not use the semmap field either but populates it - * with the defined value from SEMMAP, which really is redefined - * to SEMMNS, which they define as SEMMNI * SEMMSL. - * Try to simulate this returning our dynamic semmns value. + * Linux does not use the semmap field but populates it with + * the defined value from SEMMAP, which really is redefined to + * SEMMNS, which they define as SEMMNI * SEMMSL. Try to + * simulate this returning our dynamic semmns value. */ linux_seminfo.semmap = linux_seminfo.semmns; /* XXX BSD equivalent?