Date: Wed, 28 Jul 2021 15:27:46 GMT From: =?utf-8?Q?Roger Pau Monn=C3=A9?= <royger@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: a48f7ba444fd - main - xen: move x86/xen/xenpv.c to dev/xen/bus/xenpv.c Message-ID: <202107281527.16SFRkem087780@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by royger: URL: https://cgit.FreeBSD.org/src/commit/?id=a48f7ba444fdd8598635fc0330631fb293f7818f commit a48f7ba444fdd8598635fc0330631fb293f7818f Author: Julien Grall <julien@xen.org> AuthorDate: 2014-01-14 01:41:10 +0000 Commit: Roger Pau Monné <royger@FreeBSD.org> CommitDate: 2021-07-28 15:27:02 +0000 xen: move x86/xen/xenpv.c to dev/xen/bus/xenpv.c Minor changes are necessary to make this processor-independent, but moving the file out of x86 and into common is the first step (so others don't add /more/ x86-isms). Submitted by: Elliott Mitchell <ehem+freebsd@m5p.com> Reviewed by: royger Differential Revision: https://reviews.freebsd.org/D29042 --- sys/conf/files | 1 + sys/conf/files.x86 | 1 - sys/{x86/xen => dev/xen/bus}/xenpv.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/conf/files b/sys/conf/files index 3d76d9909f77..efb0d4acac4a 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -3541,6 +3541,7 @@ dev/xdma/xdma_sglist.c optional xdma dev/xen/balloon/balloon.c optional xenhvm dev/xen/blkfront/blkfront.c optional xenhvm dev/xen/blkback/blkback.c optional xenhvm +dev/xen/bus/xenpv.c optional xenhvm dev/xen/console/xen_console.c optional xenhvm dev/xen/control/control.c optional xenhvm dev/xen/efi/pvefi.c optional xenhvm efirt diff --git a/sys/conf/files.x86 b/sys/conf/files.x86 index 2e30e33b4c48..b5bde6b87975 100644 --- a/sys/conf/files.x86 +++ b/sys/conf/files.x86 @@ -326,4 +326,3 @@ x86/x86/delay.c standard x86/xen/hvm.c optional xenhvm x86/xen/xen_intr.c optional xenhvm x86/xen/xen_apic.c optional xenhvm -x86/xen/xenpv.c optional xenhvm diff --git a/sys/x86/xen/xenpv.c b/sys/dev/xen/bus/xenpv.c similarity index 100% rename from sys/x86/xen/xenpv.c rename to sys/dev/xen/bus/xenpv.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107281527.16SFRkem087780>