Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1343611
| From | Marty McFadden <mcfadden8@llnl.gov> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/4] MSR: Prep for separating msr.c into three files |
| Date | 2016-02-26 01:20 +0100 |
| Message-ID | <r6eiu-3m0-23@gated-at.bofh.it> (permalink) |
| References | <r6eit-3m0-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
No functional change (yet). Just updated Makefile to successfully build msr_entry.c instead of msr.c. This is in preparation for splitting the MSR kernel module into three separate implementation files: 1) msr_entry.c - Original msr driver and entry (now) 2) msr_whitelist.c - MSR Whitelist implementation (patch 2) 3) msr_batch.c - MSR Batch implementation (patch 3) Signed-off-by: Marty McFadden <mcfadden8@llnl.gov> --- arch/x86/kernel/Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index b1b78ff..7e96dff 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile @@ -54,6 +54,7 @@ obj-$(CONFIG_STACKTRACE) += stacktrace.o obj-y += cpu/ obj-y += acpi/ obj-y += reboot.o +msr-y += msr_entry.o obj-$(CONFIG_X86_MSR) += msr.o obj-$(CONFIG_X86_CPUID) += cpuid.o obj-$(CONFIG_PCI) += early-quirks.o -- 1.7.1
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 2/4] MSR: Prep for separating msr.c into three files Marty McFadden <mcfadden8@llnl.gov> - 2016-02-26 01:20 +0100
csiph-web