aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee802154
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2012-04-01 15:30:01 -0400
committerTejun Heo <tj@kernel.org>2012-04-01 15:55:00 -0400
commit959d851caa48829eb85cb85aa949fd6b4c5d5bc6 (patch)
tree3ba9c94ec346275fb44c4f0d1cd2537cdff8d811 /net/ieee802154
parenta5567932fc926739e29e98487128080f40c61710 (diff)
parent48ddbe194623ae089cc0576e60363f2d2e85662a (diff)
Merge branch 'for-3.5' of ../cgroup into block/for-3.5/core-merged
cgroup/for-3.5 contains the following changes which blk-cgroup needs to proceed with the on-going cleanup. * Dynamic addition and removal of cftypes to make config/stat file handling modular for policies. * cgroup removal update to not wait for css references to drain to fix blkcg removal hang caused by cfq caching cfqgs. Pull in cgroup/for-3.5 into block/for-3.5/core. This causes the following conflicts in block/blk-cgroup.c. * 761b3ef50e "cgroup: remove cgroup_subsys argument from callbacks" conflicts with blkiocg_pre_destroy() addition and blkiocg_attach() removal. Resolved by removing @subsys from all subsys methods. * 676f7c8f84 "cgroup: relocate cftype and cgroup_subsys definitions in controllers" conflicts with ->pre_destroy() and ->attach() updates and removal of modular config. Resolved by dropping forward declarations of the methods and applying updates to the relocated blkio_subsys. * 4baf6e3325 "cgroup: convert all non-memcg controllers to the new cftype interface" builds upon the previous item. Resolved by adding ->base_cftypes to the relocated blkio_subsys. Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'net/ieee802154')
-rw-r--r--net/ieee802154/6lowpan.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index e4ecc1eef98c..368515885368 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -55,6 +55,7 @@
55#include <linux/module.h> 55#include <linux/module.h>
56#include <linux/moduleparam.h> 56#include <linux/moduleparam.h>
57#include <linux/netdevice.h> 57#include <linux/netdevice.h>
58#include <linux/etherdevice.h>
58#include <net/af_ieee802154.h> 59#include <net/af_ieee802154.h>
59#include <net/ieee802154.h> 60#include <net/ieee802154.h>
60#include <net/ieee802154_netdev.h> 61#include <net/ieee802154_netdev.h>
@@ -924,19 +925,6 @@ drop:
924 return -EINVAL; 925 return -EINVAL;
925} 926}
926 927
927static int lowpan_set_address(struct net_device *dev, void *p)
928{
929 struct sockaddr *sa = p;
930
931 if (netif_running(dev))
932 return -EBUSY;
933
934 /* TODO: validate addr */
935 memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
936
937 return 0;
938}
939
940static int lowpan_get_mac_header_length(struct sk_buff *skb) 928static int lowpan_get_mac_header_length(struct sk_buff *skb)
941{ 929{
942 /* 930 /*
@@ -1062,7 +1050,7 @@ static struct header_ops lowpan_header_ops = {
1062 1050
1063static const struct net_device_ops lowpan_netdev_ops = { 1051static const struct net_device_ops lowpan_netdev_ops = {
1064 .ndo_start_xmit = lowpan_xmit, 1052 .ndo_start_xmit = lowpan_xmit,
1065 .ndo_set_mac_address = lowpan_set_address, 1053 .ndo_set_mac_address = eth_mac_addr,
1066}; 1054};
1067 1055
1068static void lowpan_setup(struct net_device *dev) 1056static void lowpan_setup(struct net_device *dev)