[BRIDGE]: netlink status fix
authorStephen Hemminger <[email protected]>
Thu, 3 Aug 2006 23:24:02 +0000 (16:24 -0700)
committerDavid S. Miller <[email protected]>
Sat, 5 Aug 2006 05:59:48 +0000 (22:59 -0700)
Fix code that passes back netlink status messages about
bridge changes. Submitted by [email protected]

Signed-off-by: Stephen Hemminger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/bridge/br_netlink.c

index 06abb6634f5be777a374c389b1d4778cb79ee210..53086fb75089346c0fd8658a0d2edcc41d9324ce 100644 (file)
@@ -85,7 +85,7 @@ void br_ifinfo_notify(int event, struct net_bridge_port *port)
                goto err_out;
 
        err = br_fill_ifinfo(skb, port, current->pid, 0, event, 0);
-       if (err)
+       if (err < 0)
                goto err_kfree;
 
        NETLINK_CB(skb).dst_group = RTNLGRP_LINK;