Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 314821
b: refs/heads/master
c: 7fee477
h: refs/heads/master
i:
  314819: e4b8f4b
v: v3
  • Loading branch information
Johannes Berg committed Jun 20, 2012
1 parent e9dae89 commit dd26b01
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 29 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a9455408b09395ecf4008bd998516ce2e9551bbc
refs/heads/master: 7fee4778bf56b0c5c86010d5b6f654177cc5da96
59 changes: 31 additions & 28 deletions trunk/net/wireless/nl80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,44 +73,47 @@ static int get_rdev_dev_by_ifindex(struct net *netns, struct nlattr **attrs,
static struct cfg80211_registered_device *
__cfg80211_rdev_from_info(struct genl_info *info)
{
int ifindex;
struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
struct net_device *dev;
int err = -EINVAL;
struct cfg80211_registered_device *rdev = NULL, *tmp;
struct net_device *netdev;

assert_cfg80211_lock();

if (info->attrs[NL80211_ATTR_WIPHY]) {
bywiphyidx = cfg80211_rdev_by_wiphy_idx(
if (!info->attrs[NL80211_ATTR_WIPHY] &&
!info->attrs[NL80211_ATTR_IFINDEX])
return ERR_PTR(-EINVAL);

if (info->attrs[NL80211_ATTR_WIPHY])
rdev = cfg80211_rdev_by_wiphy_idx(
nla_get_u32(info->attrs[NL80211_ATTR_WIPHY]));
err = -ENODEV;
}

if (info->attrs[NL80211_ATTR_IFINDEX]) {
ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
dev = dev_get_by_index(genl_info_net(info), ifindex);
if (dev) {
if (dev->ieee80211_ptr)
byifidx =
wiphy_to_dev(dev->ieee80211_ptr->wiphy);
dev_put(dev);
}
err = -ENODEV;
}
int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
netdev = dev_get_by_index(genl_info_net(info), ifindex);
if (netdev) {
if (netdev->ieee80211_ptr)
tmp = wiphy_to_dev(
netdev->ieee80211_ptr->wiphy);
else
tmp = NULL;

if (bywiphyidx && byifidx) {
if (bywiphyidx != byifidx)
return ERR_PTR(-EINVAL);
else
return bywiphyidx; /* == byifidx */
dev_put(netdev);

/* not wireless device -- return error */
if (!tmp)
return ERR_PTR(-EINVAL);

/* mismatch -- return error */
if (rdev && tmp != rdev)
return ERR_PTR(-EINVAL);

rdev = tmp;
}
}
if (bywiphyidx)
return bywiphyidx;

if (byifidx)
return byifidx;
if (rdev)
return rdev;

return ERR_PTR(err);
return ERR_PTR(-ENODEV);
}

/*
Expand Down

0 comments on commit dd26b01

Please sign in to comment.