Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6: (1815 commits) mac80211: fix reorder buffer release iwmc3200wifi: Enable wimax core through module parameter iwmc3200wifi: Add wifi-wimax coexistence mode as a module parameter iwmc3200wifi: Coex table command does not expect a response iwmc3200wifi: Update wiwi priority table iwlwifi: driver version track kernel version iwlwifi: indicate uCode type when fail dump error/event log iwl3945: remove duplicated event logging code b43: fix two warnings ipw2100: fix rebooting hang with driver loaded cfg80211: indent regulatory messages with spaces iwmc3200wifi: fix NULL pointer dereference in pmkid update mac80211: Fix TX status reporting for injected data frames ath9k: enable 2GHz band only if the device supports it airo: Fix integer overflow warning rt2x00: Fix padding bug on L2PAD devices. WE: Fix set events not propagated b43legacy: avoid PPC fault during resume b43: avoid PPC fault during resume tcp: fix a timewait refcnt race ... Fix up conflicts due to sysctl cleanups (dead sysctl_check code and CTL_UNNUMBERED removed) in kernel/sysctl_check.c net/ipv4/sysctl_net_ipv4.c net/ipv6/addrconf.c net/sctp/sysctl.c
This commit is contained in:
@@ -512,12 +512,13 @@ static struct proto rose_proto = {
|
||||
.obj_size = sizeof(struct rose_sock),
|
||||
};
|
||||
|
||||
static int rose_create(struct net *net, struct socket *sock, int protocol)
|
||||
static int rose_create(struct net *net, struct socket *sock, int protocol,
|
||||
int kern)
|
||||
{
|
||||
struct sock *sk;
|
||||
struct rose_sock *rose;
|
||||
|
||||
if (net != &init_net)
|
||||
if (!net_eq(net, &init_net))
|
||||
return -EAFNOSUPPORT;
|
||||
|
||||
if (sock->type != SOCK_SEQPACKET || protocol != 0)
|
||||
@@ -1509,7 +1510,7 @@ static const struct file_operations rose_info_fops = {
|
||||
};
|
||||
#endif /* CONFIG_PROC_FS */
|
||||
|
||||
static struct net_proto_family rose_family_ops = {
|
||||
static const struct net_proto_family rose_family_ops = {
|
||||
.family = PF_ROSE,
|
||||
.create = rose_create,
|
||||
.owner = THIS_MODULE,
|
||||
|
@@ -77,8 +77,9 @@ static int __must_check rose_add_node(struct rose_route_struct *rose_route,
|
||||
|
||||
rose_neigh = rose_neigh_list;
|
||||
while (rose_neigh != NULL) {
|
||||
if (ax25cmp(&rose_route->neighbour, &rose_neigh->callsign) == 0
|
||||
&& rose_neigh->dev == dev)
|
||||
if (ax25cmp(&rose_route->neighbour,
|
||||
&rose_neigh->callsign) == 0 &&
|
||||
rose_neigh->dev == dev)
|
||||
break;
|
||||
rose_neigh = rose_neigh->next;
|
||||
}
|
||||
@@ -311,8 +312,9 @@ static int rose_del_node(struct rose_route_struct *rose_route,
|
||||
|
||||
rose_neigh = rose_neigh_list;
|
||||
while (rose_neigh != NULL) {
|
||||
if (ax25cmp(&rose_route->neighbour, &rose_neigh->callsign) == 0
|
||||
&& rose_neigh->dev == dev)
|
||||
if (ax25cmp(&rose_route->neighbour,
|
||||
&rose_neigh->callsign) == 0 &&
|
||||
rose_neigh->dev == dev)
|
||||
break;
|
||||
rose_neigh = rose_neigh->next;
|
||||
}
|
||||
@@ -600,13 +602,13 @@ struct net_device *rose_dev_first(void)
|
||||
{
|
||||
struct net_device *dev, *first = NULL;
|
||||
|
||||
read_lock(&dev_base_lock);
|
||||
for_each_netdev(&init_net, dev) {
|
||||
rcu_read_lock();
|
||||
for_each_netdev_rcu(&init_net, dev) {
|
||||
if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE)
|
||||
if (first == NULL || strncmp(dev->name, first->name, 3) < 0)
|
||||
first = dev;
|
||||
}
|
||||
read_unlock(&dev_base_lock);
|
||||
rcu_read_unlock();
|
||||
|
||||
return first;
|
||||
}
|
||||
@@ -618,8 +620,8 @@ struct net_device *rose_dev_get(rose_address *addr)
|
||||
{
|
||||
struct net_device *dev;
|
||||
|
||||
read_lock(&dev_base_lock);
|
||||
for_each_netdev(&init_net, dev) {
|
||||
rcu_read_lock();
|
||||
for_each_netdev_rcu(&init_net, dev) {
|
||||
if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0) {
|
||||
dev_hold(dev);
|
||||
goto out;
|
||||
@@ -627,7 +629,7 @@ struct net_device *rose_dev_get(rose_address *addr)
|
||||
}
|
||||
dev = NULL;
|
||||
out:
|
||||
read_unlock(&dev_base_lock);
|
||||
rcu_read_unlock();
|
||||
return dev;
|
||||
}
|
||||
|
||||
@@ -635,14 +637,14 @@ static int rose_dev_exists(rose_address *addr)
|
||||
{
|
||||
struct net_device *dev;
|
||||
|
||||
read_lock(&dev_base_lock);
|
||||
for_each_netdev(&init_net, dev) {
|
||||
rcu_read_lock();
|
||||
for_each_netdev_rcu(&init_net, dev) {
|
||||
if ((dev->flags & IFF_UP) && dev->type == ARPHRD_ROSE && rosecmp(addr, (rose_address *)dev->dev_addr) == 0)
|
||||
goto out;
|
||||
}
|
||||
dev = NULL;
|
||||
out:
|
||||
read_unlock(&dev_base_lock);
|
||||
rcu_read_unlock();
|
||||
return dev != NULL;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user