[NETLINK]: Directly return -EINTR from netlink_dump_start()

Now that all users of netlink_dump_start() use netlink_run_queue()
to process the receive queue, it is possible to return -EINTR from
netlink_dump_start() directly, therefore simplying the callers.

Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Thomas Graf
2007-03-22 23:30:55 -07:00
committed by David S. Miller
parent ead592ba24
commit c702e8047f
6 changed files with 18 additions and 34 deletions

View File

@@ -323,11 +323,8 @@ static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
if (ops->dumpit == NULL)
return -EOPNOTSUPP;
err = netlink_dump_start(genl_sock, skb, nlh,
ops->dumpit, ops->done);
if (err == 0)
err = -EINTR;
return err;
return netlink_dump_start(genl_sock, skb, nlh,
ops->dumpit, ops->done);
}
if (ops->doit == NULL)