Re: [PATCH] x86/dmi: Switch dmi_remap to ioremap_cache

2017-03-09 Thread Julian Brost
On 26.01.2016 08:06, Andy Lutomirski wrote: > DMI cacheability is very confused on x86. > > dmi_early_remap uses early_ioremap, which uses FIXMAP_PAGE_IO, which > is __PAGE_KERNEL_IO, which is __PAGE_KERNEL, which is cached. Don't > ask me why this makes any sense. > > dmi_remap uses ioremap, wh

Re: [PATCH] x86/dmi: Switch dmi_remap to ioremap_cache

2017-03-09 Thread Julian Brost
On 09.03.2017 18:51, Arjan van de Ven wrote: > On 3/9/2017 9:48 AM, Julian Brost wrote: > >> I'm note entirely sure whether it's actually the kernel or HP to blame, >> but for now, hp-health is completely broken on 4.9 (probably on >> everything starting

Use of the address linux-...@linux.intel.com in the Linux kernel

2015-01-11 Thread Julian Brost
Hi, the e-mail address linux-...@linux.intel.com is given as contact address in multiple files in the Linux kernel [1]. Earlier today I cc'd a patch to this address [2] which got rejected since I'm not a list member. Subscribing to it doesn't seem to be possible either. Therefore this address see

[PATCH 0/4] Documentation/misc-devices/mei: Fix formatting

2015-01-11 Thread Julian Brost
This patch series fixes multiple formatting issues in the documentation for the Intel MEI, including improperly formatted headlines and issues with spacing and indentation. Julian Brost (4): Documentation/misc-devices/mei: Fix formatting of headings. Documentation/misc-devices/mei: Fix

[PATCH 2/4] Documentation/misc-devices/mei: Fix spacing around parentheses.

2015-01-11 Thread Julian Brost
Add a space before opening and after closing parentheses where appropriate. Signed-off-by: Julian Brost Signed-off-by: Fabian Hofmann --- Documentation/misc-devices/mei/mei.txt | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Documentation/misc-devices/mei/mei.txt

[PATCH 4/4] Documentation/misc-devices/mei: Fix indentation of embedded code.

2015-01-11 Thread Julian Brost
Some of the source code embedded in mei-client-bus.txt was indented using spaces. This properly indents it with tabs and also removes a single space that was placed in front of a closing curly brace. Signed-off-by: Julian Brost Signed-off-by: Fabian Hofmann --- Documentation/misc-devices/mei

[PATCH 1/4] Documentation/misc-devices/mei: Fix formatting of headings.

2015-01-11 Thread Julian Brost
Make the heading underlines fit the length of the heading, remove colons at the end of headings and consistently place an empty line after each heading and two empty lines before each that is preceded by a paragraph. Signed-off-by: Julian Brost Signed-off-by: Fabian Hofmann --- Documentation

[PATCH 3/4] Documentation/misc-devices/mei: Fix indentation of enumeration.

2015-01-11 Thread Julian Brost
Properly indent a list in mei.txt in the same way as another list in that file. Signed-off-by: Julian Brost Signed-off-by: Fabian Hofmann --- Documentation/misc-devices/mei/mei.txt | 91 +- 1 file changed, 46 insertions(+), 45 deletions(-) diff --git a

Re: [PATCH v2 0/5] perf/x86/intel/uncore: Fix multiple coding style issues

2015-01-09 Thread Julian Brost
On 18.12.2014 17:51, Julian Brost wrote: > The following patch series fixes multiple coding style issues. Most of them > were found by checkpatch. > > v2: This is the version that's actually supposed to be sent out. > > Julian Brost (5): > perf/x86/intel/uncore: chec

[PATCH v2 2/5] perf/x86/intel/uncore: checkpatch: Replace kzalloc with kcalloc

2014-12-18 Thread Julian Brost
kzalloc was used for an array allocation where kcalloc should be used. Cc: Peter Zijlstra Cc: Paul Mackerras Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo Cc: Thomas Gleixner Cc: "H. Peter Anvin" Cc: x...@kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Julian Brost Sig

[PATCH v2 1/5] perf/x86/intel/uncore: checkpatch: Replace deprecated macro.

2014-12-18 Thread Julian Brost
The DEFINE_PCI_DEVICE_TABLE macro is deprecated and was replaced with an appropriate struct. Cc: Peter Zijlstra Cc: Paul Mackerras Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo Cc: Thomas Gleixner Cc: "H. Peter Anvin" Cc: x...@kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-

[PATCH v2 4/5] perf/x86/intel/uncore: checkpatch: Remove unnecessary line continuation

2014-12-18 Thread Julian Brost
This patch removes an accidentally placed line continuation backslash. Cc: Peter Zijlstra Cc: Paul Mackerras Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo Cc: Thomas Gleixner Cc: "H. Peter Anvin" Cc: x...@kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Julian Brost Sig

[PATCH v2 0/5] perf/x86/intel/uncore: Fix multiple coding style issues

2014-12-18 Thread Julian Brost
The following patch series fixes multiple coding style issues. Most of them were found by checkpatch. v2: This is the version that's actually supposed to be sent out. Julian Brost (5): perf/x86/intel/uncore: checkpatch: Replace deprecated macro. perf/x86/intel/uncore: checkpatch: Re

[PATCH v2 5/5] perf/x86/intel/uncore: checkpatch: Add newlines after declarations

2014-12-18 Thread Julian Brost
ned-off-by: Julian Brost Signed-off-by: Fabian Hofmann --- arch/x86/kernel/cpu/perf_event_intel_uncore.c | 4 arch/x86/kernel/cpu/perf_event_intel_uncore_nhmex.c | 1 + arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c | 9 + 3 files changed, 14 insertions(+) diff --git a/arch/

[PATCH v2 3/5] perf/x86/intel/uncore: coding style: Fix alignment in macros

2014-12-18 Thread Julian Brost
The macro definitions were improperly aligned which is fixed by this patch. Cc: Peter Zijlstra Cc: Paul Mackerras Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo Cc: Thomas Gleixner Cc: "H. Peter Anvin" Cc: x...@kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Julian Bro

Re: [PATCH] perf/x86/intel/uncore: Fix coding style

2014-12-17 Thread Julian Brost
On 16.12.2014 18:30, Julian Brost wrote: > Removed use of the deprecated DEFINE_PCI_DEVICE_TABLE macro, replaced a call > to > kzalloc with kcalloc, fixed whitespace alignment in macros and some other > minor > checkpatch warnings. > > Cc: Peter Zijlstra > Cc: Paul Mack

[PATCH] perf/x86/intel/uncore: Fix coding style

2014-12-16 Thread Julian Brost
uot;H. Peter Anvin" Cc: x...@kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Julian Brost Signed-off-by: Fabian Hofmann --- arch/x86/kernel/cpu/perf_event_intel_uncore.c | 6 +++- .../x86/kernel/cpu/perf_event_intel_uncore_nhmex.c | 1 + .../x86/