diff options
author | Richard Lucassen <[email protected]> | 2006-02-23 16:23:51 -0800 |
---|---|---|
committer | David S. Miller <[email protected]> | 2006-02-23 16:23:51 -0800 |
commit | 35eaa31e5d6b0653c11b5661572152295b45b7a7 (patch) | |
tree | fa62ae77e50253a558fdf39e66fb6cb750774f2e | |
parent | 4da3089f2b582b21e1374ccc6df722d4361eb915 (diff) |
[NET]: Increase default IFB device count.
The most usable number of ifb devices is 2. Change the default to 2.
Signed-off-by: Richard Lucassen <[email protected]>
Signed-off-by: Jamal Hadi Salim <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | drivers/net/ifb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ifb.c b/drivers/net/ifb.c index 1b699259b4ec..31fb2d75dc44 100644 --- a/drivers/net/ifb.c +++ b/drivers/net/ifb.c @@ -57,7 +57,7 @@ struct ifb_private { struct sk_buff_head tq; }; -static int numifbs = 1; +static int numifbs = 2; static void ri_tasklet(unsigned long dev); static int ifb_xmit(struct sk_buff *skb, struct net_device *dev); |