Re: [PATCH net-next 0/3] strp: Generalize stream parser to work with other socket types

2016-08-29 Thread Tom Herbert
On Sun, Aug 28, 2016 at 8:34 PM, David Miller wrote: > From: Tom Herbert > Date: Sun, 28 Aug 2016 14:43:16 -0700 > >> Add a read_sock protocol operation function that allows something like >> tcp_read_sock to be called for other protocol types. >> >>

Re: [PATCH net-next 0/3] strp: Generalize stream parser to work with other socket types

2016-08-28 Thread David Miller
From: Tom Herbert Date: Sun, 28 Aug 2016 14:43:16 -0700 > Add a read_sock protocol operation function that allows something like > tcp_read_sock to be called for other protocol types. > > Specific changes in this patch set: > - Add read_sock function to proto_ops. This

[PATCH net-next 0/3] strp: Generalize stream parser to work with other socket types

2016-08-28 Thread Tom Herbert
Add a read_sock protocol operation function that allows something like tcp_read_sock to be called for other protocol types. Specific changes in this patch set: - Add read_sock function to proto_ops. This has the same signature as tcp_read_sock. sk_read_actor_t is also defined in net.h. -