|
@@ -2300,7 +2300,6 @@ int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
|
|
|
|
|
|
cb = &nlk->cb;
|
|
|
memset(cb, 0, sizeof(*cb));
|
|
|
- cb->start = control->start;
|
|
|
cb->dump = control->dump;
|
|
|
cb->done = control->done;
|
|
|
cb->nlh = nlh;
|
|
@@ -2309,8 +2308,8 @@ int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
|
|
|
cb->min_dump_alloc = control->min_dump_alloc;
|
|
|
cb->skb = skb;
|
|
|
|
|
|
- if (cb->start) {
|
|
|
- ret = cb->start(cb);
|
|
|
+ if (control->start) {
|
|
|
+ ret = control->start(cb);
|
|
|
if (ret)
|
|
|
goto error_put;
|
|
|
}
|