diff options
author | kbuild test robot <lkp@intel.com> | 2019-03-14 02:42:43 +0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-03-17 08:40:18 +0100 |
commit | c634dc6bdedeb0b2c750fc611612618a85639ab2 (patch) | |
tree | 37bc6c703ab0e608e84060287787b6816137c52f | |
parent | f764c58b7faa26f5714e6907f892abc2bc0de4f8 (diff) | |
download | linux-c634dc6bdedeb0b2c750fc611612618a85639ab2.tar.gz linux-c634dc6bdedeb0b2c750fc611612618a85639ab2.tar.bz2 linux-c634dc6bdedeb0b2c750fc611612618a85639ab2.zip |
perf/x86/intel: Make dev_attr_allow_tsx_force_abort static
Fixes: 400816f60c54 ("perf/x86/intel: Implement support for TSX Force Abort")
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: "Peter Zijlstra (Intel)" <peterz@infradead.org>
Cc: kbuild-all@01.org
Cc: Borislav Petkov <bp@alien8.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: stable@vger.kernel.org
Link: https://lkml.kernel.org/r/20190313184243.GA10820@lkp-sb-ep06
-rw-r--r-- | arch/x86/events/intel/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/events/intel/core.c b/arch/x86/events/intel/core.c index 92dfeb343a6a..8baa441d8000 100644 --- a/arch/x86/events/intel/core.c +++ b/arch/x86/events/intel/core.c @@ -4179,7 +4179,7 @@ static struct attribute *intel_pmu_caps_attrs[] = { NULL }; -DEVICE_BOOL_ATTR(allow_tsx_force_abort, 0644, allow_tsx_force_abort); +static DEVICE_BOOL_ATTR(allow_tsx_force_abort, 0644, allow_tsx_force_abort); static struct attribute *intel_pmu_attrs[] = { &dev_attr_freeze_on_smi.attr, |