[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <54BC2414.2010100@mojatatu.com>
Date: Sun, 18 Jan 2015 16:22:28 -0500
From: Jamal Hadi Salim <jhs@...atatu.com>
To: Cong Wang <cwang@...pensource.com>
CC: David Miller <davem@...emloft.net>,
netdev <netdev@...r.kernel.org>, nbd@...nwrt.org,
pablo@...filter.org, Florian Westphal <fw@...len.de>,
Jiří Pírko <jiri@...nulli.us>
Subject: Re: [net-next PATCH v2 1/1] net: sched: Introduce connmark action
On 01/18/15 16:00, Cong Wang wrote:
> On Sun, Jan 18, 2015 at 12:00 PM, Jamal Hadi Salim <jhs@...atatu.com> wrote:
>> +
>> +MODULE_AUTHOR("Felix Fietkau <nbd@...nwrt.org>");
>> +MODULE_DESCRIPTION("Connection tracking mark restoring");
>> +MODULE_LICENSE("GPL");
>
>
> Please move these to the bottom.
>
Done.
>> +
>> +static int __init connmark_init_module(void)
>> +{
>> + int ret;
>> +
>> + ret = tcf_hashinfo_init(&connmark_hash_info, CONNMARK_TAB_MASK);
>> + if (ret)
>> + return ret;
>> +
>
> Is this against latest net-next? We don't need to init the hashinfo anymore,
> tcf_register_action() already does that.
>
The code itself has been living outside the tree - so i am just doing
only necessary transforms. The above was needed because the action
was maintaining its own hash.
I will convert to the new mode.
>> + return tcf_register_action(&act_connmark_ops, CONNMARK_TAB_MASK);
>> +}
>> +
>> +static void __exit connmark_cleanup_module(void)
>> +{
>> + tcf_unregister_action(&act_connmark_ops);
>> +}
>> +
>
> Even if we really needed, you forgot to call tcf_hashinfo_destroy()?
>
Didnt follow - why do you need tcf_hashinfo_destroy()?
Will send v3 shortly
cheers,
jamal
> Thanks.
>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists