[Cluster-devel] Re: [GFS2] Fix runtime issue with UP kernels

2007-11-16 Thread David Miller
From: Steven Whitehouse [EMAIL PROTECTED] Date: Fri, 16 Nov 2007 10:37:43 + Ah, all becomes clear :-) Thanks for chasing down this issue, the patch is in my git tree now. I guess I must have had some other option turned on when I did my UP build that caused this not to happen, Spinlock

[Cluster-devel] [PATCH] dlm: Handle application limited situations properly.

2010-11-10 Thread David Miller
In the normal regime where an application uses non-blocking I/O writes on a socket, they will handle -EAGAIN and use poll() to wait for send space. They don't actually sleep on the socket I/O write. But kernel level RPC layers that do socket I/O operations directly and key off of -EAGAIN on the

Re: [Cluster-devel] [PATCH 5/6] net: add paged frag destructor support to kernel_sendpage.

2012-01-05 Thread David Miller
From: Ian Campbell ian.campb...@citrix.com Date: Thu, 5 Jan 2012 17:13:43 + -static ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset, +static ssize_t do_tcp_sendpages(struct sock *sk, + struct page **pages, +

Re: [Cluster-devel] [PATCH] dlm, sctp: Do not allocate a fd for peeloff

2012-03-08 Thread David Miller
From: Vladislav Yasevich vladislav.yasev...@hp.com Date: Wed, 07 Mar 2012 11:29:20 -0500 On 03/07/2012 10:41 AM, Benjamin Poirier wrote: avoids allocating a fd that a) propagates to every kernel thread and usermodehelper b) is not properly released. References:

Re: [Cluster-devel] [PATCH v2 1/2] sctp: Export sctp_do_peeloff

2012-03-08 Thread David Miller
From: Vladislav Yasevich vladislav.yasev...@hp.com Date: Thu, 08 Mar 2012 15:07:40 -0500 On 03/08/2012 10:55 AM, Benjamin Poirier wrote: lookup sctp_association within sctp_do_peeloff() to enable its use outside of the sctp code with minimal knowledge of the former. Signed-off-by: Benjamin

Re: [Cluster-devel] [PATCH v2 2/2] dlm: Do not allocate a fd for peeloff

2012-03-08 Thread David Miller
From: Vladislav Yasevich vladislav.yasev...@hp.com Date: Thu, 08 Mar 2012 15:08:17 -0500 On 03/08/2012 10:55 AM, Benjamin Poirier wrote: avoids allocating a fd that a) propagates to every kernel thread and usermodehelper b) is not properly released. References:

Re: [Cluster-devel] GFS2: Pre-pull patch posting (merge window)

2012-03-23 Thread David Miller
From: David Teigland teigl...@redhat.com Date: Fri, 23 Mar 2012 15:41:52 -0400 Why does gfs2 Kconfig bother with SCTP at all? It seems that line should just be removed. I'll also remove EXPERIMENTAL. I don't understand the vagaries of Kconfig, so a dumb question, how could sctp_do_peeloff

Re: [Cluster-devel] [patch for-3.8] net, sctp: remove CONFIG_EXPERIMENTAL

2013-02-14 Thread David Miller
From: David Rientjes rient...@google.com Date: Tue, 12 Feb 2013 16:24:56 -0800 (PST) From: Kees Cook keesc...@chromium.org This config item has not carried much meaning for a while now and is almost always enabled by default. As agreed during the Linux kernel summit, remove it. Acked-by:

Re: [Cluster-devel] [PATCH net] sctp: label accepted/peeled off sockets

2015-12-27 Thread David Miller
From: Marcelo Ricardo Leitner Date: Wed, 23 Dec 2015 16:44:09 -0200 > From: Marcelo Ricardo Leitner > > Accepted or peeled off sockets were missing a security label (e.g. > SELinux) which means that socket was in "unlabeled" state. > > This

Re: [Cluster-devel] [RFC 0/7] netlink: Add allocation flag to netlink_unicast()

2016-07-05 Thread David Miller
From: Masashi Honma Date: Wed, 6 Jul 2016 09:28:29 +0900 > Though currently such a use case was not found, to solve potential > issue we will add an allocation flag to netlink_unicast(). We don't solve potential issues, we solve real issues. There is no reason to add

Re: [Cluster-devel] [PATCH 1/3] rhashtable: Add rhashtable_lookup_get_insert_fast

2017-03-17 Thread David Miller
From: Andreas Gruenbacher Date: Fri, 17 Mar 2017 15:18:27 +0100 > Dave, > > is it a problem if this commit goes in through the gfs2 tree? > > https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git With no review whatseover on netdev or linux-kernel? I

Re: [Cluster-devel] [PATCH] rhashtable: Add rhashtable_lookup_get_insert_fast

2017-03-21 Thread David Miller
From: Andreas Gruenbacher Date: Sat, 18 Mar 2017 00:36:15 +0100 > Add rhashtable_lookup_get_insert_fast for fixed keys, similar to > rhashtable_lookup_get_insert_key for explicit keys. > > Signed-off-by: Andreas Gruenbacher > Acked-by: Herbert Xu

Re: [Cluster-devel] [PATCH 2/3] rhashtable: Add rhashtable_walk_curr

2017-12-19 Thread David Miller
From: Andreas Gruenbacher Date: Tue, 19 Dec 2017 09:35:47 +0100 > By the way, git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git > master doesn't merge cleanly with current mainline. Yes, this is the case more often than not :-)

Re: [Cluster-devel] remove kernel_setsockopt and kernel_getsockopt

2020-05-13 Thread David Miller
From: Christoph Hellwig Date: Wed, 13 May 2020 08:26:15 +0200 > Hi Dave, > > this series removes the kernel_setsockopt and kernel_getsockopt > functions, and instead switches their users to small functions that > implement setting (or in one case getting) a sockopt directly using > a normal

Re: [Cluster-devel] remove kernel_setsockopt and kernel_getsockopt

2020-05-14 Thread David Miller
From: David Laight Date: Thu, 14 May 2020 10:26:41 + > I doubt we are the one company with out-of-tree drivers > that use the kernel_socket interface. Not our problem.

Re: [Cluster-devel] remove kernel_setsockopt and kernel_getsockopt

2020-05-14 Thread David Miller
From: David Laight Date: Thu, 14 May 2020 08:29:30 + > You need to export functions that do most of the socket options > for all protocols. If all in-tree users of this stuff are converted, there is no argument for keeping these routines. You seemed to be concerned about out of tree stuff.

Re: [Cluster-devel] [PATCH 31/33] sctp: add sctp_sock_set_nodelay

2020-05-20 Thread David Miller
From: Marcelo Ricardo Leitner Date: Wed, 20 May 2020 20:10:01 -0300 > The duplication with sctp_setsockopt_nodelay() is quite silly/bad. > Also, why have the 'true' hardcoded? It's what dlm uses, yes, but the > API could be a bit more complete than that. The APIs are being designed based upon

Re: [Cluster-devel] remove kernel_getsockopt

2020-05-27 Thread David Miller
From: Christoph Hellwig Date: Wed, 27 May 2020 20:22:27 +0200 > this series reduces scope from the last round and just removes > kernel_getsockopt to avoid conflicting with the sctp cleanup series. Series applied to net-next, thanks.

Re: [Cluster-devel] remove most callers of kernel_setsockopt v3

2020-05-28 Thread David Miller
From: Christoph Hellwig Date: Thu, 28 May 2020 07:12:08 +0200 > this series removes most callers of the kernel_setsockopt functions, and > instead switches their users to small functions that implement setting a > sockopt directly using a normal kernel function call with type safety and > all

Re: [Cluster-devel] remove kernel_setsockopt v4

2020-05-29 Thread David Miller
From: Christoph Hellwig Date: Fri, 29 May 2020 14:09:39 +0200 > now that only the dlm calls to sctp are left for kernel_setsockopt, > while we haven't really made much progress with the sctp setsockopt > refactoring, how about this small series that splits out a > sctp_setsockopt_bindx_kernel