Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1343611 > unrolled thread

[PATCH 2/4] MSR: Prep for separating msr.c into three files

Started byMarty McFadden <mcfadden8@llnl.gov>
First post2016-02-26 01:20 +0100
Last post2016-02-26 01:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/4] MSR: Prep for separating msr.c into three files Marty McFadden <mcfadden8@llnl.gov> - 2016-02-26 01:20 +0100

#1343611 — [PATCH 2/4] MSR: Prep for separating msr.c into three files

FromMarty McFadden <mcfadden8@llnl.gov>
Date2016-02-26 01:20 +0100
Subject[PATCH 2/4] MSR: Prep for separating msr.c into three files
Message-ID<r6eiu-3m0-23@gated-at.bofh.it>
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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web