Re: [PATCH] isdn: disable HiSax NetJet driver on microblaze arch

2015-06-21 Thread Nicolai Stange
David Miller da...@davemloft.net writes: Note that endianess on microblaze is not determined through Kconfig, but by means of a compiler provided CPP macro, namely __MICROBLAZEEL__. However, gcc defaults to big endianess on that platform. Applied, but we're long overdue for an

Re: [PATCH] isdn: disable HiSax NetJet driver on microblaze arch

2015-06-22 Thread Nicolai Stange
Jean Delvare jdelv...@suse.de writes: Le Sunday 21 June 2015 à 19:59 +0200, Nicolai Stange a écrit : David Miller da...@davemloft.net writes: Applied, but we're long overdue for an across-the-board-available endianness Kconfig option that can flat out be used in these situations. The current

Re: [PATCH] lib: test_bpf: purge CPP register redefinitions

2015-06-22 Thread Nicolai Stange
Richard Weinberger rich...@nod.at writes: While riding the bus to my office I've materialized that idea. Nicolai, can you please give the attached patch a try? W/o my test_bpf patch applied, w/ your patch applied: - linux mainline: um compiles - linux-next: um compiles up to this mfd/syscon

[PATCH] isdn: disable HiSax NetJet driver on microblaze arch

2015-06-16 Thread Nicolai Stange
-by: Nicolai Stange nicsta...@gmail.com --- The maintainer tree listed under ISDN SUBSYSTEM in MAINTAINERS does not exist anymore. I created the diff against the Linus tree. drivers/isdn/hisax/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/isdn/hisax/Kconfig b

Re: [PATCH] isdn: disable HiSax NetJet driver on microblaze arch

2015-06-17 Thread Nicolai Stange
Acked-by: Jean Delvare jdelv...@suse.de Jean, thank you very much for your prompt reaction! -- To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v2] net, socket, socket_wq: fix missing initialization of flags

2015-12-31 Thread Nicolai Stange
David Miller <da...@davemloft.net> writes: > From: Nicolai Stange <nicsta...@gmail.com> > Date: Tue, 29 Dec 2015 13:29:55 +0100 > >> Fixes: ceb5d58b2170 ("net: fix sock_wake_async() rcu protection") >> >> Commit ceb5d58b2170 ("net: fix sock

[PATCH] net, socket, socket_wq: fix missing initialization of flags

2015-12-27 Thread Nicolai Stange
lloc_inode() set the newly created struct socket_wq's ->flags member to zero. Signed-off-by: Nicolai Stange <nicsta...@gmail.com> --- net/socket.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/socket.c b/net/socket.c index 29822d6..d730ef9 100644 --- a/net/socket.c +++ b/net/socket.

Re: Linux 4.4-rc4 regression, bisected to "net: fix sock_wake_async() rcu protection"

2015-12-30 Thread Nicolai Stange
Andy Lutomirski writes: > On recent v4.4-rc releases, I can't run emacs. No, really, running > "emacs" in a GNOME 3 session makes gnome-shell think that emacs is > running, but no window is drawn, and the overall system UI is a bit > weird when the invisible emacs window is

[PATCH v2] net, socket, socket_wq: fix missing initialization of flags

2015-12-29 Thread Nicolai Stange
t the newly created struct socket_wq's ->flags member to zero. Signed-off-by: Nicolai Stange <nicsta...@gmail.com> --- Changes to V1 (only commit message changes): - Uhm, I misread sock_wake_async(). The meaning of the flags is actually inverted. My Ghostmacs wasn't waiting for fr

Re: [PATCH net-next 10/13] debugfs: constify argument to debugfs_real_fops()

2016-11-03 Thread Nicolai Stange
;file member of struct seq_operations is marked as such. > make parameter to debugfs_real_fops() const. > > CC: Nicolai Stange <nicsta...@gmail.com> > CC: Christian Lamparter <chunk...@gmail.com> > Signed-off-by: Jakub Kicinski <jakub.kicin...@netronome.com> > --- >

[PATCH v2] net: ipv4: emulate READ_ONCE() on ->hdrincl bit-field in raw_sendmsg()

2018-01-08 Thread Nicolai Stange
is breaks the chain in the sense that the compiler is not allowed to replace subsequent reads from hdrincl with reloads from inet->hdrincl. Fixes: 8f659a03a0ba ("net: ipv4: fix for a race condition in raw_sendmsg") Signed-off-by: Nicolai Stange <nsta...@suse.de> --- Compile-te

[PATCH] net: ipv4: emulate READ_ONCE() on ->hdrincl bit-field in raw_sendmsg()

2018-01-02 Thread Nicolai Stange
hdrincl = READ_ONCE(__hdrincl); This breaks the chain in the sense that the compiler is not allowed to replace subsequent reads from hdrincl with reloads from inet->hdrincl. Fixes: 8f659a03a0ba ("net: ipv4: fix for a race condition in raw_sendmsg") Signed-off-by: Nicolai Stange <n

Re: [PATCH] net: ipv4: emulate READ_ONCE() on ->hdrincl bit-field in raw_sendmsg()

2018-01-03 Thread Nicolai Stange
Hi Stefano, Stefano Brivio <sbri...@redhat.com> writes: > On Tue, 2 Jan 2018 17:30:20 +0100 > Nicolai Stange <nsta...@suse.de> wrote: > >> [...] >> >> diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c >> index 5b9bd5c33d9d..e84290c28c0c 100644 &g