From owner-svn-src-all@freebsd.org Tue Sep 3 19:56:52 2019 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id F1538D5E45; Tue, 3 Sep 2019 19:56:52 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46NHlm65nbz4H8C; Tue, 3 Sep 2019 19:56:52 +0000 (UTC) (envelope-from kib@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 B603D823F; Tue, 3 Sep 2019 19:56:52 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x83JuqOQ076324; Tue, 3 Sep 2019 19:56:52 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x83JuqYG076322; Tue, 3 Sep 2019 19:56:52 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201909031956.x83JuqYG076322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Tue, 3 Sep 2019 19:56:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r351788 - stable/12/sys/compat/linux X-SVN-Group: stable-12 X-SVN-Commit-Author: kib X-SVN-Commit-Paths: stable/12/sys/compat/linux X-SVN-Commit-Revision: 351788 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 03 Sep 2019 19:56:53 -0000 Author: kib Date: Tue Sep 3 19:56:52 2019 New Revision: 351788 URL: https://svnweb.freebsd.org/changeset/base/351788 Log: MFC r350863: compat/linux: Remove obsoleted and somewhat confusing comments related to COMPAT_43. Modified: stable/12/sys/compat/linux/linux_misc.c stable/12/sys/compat/linux/linux_uid16.c Directory Properties: stable/12/ (props changed) Modified: stable/12/sys/compat/linux/linux_misc.c ============================================================================== --- stable/12/sys/compat/linux/linux_misc.c Tue Sep 3 19:55:44 2019 (r351787) +++ stable/12/sys/compat/linux/linux_misc.c Tue Sep 3 19:56:52 2019 (r351788) @@ -1708,17 +1708,6 @@ linux_reboot(struct thread *td, struct linux_reboot_ar } -/* - * The FreeBSD native getpid(2), getgid(2) and getuid(2) also modify - * td->td_retval[1] when COMPAT_43 is defined. This clobbers registers that - * are assumed to be preserved. The following lightweight syscalls fixes - * this. See also linux_getgid16() and linux_getuid16() in linux_uid16.c - * - * linux_getpid() - MP SAFE - * linux_getgid() - MP SAFE - * linux_getuid() - MP SAFE - */ - int linux_getpid(struct thread *td, struct linux_getpid_args *args) { Modified: stable/12/sys/compat/linux/linux_uid16.c ============================================================================== --- stable/12/sys/compat/linux/linux_uid16.c Tue Sep 3 19:55:44 2019 (r351787) +++ stable/12/sys/compat/linux/linux_uid16.c Tue Sep 3 19:56:52 2019 (r351788) @@ -281,16 +281,6 @@ linux_getgroups16(struct thread *td, struct linux_getg return (0); } -/* - * The FreeBSD native getgid(2) and getuid(2) also modify td->td_retval[1] - * when COMPAT_43 is defined. This clobbers registers that are assumed to - * be preserved. The following lightweight syscalls fixes this. See also - * linux_getpid(2), linux_getgid(2) and linux_getuid(2) in linux_misc.c - * - * linux_getgid16() - MP SAFE - * linux_getuid16() - MP SAFE - */ - int linux_getgid16(struct thread *td, struct linux_getgid16_args *args) {