Re: [PATCH v3 net-next 0/3] Add support for async socket operations

2015-03-24 Thread Herbert Xu
On Mon, Mar 23, 2015 at 02:13:21PM -0700, Tadeusz Struk wrote:
>
> Herbert, is it possible to pull it to cryptodev?

How many more changes do you have that sit on top of this? If
it's small we could just push them through net-next until the
merge window opens again.

Cheers,
-- 
Email: Herbert Xu 
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v3 net-next 0/3] Add support for async socket operations

2015-03-23 Thread Tadeusz Struk
On 03/23/2015 01:42 PM, David Miller wrote:
> From: Tadeusz Struk 
> Date: Thu, 19 Mar 2015 12:31:19 -0700
> 
>> After the iocb parameter has been removed from sendmsg() and recvmsg() ops
>> the socket layer, and the network stack no longer support async operations.
>> This patch set adds support for asynchronous operations on sockets back.
>>
>> Changes in v3:
>> * As sugested by Al Viro instead of adding new functions aio_sendmsg
>>   and aio_recvmsg, added a ptr to iocb into the kernel-side msghdr structure.
>>   This way no change to aio.c is required.
>>
>> Changes in v2:
>> * removed redundant total_size param from aio_sendmsg and aio_recvmsg 
>> functions
> 
> Series applied to net-next.
> 

Thanks Dave!

Herbert, is it possible to pull it to cryptodev?

--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v3 net-next 0/3] Add support for async socket operations

2015-03-23 Thread David Miller
From: Tadeusz Struk 
Date: Thu, 19 Mar 2015 12:31:19 -0700

> After the iocb parameter has been removed from sendmsg() and recvmsg() ops
> the socket layer, and the network stack no longer support async operations.
> This patch set adds support for asynchronous operations on sockets back.
> 
> Changes in v3:
> * As sugested by Al Viro instead of adding new functions aio_sendmsg
>   and aio_recvmsg, added a ptr to iocb into the kernel-side msghdr structure.
>   This way no change to aio.c is required.
> 
> Changes in v2:
> * removed redundant total_size param from aio_sendmsg and aio_recvmsg 
> functions

Series applied to net-next.
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v3 net-next 0/3] Add support for async socket operations

2015-03-19 Thread Christoph Hellwig
On Thu, Mar 19, 2015 at 07:51:05PM +, Al Viro wrote:
> I think I can live with that.  Christoph, do you have any objections to
> that series?

Patch 1 looks fine to me which is probably what you care for.  I didn't have
time to look into the other two.
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v3 net-next 0/3] Add support for async socket operations

2015-03-19 Thread Al Viro
On Thu, Mar 19, 2015 at 12:31:19PM -0700, Tadeusz Struk wrote:
> After the iocb parameter has been removed from sendmsg() and recvmsg() ops
> the socket layer, and the network stack no longer support async operations.
> This patch set adds support for asynchronous operations on sockets back.
> 
> Changes in v3:
> * As sugested by Al Viro instead of adding new functions aio_sendmsg
>   and aio_recvmsg, added a ptr to iocb into the kernel-side msghdr structure.
>   This way no change to aio.c is required.
> 
> Changes in v2:
> * removed redundant total_size param from aio_sendmsg and aio_recvmsg 
> functions

I think I can live with that.  Christoph, do you have any objections to
that series?
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v3 net-next 0/3] Add support for async socket operations

2015-03-19 Thread Tadeusz Struk
After the iocb parameter has been removed from sendmsg() and recvmsg() ops
the socket layer, and the network stack no longer support async operations.
This patch set adds support for asynchronous operations on sockets back.

Changes in v3:
* As sugested by Al Viro instead of adding new functions aio_sendmsg
  and aio_recvmsg, added a ptr to iocb into the kernel-side msghdr structure.
  This way no change to aio.c is required.

Changes in v2:
* removed redundant total_size param from aio_sendmsg and aio_recvmsg functions

--
Tadeusz Struk (3):
  net: socket: add support for async operations
  crypto: af_alg - Allow to link sgl
  crypto: algif - change algif_skcipher to be asynchronous


 crypto/af_alg.c |   18 +++-
 crypto/algif_skcipher.c |  233 ++-
 include/crypto/if_alg.h |4 +
 include/linux/socket.h  |1 
 net/compat.c|2 
 net/socket.c|8 +-
 6 files changed, 251 insertions(+), 15 deletions(-)

-- 
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html