Re: Please apply these tiny, 4-month-old patches.

2018-02-05 Thread Michael Witten
f course, still available in my previous emails. Also, as already described, they can be easily fetched from GitHub. Sincerely, Michael Witten

Re: Please apply these tiny, 4-month-old patches.

2018-02-05 Thread Michael Witten
ntainers in that community appropriately. I already tried that. If you're unwilling to be an effective maintainer, then please hand off the responsibiilty to someone else. Sincerely, Michael Witten

Please apply these tiny, 4-month-old patches.

2018-02-05 Thread Michael Witten
sn't matter when you receive it. Sincerely, Michael Witten On Sun, 01 Oct 2017 22:19:02 -, Michael Witten wrote: > The following patch series is an ad hoc "cleanup" that I made > while perusing the code (I'm not well versed in this code, so I > would not be

Re: [PATCH net 3/3] net: skb_queue_purge(): lock/unlock the queue only once

2017-10-01 Thread Michael Witten
On Sun, 1 Oct 2017 17:59:09 -0700, Stephen Hemminger wrote: > On Sun, 01 Oct 2017 22:19:20 -0000 Michael Witten wrote: > >> +spin_lock_irqsave(&q->lock, flags); >> +skb = q->next; >> +__skb_queue_head_init(q); >> +spin_unlock_irq

[PATCH net 3/3] net: skb_queue_purge(): lock/unlock the queue only once

2017-10-01 Thread Michael Witten
earing it), and then freeing each of the items as though it were enqueued in a private queue that doesn't require locking. Signed-off-by: Michael Witten --- net/core/skbuff.c | 26 ++ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/net/core/skbuff.c

[PATCH net 2/3] net: inet_recvmsg(): Remove unnecessary bitwise operation

2017-10-01 Thread Michael Witten
s that are passed to `tcp_recvmsg()'; yet, this unsetting appears to be unnecessary, and so this commit removes the bitwise operation that performs the unsetting. Signed-off-by: Michael Witten --- net/ipv4/af_inet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/af_in

[PATCH net 1/3] net: __sock_cmsg_send(): Remove unused parameter `msg'

2017-10-01 Thread Michael Witten
Date: Thu, 7 Sep 2017 03:21:38 + Signed-off-by: Michael Witten --- include/net/sock.h | 2 +- net/core/sock.c| 4 ++-- net/ipv4/ip_sockglue.c | 2 +- net/ipv6/datagram.c| 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/net/sock.h b/include/net

[PATCH net 0/3] net: TCP/IP: A few minor cleanups

2017-10-01 Thread Michael Witten
c | 2 +- net/ipv6/datagram.c| 2 +- 6 files changed, 24 insertions(+), 14 deletions(-) Sincerly, Michael Witten diff --git a/include/net/sock.h b/include/net/sock.h index 03a362568357..83373d7148a9 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -1562,7 +1562,7 @@ struct sockcm_

[PATCH v1 3/3] net: skb_queue_purge(): lock/unlock the queue only once

2017-09-08 Thread Michael Witten
this patch from GitHub: git checkout -b test 5969d1bb3082b41eba8fd2c826559abe38ccb6df git pull https://github.com/mfwitten/linux.git net/tcp-ip/01-cleanup/02 Sincerely, Michael Witten 8<8<8<8<8<8<8<8<8<8<8<8<8&

[PATCH 3/3] net: skb_queue_purge(): lock/unlock the list only once

2017-09-07 Thread Michael Witten
the whole point of `skb_queue_purge()' is to clear the list, presumably without giving anything else a chance to manipulate the list in the interim. Signed-off-by: Michael Witten --- net/core/skbuff.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net/core/skbuff.c

[PATCH 2/3] net: inet_recvmsg(): Remove unnecessary bitwise operation

2017-09-07 Thread Michael Witten
s that are passed to `tcp_recvmsg()'; yet, this unsetting appears to be unnecessary, and so this commit removes the bitwise operation that performs the unsetting. Signed-off-by: Michael Witten --- net/ipv4/af_inet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/af_in

[PATCH 1/3] net: __sock_cmsg_send(): Remove unused parameter `msg'

2017-09-07 Thread Michael Witten
Date: Thu, 7 Sep 2017 03:21:38 + Signed-off-by: Michael Witten --- include/net/sock.h | 2 +- net/core/sock.c| 4 ++-- net/ipv4/ip_sockglue.c | 2 +- net/ipv6/datagram.c| 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/net/sock.h b/include/net

[PATCH 0/3] net: TCP/IP: A few minor cleanups

2017-09-07 Thread Michael Witten
+- 6 files changed, 11 insertions(+), 7 deletions(-) Sincerly, Michael Witten diff --git a/include/net/sock.h b/include/net/sock.h index 03a362568357..83373d7148a9 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -1562,7 +1562,7 @@ struct sockcm_cookie { u16 tsflags; }; -