diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-27 12:26:46 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-27 12:26:46 -0400 |
commit | 15c54033964a943de7b0763efd3bd0ede7326395 (patch) | |
tree | 840b292612d1b5396d5bab5bde537a9013db3ceb /net/8021q/vlan.c | |
parent | ad5da3cf39a5b11a198929be1f2644e17ecd767e (diff) | |
parent | 912a41a4ab935ce8c4308428ec13fc7f8b1f18f4 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6: (448 commits)
[IPV4] nl_fib_lookup: Initialise res.r before fib_res_put(&res)
[IPV6]: Fix thinko in ipv6_rthdr_rcv() changes.
[IPV4]: Add multipath cached to feature-removal-schedule.txt
[WIRELESS] cfg80211: Clarify locking comment.
[WIRELESS] cfg80211: Fix locking in wiphy_new.
[WEXT] net_device: Don't include wext bits if not required.
[WEXT]: Misc code cleanups.
[WEXT]: Reduce inline abuse.
[WEXT]: Move EXPORT_SYMBOL statements where they belong.
[WEXT]: Cleanup early ioctl call path.
[WEXT]: Remove options.
[WEXT]: Remove dead debug code.
[WEXT]: Clean up how wext is called.
[WEXT]: Move to net/wireless
[AFS]: Eliminate cmpxchg() usage in vlocation code.
[RXRPC]: Fix pointers passed to bitops.
[RXRPC]: Remove bogus atomic_* overrides.
[AFS]: Fix u64 printing in debug logging.
[AFS]: Add "directory write" support.
[AFS]: Implement the CB.InitCallBackState3 operation.
...
Diffstat (limited to 'net/8021q/vlan.c')
-rw-r--r-- | net/8021q/vlan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index eb1c71ed7dfe..c0c7bb8e9f07 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c | |||
@@ -470,7 +470,7 @@ static struct net_device *register_vlan_device(const char *eth_IF_name, | |||
470 | */ | 470 | */ |
471 | default: | 471 | default: |
472 | snprintf(name, IFNAMSIZ, "vlan%.4i", VLAN_ID); | 472 | snprintf(name, IFNAMSIZ, "vlan%.4i", VLAN_ID); |
473 | }; | 473 | } |
474 | 474 | ||
475 | new_dev = alloc_netdev(sizeof(struct vlan_dev_info), name, | 475 | new_dev = alloc_netdev(sizeof(struct vlan_dev_info), name, |
476 | vlan_setup); | 476 | vlan_setup); |
@@ -685,7 +685,7 @@ static int vlan_device_event(struct notifier_block *unused, unsigned long event, | |||
685 | break; | 685 | break; |
686 | } | 686 | } |
687 | break; | 687 | break; |
688 | }; | 688 | } |
689 | 689 | ||
690 | out: | 690 | out: |
691 | return NOTIFY_DONE; | 691 | return NOTIFY_DONE; |
@@ -819,7 +819,7 @@ static int vlan_ioctl_handler(void __user *arg) | |||
819 | printk(VLAN_DBG "%s: Unknown VLAN CMD: %x \n", | 819 | printk(VLAN_DBG "%s: Unknown VLAN CMD: %x \n", |
820 | __FUNCTION__, args.cmd); | 820 | __FUNCTION__, args.cmd); |
821 | return -EINVAL; | 821 | return -EINVAL; |
822 | }; | 822 | } |
823 | out: | 823 | out: |
824 | return err; | 824 | return err; |
825 | } | 825 | } |