diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-03-13 12:02:08 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-13 12:02:08 +0100 |
commit | 79258a354e0c69be94ae2871809a195bf4a647b1 (patch) | |
tree | 478c9331466e4abf32d4a49a9dfae89d924b2e83 /arch/x86/kernel | |
parent | e9a22d1fb94050b7d600019c32e6b672d539054b (diff) | |
download | linux-79258a354e0c69be94ae2871809a195bf4a647b1.tar.gz linux-79258a354e0c69be94ae2871809a195bf4a647b1.tar.bz2 linux-79258a354e0c69be94ae2871809a195bf4a647b1.zip |
x86, bts: detect size of DS fields, fix
Impact: build fix
One usage site was missed in the sizeof_field -> sizeof_ptr_field
rename.
Cc: Markus Metzger <markus.t.metzger@intel.com>
LKML-Reference: <20090313104218.A30096@sedona.ch.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/ds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/ds.c b/arch/x86/kernel/ds.c index 7363e01ba082..5fd53333c1df 100644 --- a/arch/x86/kernel/ds.c +++ b/arch/x86/kernel/ds.c @@ -983,7 +983,7 @@ ds_configure(const struct ds_configuration *cfg, printk("bts/pebs record: %u/%u bytes\n", ds_cfg.sizeof_rec[ds_bts], ds_cfg.sizeof_rec[ds_pebs]); - WARN_ON_ONCE(MAX_SIZEOF_DS < (12 * ds_cfg.sizeof_field)); + WARN_ON_ONCE(MAX_SIZEOF_DS < (12 * ds_cfg.sizeof_ptr_field)); } void __cpuinit ds_init_intel(struct cpuinfo_x86 *c) |