Received: by mail.netbsd.org (Postfix, from userid 605) id 4A56884DB5; Sat, 12 Oct 2019 10:55:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C155584DAF for ; Sat, 12 Oct 2019 10:55:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id O_w9ayzmIphB for ; Sat, 12 Oct 2019 10:55:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 61D7F84CD4 for ; Sat, 12 Oct 2019 10:55:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5BA1AFBF4; Sat, 12 Oct 2019 10:55:23 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sat, 12 Oct 2019 10:55:23 +0000 From: "Kamil Rytarowski" Subject: CVS commit: src/sys/kern To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20191012105523.5BA1AFBF4@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Kamil Rytarowski" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: kamil Date: Sat Oct 12 10:55:23 UTC 2019 Modified Files: src/sys/kern: kern_exec.c kern_fork.c kern_proc.c kern_sig.c Log Message: Remove p_oppid from struct proc This field is not needed as it duplicated p_opptr that is alread safe to use, unless proven otherwise. eventswitch() already contained a check for != initproc (pid1). Ride ABI bump for 9.99.16. To generate a diff of this commit: cvs rdiff -u -r1.482 -r1.483 src/sys/kern/kern_exec.c cvs rdiff -u -r1.214 -r1.215 src/sys/kern/kern_fork.c cvs rdiff -u -r1.235 -r1.236 src/sys/kern/kern_proc.c cvs rdiff -u -r1.367 -r1.368 src/sys/kern/kern_sig.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.