[tip:x86/urgent] x86/mm: Apply the section attribute to the variable, not its type

2014-09-09 Thread tip-bot for Jan-Simon Möller
Commit-ID: cc99535eb4049c730cac421d403d079593cb31ae Gitweb: http://git.kernel.org/tip/cc99535eb4049c730cac421d403d079593cb31ae Author: Jan-Simon Möller AuthorDate: Fri, 5 Sep 2014 16:16:45 -0700 Committer: Ingo Molnar CommitDate: Tue, 9 Sep 2014 07:13:39 +0200 x86/mm: Apply the

Re: [PATCH 0/6] LLVMLinux: Patches to enable the kernel to be compiled with clang/LLVM

2014-07-09 Thread Jan-Simon Möller
Hi Will, > BTW, have you tried building an arm64 kernel with clang? ragarding arm64: yes, there is a test target already - see http://git.linuxfoundation.org/?p=llvmlinux.git;a=tree;f=targets/vexpress64 Reproduce with: git clone http://git.linuxfoundation.org/llvmlinux.git cd llvmlinux/target

Re: 3d3d6b847420 ("kbuild: LLVMLinux: Adapt warnings for compilation with clang")

2014-06-16 Thread Jan-Simon Möller
Ok, let's wrap this case with ifeq ($(COMPILER),clang) ... endif And we'll update the stale entries. Patch to follow after some testing. -- Dipl.-Ing. Jan-Simon Möller jansimon.moel...@gmx.de Am Montag, 16. Juni 2014, 17:29:25 schrieb PaX Team: > On 16 Jun 2014 at 15:07, Bo

Re: [PATCH v2] mac80211: LLVMLinux: Remove VLAIS usage from mac80211

2014-03-08 Thread Jan-Simon Möller
On 9. März 2014 00:00:19 MEZ, Sergei Antonov wrote: >On 8 March 2014 23:01, PaX Team wrote: >> On 8 Mar 2014 at 21:29, Sergei Antonov wrote: >> >>> > - memset(&aead_req, 0, sizeof(aead_req)); >>> > + char aead_req_data[sizeof(struct aead_request) + >>> > +

Re: [llvmlinux] [PATCH 3/4] x86: Allow building 16-bit code with -m16 with toolchains that support it

2014-01-14 Thread Jan-Simon Möller
Hi David, what version of clang did you use btw ? -- Dipl.-Ing. Jan-Simon Möller jansimon.moel...@gmx.de Am Mittwoch, 8. Januar 2014, 11:21:22 schrieb David Woodhouse: > I have this working with LLVM/Clang, and a PR is filed for GCC because > the current hacks we have to do to *try* to

Re: [llvmlinux] [PATCH 1/4] x86: Remove duplication of 16-bit CFLAGS

2014-01-08 Thread Jan-Simon Möller
Hi David, I'll import your patches to our queue and resolve them with the existing ones. Thanks. Best, Jan-Simon Am 08.01.2014 12:21, schrieb David Woodhouse: > Define them once in arch/x86/Makefile instead of twice > > Signed-off-by: David Woodhouse > --- > arch/x86/Makefile | 14

[tip:x86/asm] x86, asm: Fix a compilation issue with clang

2013-08-29 Thread tip-bot for Jan-Simon Möller
Commit-ID: bdfc017eead9bc17cd23317ff42eb7297cb9468a Gitweb: http://git.kernel.org/tip/bdfc017eead9bc17cd23317ff42eb7297cb9468a Author: Jan-Simon Möller AuthorDate: Thu, 29 Aug 2013 21:13:05 +0200 Committer: H. Peter Anvin CommitDate: Thu, 29 Aug 2013 13:26:33 -0700 x86, asm: Fix a

[tip:x86/asm] x86, asm: Extend definitions of _ASM_* with a raw format

2013-08-29 Thread tip-bot for Jan-Simon Möller
Commit-ID: 3e9b2327b59801e677a7581fe4d2541ca749dcab Gitweb: http://git.kernel.org/tip/3e9b2327b59801e677a7581fe4d2541ca749dcab Author: Jan-Simon Möller AuthorDate: Thu, 29 Aug 2013 21:13:04 +0200 Committer: H. Peter Anvin CommitDate: Thu, 29 Aug 2013 13:26:32 -0700 x86, asm: Extend

Re: [llvmlinux] [PATCH] [RFC] [X86] Fix a compilation issue with clang.

2013-08-29 Thread Jan-Simon Möller
On Thursday 29 August 2013 11:31:44 H. Peter Anvin wrote: > On 08/29/2013 11:23 AM, Jan-Simon Möller wrote: > >> Actually, it might be a bad idea. In C embedded assembly we sometimes > >> need %% and sometimes %. > > > > You speak of arch/x86/kvm/vmx.c, right ?

Re: [llvmlinux] [PATCH] [RFC] [X86] Fix a compilation issue with clang.

2013-08-29 Thread Jan-Simon Möller
> Actually, it might be a bad idea. In C embedded assembly we sometimes > need %% and sometimes %. You speak of arch/x86/kvm/vmx.c, right ? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at h

Re: [llvmlinux] [PATCH] [RFC] [X86] Fix a compilation issue with clang.

2013-08-29 Thread Jan-Simon Möller
On Thursday 29 August 2013 11:11:32 H. Peter Anvin wrote: > On 08/29/2013 11:00 AM, Jan-Simon Möller wrote: > >> You just changed the sematics of the _ASM_* macros... that doesn't seem > >> like a great idea. It's probably okay for the registers, but still... >

Re: [llvmlinux] [PATCH] [RFC] [X86] Fix a compilation issue with clang.

2013-08-29 Thread Jan-Simon Möller
On Thursday 29 August 2013 10:28:52 H. Peter Anvin wrote: > On 08/29/2013 10:13 AM, dl...@gmx.de wrote: > > From: Jan-Simon Möller > > > > Clang does not support the "shortcut" we're taking here for gcc (see > > below). > Read: clang is gratuitous

Re: [PATCH] [TRIVIAL] Remove braces in drivers/scsi/in2000.h to fix build for clang. No functional change otherwise.

2013-08-29 Thread Jan-Simon Möller
Ping. @Christoph do you take care of removing then ? Or can we merge this patch as-is now. Best, JS On Wednesday 21 August 2013 15:11:33 Jan-Simon Möller wrote: > On Wednesday 21 August 2013 09:26:14 Jan-Simon Möller wrote: > > > > Description: > > > > Clang c

Re: [PATCH] [TRIVIAL] Remove braces in drivers/scsi/in2000.h to fix build for clang. No functional change otherwise.

2013-08-21 Thread Jan-Simon Möller
On Wednesday 21 August 2013 09:26:14 Jan-Simon Möller wrote: > > > Description: > > > Clang chokes on the notation "insw (%%dx)" but works for "insw %%dx" > > > (outsw likewise); GNU as accepts both forms. > > > > > > Signe

Re: [PATCH] [TRIVIAL] Remove braces in drivers/scsi/in2000.h to fix build for clang. No functional change otherwise.

2013-08-21 Thread Jan-Simon Möller
> > > > Description: > > Clang chokes on the notation "insw (%%dx)" but works for "insw %%dx" > > (outsw likewise); GNU as accepts both forms. > > > > Signed-off-by: Jan-Simon M??ller > > I think the right fix is to simply kill the FAST_READ_IO/FAST_WRITE_IO > defines and their associated i

Re: [PATCH] [TRIVIAL] Remove braces to fix build for clang. No functional change otherwise.

2013-08-20 Thread Jan-Simon Möller
On Tuesday 20 August 2013 14:24:33 Greg Kroah-Hartman wrote: > On Tue, Aug 20, 2013 at 10:52:06PM +0200, dl...@gmx.de wrote: > > From: Jan-Simon Möller > > > > Author: PaX Team > > ML-Post: > > http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-201205

Re: [PATCH] mutex: Fix mutex_can_spin_on_owner

2013-07-25 Thread Jan-Simon Möller
On Friday 19 July 2013 16:58:09 Waiman Long wrote: > > I supposed that only the gcc compiler can be used to build Linux kernel > as the kernel source uses a lot of features specific to gcc. Look at http://llvm.linuxfoundation.org - they're using clang with more and more success. -- JS -- To

Re: [Intel-gfx] [PATCH] [TRIVIAL] Fix declaration of intel_gmbus_{is_forced_bit/is_port_falid} in i915 driver.

2013-05-06 Thread Jan-Simon Möller
>> was developed by PaX Team . > > >> This is respin of this patch. > > >> > > >> Signed-off-by: Jan-Simon Möller > > >> CC: pagee...@freemail.hu > > >> CC: daniel.vet...@ffwll.ch > > >> CC: airl...@linux.ie >

[tip:perf/urgent] perf/x86/intel: Fix unintended variable name reuse

2013-04-30 Thread tip-bot for Jan-Simon Möller
Commit-ID: 1b0dac2ac6debdbf1541e15f2cede03613cf4465 Gitweb: http://git.kernel.org/tip/1b0dac2ac6debdbf1541e15f2cede03613cf4465 Author: Jan-Simon Möller AuthorDate: Tue, 30 Apr 2013 12:02:33 +0200 Committer: Ingo Molnar CommitDate: Tue, 30 Apr 2013 13:12:47 +0200 perf/x86/intel: Fix

GSoC & LLVMLinux Project

2013-04-30 Thread Jan-Simon Möller
Hi all! The LLVMLinux project is using clang to compile the Linux Kernel. On our way reaching this endeavour we invite students to submit proposals for work on LLVM/Clang and the Linux Kernel. Our GSoC page is: http://llvm.linuxfoundation.org/index.php/GSoC as well as http://www.linuxfoundat

[PATCH] [TRIVIAL] FIX: unintended variable name reuse

2013-04-05 Thread Jan-Simon Möller
Cleanup a variable name reuse. Fix suggested by PaX Team Signed-off-by: Jan-Simon Möller --- arch/x86/kernel/cpu/perf_event_intel_uncore.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/arch/x86/kernel/cpu/perf_event_intel_uncore.c b/arch/x86/kernel/cpu

[PATCH] Trivial: Fix typo in include/linux/clk.h .

2012-07-23 Thread Jan-Simon Möller
From: Jan-Simon Möller Signed-off-by: Jan-Simon Möller Cc: Russell King Cc: linux-kernel@vger.kernel.org --- include/linux/clk.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/clk.h b/include/linux/clk.h index f7bd858..116172f 100644 --- a/include

Re: kbuild: modules_install regression ? - depmod

2007-12-28 Thread Jan-Simon Möller
Am Freitag 28 Dezember 2007 16:08:19 schrieb [EMAIL PROTECTED]: > i have the same issue, but with 2.6.24-rc6 on a box with 512MB RAM > > System is openSUSE 10.3 > > on "make modules_install" , depmod reproduceably dies with out of memory > error when it is ~800MB VSZ and ~350MB RSS this happens on

Re: sata NCQ blacklist entry

2007-11-23 Thread Jan-Simon Möller
Am Freitag 23 November 2007 08:21:09 schrieb Andrew Morton: > On Tue, 13 Nov 2007 21:55:15 +0100 Jan-Simon M__ller <[EMAIL PROTECTED]> > wrote: > > Hi! > > You removed from cc the guys who are most likely to fix this. Please > always do reply-to-all. Sri, will remember that. > > > Just using kern

Re: sata NCQ blacklist entry

2007-11-14 Thread Jan-Simon Möller
Am Dienstag 13 November 2007 21:55:15 schrieb Jan-Simon Möller: > Hi! > > Just using kernel 2.6.24-rc2 (325d22df7b19e0116aff3391d3a03f73d0634ded). > > When booting the system hangs, using the emergency-sync a couple of times > gets the system to go on at some point. > Its alw

Re: sata NCQ blacklist entry

2007-11-13 Thread Jan-Simon Möller
Hi! Just using kernel 2.6.24-rc2 (325d22df7b19e0116aff3391d3a03f73d0634ded). When booting the system hangs, using the emergency-sync a couple of times gets the system to go on at some point. Its always around starting X/Firewall (can't actually say whats done in this moment). Looking at dmesg

kbuild: modules_install regression ? - depmod

2007-10-31 Thread Jan-Simon Möller
Hi! I compiled kernel 2.6.24-rc1 (latest git as of today) on a Box with 256MB Ram. During "make modules_install" I got these errors: DEPMOD 2.6.24-rc1-default WARNING: Can't read module /lib/modules/2.6.24-rc1-default/kernel/net/bridge/bridge.ko: Cannot allocate memory WARNING: Can't read m

Re: [alsa-devel] hda-intel: no soundcard with current linus' git tree

2007-10-19 Thread Jan-Simon Möller
- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- http://www.notebookzentrale.de/eshop.php?action=article_detail&s_supplier_aid=1366417&position=9&anzahl_treffer=9 Thanks again, great work! I patched my 10.3 default kernel and it works also :D . Linux is great - have phun ! Be

Re: [alsa-devel] hda-intel: no soundcard with current linus' git tree

2007-10-18 Thread Jan-Simon Möller
Tried you patch. Now the card works even without any model selected. Also the speakers sound "better" now :D . Bass is nearly too loud. Tnx for looking into this! Just on question: is it possible to mute the main speakers when headphones get plugged in ? Atm the internal speakers stay on. Best

Re: [alsa-devel] hda-intel: no soundcard with current linus' git tree

2007-10-18 Thread Jan-Simon Möller
Hi ! I compiled some different kernel and tried - no success without module, module=fujitsu, module=laptop, model=asus. I went through the alsa doc and found the section about Conexant 5047. I tried it and got some sound when using module=laptop-hp. So I suppose some pins are different here.

Re: [alsa-devel] hda-intel: no soundcard with current linus' git tree

2007-10-18 Thread Jan-Simon Möller
> Well, it's not called as "working". You did some workaround > explicitly... True ;) . > > Now it doesn't work, even with other model-options (fujitsu, laptop). > > There is no recent change regarding Conexant codecs over months in > ALSA tree. So, the problem has to be there for long time. > >

Re: hda-intel: no soundcard with current linus' git tree

2007-10-18 Thread Jan-Simon Möller
I've also no sound. Had it working using the alsa.git tree _before_ the last merge (>48h). Needed to use model=asus for this fujitsu v5505 here. Now it doesn't work, even with other model-options (fujitsu, laptop). legolas:/proc/asound # cat cards 0 [Intel ]: HDA-Intel - HDA Intel

Re: [BUG] memory leak in dm

2007-10-16 Thread Jan-Simon Möller
Am Dienstag 16 Oktober 2007 13:44:58 schrieb Jens Axboe: > Please try with this patch from Neil. Tried the patch. Now its usable - as far as i can say. Compiled a fresh kernel to "stress" the system (make -j3). Without the patch the system had freezed after some minutes during compile. ::

Re: [BUG] memory leak in dm

2007-10-16 Thread Jan-Simon Möller
Am Dienstag 16 Oktober 2007 13:38:00 schrieb Kristof Provost: > Hi, > > I'm seeing a serious memory leak whenever I use my /home partition. > It's an encrypted partition using dm-crypt. Simply running > 'stress -d 5' is enough to exhaust the memory in a few minutes. Same setup here - I can confirm