Blame view

net/ieee802154/core.h 1.3 KB
a5dd1d72d   Alexander Aring   cfg802154: introd...
1
2
3
4
5
6
7
  #ifndef __IEEE802154_CORE_H
  #define __IEEE802154_CORE_H
  
  #include <net/cfg802154.h>
  
  struct cfg802154_registered_device {
  	const struct cfg802154_ops *ops;
f3ada640c   Alexander Aring   ieee802154: add c...
8
  	struct list_head list;
a5dd1d72d   Alexander Aring   cfg802154: introd...
9

53f9ee61b   Alexander Aring   ieee802154: rewor...
10
11
  	/* wpan_phy index, internal only */
  	int wpan_phy_idx;
fcf39e6e8   Alexander Aring   ieee802154: add w...
12
13
14
15
16
17
18
19
20
21
  	/* also protected by devlist_mtx */
  	int opencount;
  	wait_queue_head_t dev_wait;
  
  	/* protected by RTNL only */
  	int num_running_ifaces;
  
  	/* associated wpan interfaces, protected by rtnl or RCU */
  	struct list_head wpan_dev_list;
  	int devlist_generation, wpan_dev_id;
a5dd1d72d   Alexander Aring   cfg802154: introd...
22
23
24
25
26
  	/* must be last because of the way we do wpan_phy_priv(),
  	 * and it should at least be aligned to NETDEV_ALIGN
  	 */
  	struct wpan_phy wpan_phy __aligned(NETDEV_ALIGN);
  };
ea4dcd32a   Alexander Aring   ieee802154: add h...
27
28
29
30
31
32
33
  static inline struct cfg802154_registered_device *
  wpan_phy_to_rdev(struct wpan_phy *wpan_phy)
  {
  	BUG_ON(!wpan_phy);
  	return container_of(wpan_phy, struct cfg802154_registered_device,
  			    wpan_phy);
  }
79fe1a2aa   Alexander Aring   ieee802154: add n...
34
  extern struct list_head cfg802154_rdev_list;
ca20ce201   Alexander Aring   ieee802154: add w...
35
  extern int cfg802154_rdev_list_generation;
79fe1a2aa   Alexander Aring   ieee802154: add n...
36

66e5c2672   Alexander Aring   ieee802154: add n...
37
38
  int cfg802154_switch_netns(struct cfg802154_registered_device *rdev,
  			   struct net *net);
a5dd1d72d   Alexander Aring   cfg802154: introd...
39
40
  /* free object */
  void cfg802154_dev_free(struct cfg802154_registered_device *rdev);
79fe1a2aa   Alexander Aring   ieee802154: add n...
41
42
  struct cfg802154_registered_device *
  cfg802154_rdev_by_wpan_phy_idx(int wpan_phy_idx);
a26c5fd76   Alexander Aring   nl802154: add sup...
43
  struct wpan_phy *wpan_phy_idx_to_wpan_phy(int wpan_phy_idx);
a5dd1d72d   Alexander Aring   cfg802154: introd...
44
45
  
  #endif /* __IEEE802154_CORE_H */