Re: [PATCH net-next] net-gre-gro: Add GRE support to the GRO stack
From: Jerry Chu <hidden>
Date: 2014-01-03 13:32:17
From: Jerry Chu <hidden>
Date: 2014-01-03 13:32:17
On Fri, Jan 3, 2014 at 8:30 AM, David Miller [off-list ref] wrote:
From: "H.K. Jerry Chu" <redacted> Date: Mon, 30 Dec 2013 09:14:11 -0800quoted
+extern struct list_head offload_base;Please add a programmatical interface to do the lookups you need rather than exporting this symbol externally. As best I can tell you're trying to "find gro receive by type" and "find gro complete by type". So function signatures ought to look something like. struct packet_offload *gro_find_receive_by_type(__be16 type); struct packet_offload *gro_find_complete_by_type(__be16 type); Thanks.
Done. Will resubmit in a minute. Thanks, Jerry