~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/wireless/nl80211.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/wireless/nl80211.h (Version linux-6.12-rc7) and /net/wireless/nl80211.h (Version linux-4.9.337)


  1 /* SPDX-License-Identifier: GPL-2.0 */         << 
  2 /*                                             << 
  3  * Portions of this file                       << 
  4  * Copyright (C) 2018, 2020-2024 Intel Corpora << 
  5  */                                            << 
  6 #ifndef __NET_WIRELESS_NL80211_H                    1 #ifndef __NET_WIRELESS_NL80211_H
  7 #define __NET_WIRELESS_NL80211_H                    2 #define __NET_WIRELESS_NL80211_H
  8                                                     3 
  9 #include "core.h"                                   4 #include "core.h"
 10                                                     5 
 11 int nl80211_init(void);                             6 int nl80211_init(void);
 12 void nl80211_exit(void);                            7 void nl80211_exit(void);
 13                                                << 
 14 void *nl80211hdr_put(struct sk_buff *skb, u32  << 
 15                      int flags, u8 cmd);       << 
 16 bool nl80211_put_sta_rate(struct sk_buff *msg, << 
 17                           int attr);           << 
 18                                                << 
 19 static inline u64 wdev_id(struct wireless_dev  << 
 20 {                                              << 
 21         return (u64)wdev->identifier |         << 
 22                ((u64)wiphy_to_rdev(wdev->wiphy << 
 23 }                                              << 
 24                                                << 
 25 int nl80211_parse_chandef(struct cfg80211_regi << 
 26                           struct genl_info *in << 
 27                           struct cfg80211_chan << 
 28 int nl80211_parse_random_mac(struct nlattr **a << 
 29                              u8 *mac_addr, u8  << 
 30                                                << 
 31 void nl80211_notify_wiphy(struct cfg80211_regi      8 void nl80211_notify_wiphy(struct cfg80211_registered_device *rdev,
 32                           enum nl80211_command      9                           enum nl80211_commands cmd);
 33 void nl80211_notify_iface(struct cfg80211_regi     10 void nl80211_notify_iface(struct cfg80211_registered_device *rdev,
 34                           struct wireless_dev      11                           struct wireless_dev *wdev,
 35                           enum nl80211_command     12                           enum nl80211_commands cmd);
 36 void nl80211_send_scan_start(struct cfg80211_r     13 void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
 37                              struct wireless_d     14                              struct wireless_dev *wdev);
 38 struct sk_buff *nl80211_build_scan_msg(struct      15 struct sk_buff *nl80211_build_scan_msg(struct cfg80211_registered_device *rdev,
 39                                        struct      16                                        struct wireless_dev *wdev, bool aborted);
 40 void nl80211_send_scan_msg(struct cfg80211_reg !!  17 void nl80211_send_scan_result(struct cfg80211_registered_device *rdev,
 41                            struct sk_buff *msg !!  18                               struct sk_buff *msg);
 42 void nl80211_send_sched_scan(struct cfg80211_s !!  19 void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
                                                   >>  20                              struct net_device *netdev, u32 cmd);
                                                   >>  21 void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
                                                   >>  22                                      struct net_device *netdev);
 43 void nl80211_common_reg_change_event(enum nl80     23 void nl80211_common_reg_change_event(enum nl80211_commands cmd_id,
 44                                      struct re     24                                      struct regulatory_request *request);
 45                                                    25 
 46 static inline void                                 26 static inline void
 47 nl80211_send_reg_change_event(struct regulator     27 nl80211_send_reg_change_event(struct regulatory_request *request)
 48 {                                                  28 {
 49         nl80211_common_reg_change_event(NL8021     29         nl80211_common_reg_change_event(NL80211_CMD_REG_CHANGE, request);
 50 }                                                  30 }
 51                                                    31 
 52 static inline void                                 32 static inline void
 53 nl80211_send_wiphy_reg_change_event(struct reg     33 nl80211_send_wiphy_reg_change_event(struct regulatory_request *request)
 54 {                                                  34 {
 55         nl80211_common_reg_change_event(NL8021     35         nl80211_common_reg_change_event(NL80211_CMD_WIPHY_REG_CHANGE, request);
 56 }                                                  36 }
 57                                                    37 
 58 void nl80211_send_rx_auth(struct cfg80211_regi     38 void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
 59                           struct net_device *n     39                           struct net_device *netdev,
 60                           const u8 *buf, size_     40                           const u8 *buf, size_t len, gfp_t gfp);
 61 void nl80211_send_rx_assoc(struct cfg80211_reg     41 void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
 62                            struct net_device *     42                            struct net_device *netdev,
 63                            const struct cfg802 !!  43                            const u8 *buf, size_t len, gfp_t gfp,
                                                   >>  44                            int uapsd_queues);
 64 void nl80211_send_deauth(struct cfg80211_regis     45 void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
 65                          struct net_device *ne     46                          struct net_device *netdev,
 66                          const u8 *buf, size_t !!  47                          const u8 *buf, size_t len, gfp_t gfp);
 67                          bool reconnect, gfp_t << 
 68 void nl80211_send_disassoc(struct cfg80211_reg     48 void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
 69                            struct net_device *     49                            struct net_device *netdev,
 70                            const u8 *buf, size !!  50                            const u8 *buf, size_t len, gfp_t gfp);
 71                            bool reconnect, gfp << 
 72 void nl80211_send_auth_timeout(struct cfg80211     51 void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
 73                                struct net_devi     52                                struct net_device *netdev,
 74                                const u8 *addr,     53                                const u8 *addr, gfp_t gfp);
 75 void nl80211_send_assoc_timeout(struct cfg8021     54 void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
 76                                 struct net_dev     55                                 struct net_device *netdev,
 77                                 const u8 *addr     56                                 const u8 *addr, gfp_t gfp);
 78 void nl80211_send_connect_result(struct cfg802     57 void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
 79                                  struct net_de !!  58                                  struct net_device *netdev, const u8 *bssid,
 80                                  struct cfg802 !!  59                                  const u8 *req_ie, size_t req_ie_len,
 81                                  gfp_t gfp);   !!  60                                  const u8 *resp_ie, size_t resp_ie_len,
                                                   >>  61                                  int status, gfp_t gfp);
 82 void nl80211_send_roamed(struct cfg80211_regis     62 void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
 83                          struct net_device *ne !!  63                          struct net_device *netdev, const u8 *bssid,
 84                          struct cfg80211_roam_ !!  64                          const u8 *req_ie, size_t req_ie_len,
 85 /* For STA/GC, indicate port authorized with A !!  65                          const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
 86  * For GO/AP, use peer GC/STA mac_addr.        << 
 87  */                                            << 
 88 void nl80211_send_port_authorized(struct cfg80 << 
 89                                   struct net_d << 
 90                                   const u8 *td << 
 91 void nl80211_send_disconnected(struct cfg80211     66 void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
 92                                struct net_devi     67                                struct net_device *netdev, u16 reason,
 93                                const u8 *ie, s     68                                const u8 *ie, size_t ie_len, bool from_ap);
 94                                                    69 
 95 void                                               70 void
 96 nl80211_michael_mic_failure(struct cfg80211_re     71 nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
 97                             struct net_device      72                             struct net_device *netdev, const u8 *addr,
 98                             enum nl80211_key_t     73                             enum nl80211_key_type key_type,
 99                             int key_id, const      74                             int key_id, const u8 *tsc, gfp_t gfp);
100                                                    75 
101 void                                               76 void
102 nl80211_send_beacon_hint_event(struct wiphy *w     77 nl80211_send_beacon_hint_event(struct wiphy *wiphy,
103                                struct ieee8021     78                                struct ieee80211_channel *channel_before,
104                                struct ieee8021     79                                struct ieee80211_channel *channel_after);
105                                                    80 
106 void nl80211_send_ibss_bssid(struct cfg80211_r     81 void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
107                              struct net_device     82                              struct net_device *netdev, const u8 *bssid,
108                              gfp_t gfp);           83                              gfp_t gfp);
109                                                    84 
110 int nl80211_send_mgmt(struct cfg80211_register     85 int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
111                       struct wireless_dev *wde     86                       struct wireless_dev *wdev, u32 nlpid,
112                       struct cfg80211_rx_info  !!  87                       int freq, int sig_dbm,
                                                   >>  88                       const u8 *buf, size_t len, u32 flags, gfp_t gfp);
113                                                    89 
114 void                                               90 void
115 nl80211_radar_notify(struct cfg80211_registere     91 nl80211_radar_notify(struct cfg80211_registered_device *rdev,
116                      const struct cfg80211_cha     92                      const struct cfg80211_chan_def *chandef,
117                      enum nl80211_radar_event      93                      enum nl80211_radar_event event,
118                      struct net_device *netdev     94                      struct net_device *netdev, gfp_t gfp);
119                                                    95 
120 void nl80211_send_ap_stopped(struct wireless_d !!  96 void nl80211_send_ap_stopped(struct wireless_dev *wdev);
121                                                << 
122 void cfg80211_free_coalesce(struct cfg80211_co << 
123                                                    97 
124 /* peer measurement */                         !!  98 void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev);
125 int nl80211_pmsr_start(struct sk_buff *skb, st << 
126                                                    99 
127 #endif /* __NET_WIRELESS_NL80211_H */             100 #endif /* __NET_WIRELESS_NL80211_H */
128                                                   101 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php