From nobody Wed Nov 3 09:08:27 2021 X-Original-To: dev-commits-src-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 40F75181C05B; Wed, 3 Nov 2021 09:08:28 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Hkgt40yT8z3kGp; Wed, 3 Nov 2021 09:08:28 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 00D73158D7; Wed, 3 Nov 2021 09:08:28 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1A398ROC022840; Wed, 3 Nov 2021 09:08:27 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1A398Rb8022839; Wed, 3 Nov 2021 09:08:27 GMT (envelope-from git) Date: Wed, 3 Nov 2021 09:08:27 GMT Message-Id: <202111030908.1A398Rb8022839@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Edward Tomasz Napierala Subject: git: 4dfd612286ec - main - linux: mv sys/i386/linux/linux_ptrace{,_machdep}.c List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-src-all@freebsd.org X-BeenThere: dev-commits-src-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: trasz X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 4dfd612286ec2ecc7a05f3d4fd65a58f4b05f74c Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=4dfd612286ec2ecc7a05f3d4fd65a58f4b05f74c commit 4dfd612286ec2ecc7a05f3d4fd65a58f4b05f74c Author: Edward Tomasz Napierala AuthorDate: 2021-11-03 08:49:41 +0000 Commit: Edward Tomasz Napierala CommitDate: 2021-11-03 08:50:17 +0000 linux: mv sys/i386/linux/linux_ptrace{,_machdep}.c In preparation for machine-independent sys/compat/linux/linux_ptrace.c, rename the i386-specific Linux ptrace(2) implementation. No functional changes. Sponsored By: EPSRC Differential Revision: https://reviews.freebsd.org/D32757 --- sys/i386/linux/{linux_ptrace.c => linux_ptrace_machdep.c} | 0 sys/modules/linux/Makefile | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/i386/linux/linux_ptrace.c b/sys/i386/linux/linux_ptrace_machdep.c similarity index 100% rename from sys/i386/linux/linux_ptrace.c rename to sys/i386/linux/linux_ptrace_machdep.c diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index 373ec3dcae91..d2822a20c67a 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -40,8 +40,8 @@ SRCS+= opt_apic.h OBJS= linux${SFX}_vdso.so .if ${MACHINE_CPUARCH} == "i386" -SRCS+= linux_ptrace.c imgact_linux.c linux_util.c linux_mib.c linux_mmap.c \ - linux_dummy.c linux_emul.c linux_errno.c opt_cpu.h linux.c +SRCS+= linux_ptrace_machdep.c imgact_linux.c linux_util.c linux_mib.c \ + linux_mmap.c linux_dummy.c linux_emul.c linux_errno.c opt_cpu.h linux.c .endif .if ${MACHINE_CPUARCH} == "i386"