RE: [PATCH] crypto: remove unnecessary includes

2013-11-29 Thread Cristian Stoica
From what I could see there is nothing from those includes that is used inside authenc.c. The build passes without them. Cristian S. diff --git a/crypto/authenc.c b/crypto/authenc.c index 1875e70..7d4bfaa 100644 --- a/crypto/authenc.c +++ b/crypto/authenc.c @@ -17,11 +17,8 @@

Re: [PATCH] update consumers of MSG_MORE to recognize MSG_SENDPAGE_NOTLAST

2013-11-29 Thread Richard Weinberger
Shawn, Am Freitag, 29. November 2013, 06:47:04 schrieb Hannes Frederic Sowa: On Sun, Nov 24, 2013 at 10:36:28PM -0800, Shawn Landden wrote: Commit 35f9c09fe (tcp: tcp_sendpages() should call tcp_push() once) added an internal flag MSG_SENDPAGE_NOTLAST, similar to MSG_MORE. algif_hash,

Re: [PATCH] s390/crypto: fix aes ctr concurrency issue

2013-11-29 Thread Harald Freudenberger
On Fri, 2013-11-29 at 09:50 +0800, Herbert Xu wrote: On Thu, Nov 28, 2013 at 04:39:43PM +0100, Harald Freudenberger wrote: You can't use mutex_lock because you may be in a non-sleepable context. Perhaps just fall back to doing it block-by-block, like we do in aesni-intel on x86?

RE: [PATCH] crypto: remove unnecessary includes

2013-11-29 Thread Cristian Stoica
On Fri, Nov 29, 2013 at 08:49:42AM +, Cristian Stoica wrote: From what I could see there is nothing from those includes that is used inside authenc.c. The build passes without them. Just because it compiles it doesn't meant that the files you removed are unnecessary. The only file

Re: [PATCH] update consumers of MSG_MORE to recognize MSG_SENDPAGE_NOTLAST

2013-11-29 Thread David Miller
From: Shawn Landden sh...@churchofgit.com Date: Sun, 24 Nov 2013 22:36:28 -0800 Commit 35f9c09fe (tcp: tcp_sendpages() should call tcp_push() once) added an internal flag MSG_SENDPAGE_NOTLAST, similar to MSG_MORE. algif_hash, algif_skcipher, and udp used MSG_MORE from tcp_sendpages() and