]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
rtlwifi: pass struct rtl_stats by reference as it is more efficient
authorColin Ian King <colin.king@canonical.com>
Mon, 22 Feb 2016 11:35:46 +0000 (11:35 +0000)
committerKalle Valo <kvalo@codeaurora.org>
Mon, 7 Mar 2016 12:25:00 +0000 (14:25 +0200)
passing rtl_stats by value is inefficient; the structure is over 300
bytes in size and generally just one field (packet_report_type)
is being accessed, so the pass by value is a relatively large overhead.
This change just affects just the rx_command_packet calls.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
12 files changed:
drivers/net/wireless/realtek/rtlwifi/pci.c
drivers/net/wireless/realtek/rtlwifi/rtl8188ee/trx.c
drivers/net/wireless/realtek/rtlwifi/rtl8188ee/trx.h
drivers/net/wireless/realtek/rtlwifi/rtl8192ee/trx.c
drivers/net/wireless/realtek/rtlwifi/rtl8192ee/trx.h
drivers/net/wireless/realtek/rtlwifi/rtl8723ae/trx.c
drivers/net/wireless/realtek/rtlwifi/rtl8723ae/trx.h
drivers/net/wireless/realtek/rtlwifi/rtl8723be/trx.c
drivers/net/wireless/realtek/rtlwifi/rtl8723be/trx.h
drivers/net/wireless/realtek/rtlwifi/rtl8821ae/trx.c
drivers/net/wireless/realtek/rtlwifi/rtl8821ae/trx.h
drivers/net/wireless/realtek/rtlwifi/wifi.h

index 140d2541562d18db830f27d2aae48d9812b95ce4..283d608b9973490e06367f0f0d74a1840f0a21db 100644 (file)
@@ -855,7 +855,7 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
                }
                /* handle command packet here */
                if (rtlpriv->cfg->ops->rx_command_packet &&
-                   rtlpriv->cfg->ops->rx_command_packet(hw, stats, skb)) {
+                   rtlpriv->cfg->ops->rx_command_packet(hw, &stats, skb)) {
                                dev_kfree_skb_any(skb);
                                goto new_trx_end;
                }
index 791efbe6b18c1daa9791d8885327043837a43f70..11701064b0e10f0c7f09f4f058991e03cf5f264d 100644 (file)
@@ -851,7 +851,7 @@ void rtl88ee_tx_polling(struct ieee80211_hw *hw, u8 hw_queue)
 }
 
 u32 rtl88ee_rx_command_packet(struct ieee80211_hw *hw,
-                             struct rtl_stats status,
+                             const struct rtl_stats *status,
                              struct sk_buff *skb)
 {
        return 0;
index eab5ae0eb46c4b65cecdc192c2e82da54e74944d..5a24d194ac76d765984d4bf3d3207ffdc4b9c611 100644 (file)
@@ -790,7 +790,7 @@ void rtl88ee_tx_fill_cmddesc(struct ieee80211_hw *hw, u8 *pdesc,
                             bool firstseg, bool lastseg,
                             struct sk_buff *skb);
 u32 rtl88ee_rx_command_packet(struct ieee80211_hw *hw,
-                             struct rtl_stats status,
+                             const struct rtl_stats *status,
                              struct sk_buff *skb);
 
 #endif
index d39ee67f611368f535a8bb0669e4510a4d22692a..24eff8ea4c2e2e28ef8d77136f412d3b4661b0fa 100644 (file)
@@ -1105,13 +1105,13 @@ void rtl92ee_tx_polling(struct ieee80211_hw *hw, u8 hw_queue)
 }
 
 u32 rtl92ee_rx_command_packet(struct ieee80211_hw *hw,
-                             struct rtl_stats status,
+                             const struct rtl_stats *status,
                              struct sk_buff *skb)
 {
        u32 result = 0;
        struct rtl_priv *rtlpriv = rtl_priv(hw);
 
-       switch (status.packet_report_type) {
+       switch (status->packet_report_type) {
        case NORMAL_RX:
                result = 0;
                break;
@@ -1121,7 +1121,7 @@ u32 rtl92ee_rx_command_packet(struct ieee80211_hw *hw,
                break;
        default:
                RT_TRACE(rtlpriv, COMP_RECV, DBG_TRACE,
-                        "Unknown packet type %d\n", status.packet_report_type);
+                        "Unknown packet type %d\n", status->packet_report_type);
                break;
        }
 
index 8f78ac9e6040d4f8694c7ce0b093683aa4af6585..a4c38345233e2df9d4e333ab47e7acac93c675e2 100644 (file)
@@ -857,6 +857,6 @@ void rtl92ee_tx_fill_cmddesc(struct ieee80211_hw *hw, u8 *pdesc,
                             bool firstseg, bool lastseg,
                             struct sk_buff *skb);
 u32 rtl92ee_rx_command_packet(struct ieee80211_hw *hw,
-                             struct rtl_stats status,
+                             const struct rtl_stats *status,
                              struct sk_buff *skb);
 #endif
index 2f7c144d7980903b5268b46e349d420b8ee5962e..7b4a9b63583b64b4b1f049676b4d4db7523c16df 100644 (file)
@@ -710,7 +710,7 @@ void rtl8723e_tx_polling(struct ieee80211_hw *hw, u8 hw_queue)
 }
 
 u32 rtl8723e_rx_command_packet(struct ieee80211_hw *hw,
-                              struct rtl_stats status,
+                              const struct rtl_stats *status,
                               struct sk_buff *skb)
 {
        return 0;
index 017da7e194d8385754ae1e3de5ab09c630078e53..32970bf18856006fc83f5683d866424083064425 100644 (file)
@@ -716,6 +716,6 @@ void rtl8723e_tx_fill_cmddesc(struct ieee80211_hw *hw, u8 *pdesc,
                              bool firstseg, bool lastseg,
                              struct sk_buff *skb);
 u32 rtl8723e_rx_command_packet(struct ieee80211_hw *hw,
-                              struct rtl_stats status,
+                              const struct rtl_stats *status,
                               struct sk_buff *skb);
 #endif
index 338ec9a9d09b9003d3d75eee793d8847459bbb35..60345975f9fd3aeabd71d5323ddbf1af9567f658 100644 (file)
@@ -758,13 +758,13 @@ void rtl8723be_tx_polling(struct ieee80211_hw *hw, u8 hw_queue)
 }
 
 u32 rtl8723be_rx_command_packet(struct ieee80211_hw *hw,
-                               struct rtl_stats status,
+                               const struct rtl_stats *status,
                                struct sk_buff *skb)
 {
        u32 result = 0;
        struct rtl_priv *rtlpriv = rtl_priv(hw);
 
-       switch (status.packet_report_type) {
+       switch (status->packet_report_type) {
        case NORMAL_RX:
                        result = 0;
                        break;
index 45949ac4854c6579e4eafc86c20140a519fd94db..40c36607b8b93f459c82e1e4c55dc55acba2219a 100644 (file)
@@ -620,6 +620,6 @@ void rtl8723be_tx_fill_cmddesc(struct ieee80211_hw *hw, u8 *pdesc,
                               bool firstseg, bool lastseg,
                               struct sk_buff *skb);
 u32 rtl8723be_rx_command_packet(struct ieee80211_hw *hw,
-                               struct rtl_stats status,
+                               const struct rtl_stats *status,
                                struct sk_buff *skb);
 #endif
index 174743aef9431c16673ff69f4d1ff79e47ecf752..41efaa148d138b1f10bcca27a4ad1b1cf5438ac7 100644 (file)
@@ -998,13 +998,13 @@ void rtl8821ae_tx_polling(struct ieee80211_hw *hw, u8 hw_queue)
 }
 
 u32 rtl8821ae_rx_command_packet(struct ieee80211_hw *hw,
-                               struct rtl_stats status,
+                               const struct rtl_stats *status,
                                struct sk_buff *skb)
 {
        u32 result = 0;
        struct rtl_priv *rtlpriv = rtl_priv(hw);
 
-       switch (status.packet_report_type) {
+       switch (status->packet_report_type) {
        case NORMAL_RX:
                result = 0;
                break;
index 31409042d8dd313cf3905c1a873ea2011963b3e9..ad565bebf1d5842a920acfac645aac75b4015d29 100644 (file)
@@ -615,6 +615,6 @@ void rtl8821ae_tx_fill_cmddesc(struct ieee80211_hw *hw, u8 *pdesc,
                               bool firstseg, bool lastseg,
                               struct sk_buff *skb);
 u32 rtl8821ae_rx_command_packet(struct ieee80211_hw *hw,
-                               struct rtl_stats status,
+                               const struct rtl_stats *status,
                                struct sk_buff *skb);
 #endif
index 9e3cdd732ecaf7dd5ac0cf536782f7dc6ca6796f..b07b364b93abe269a3cc44c2c20f663dd7b1637f 100644 (file)
@@ -2189,7 +2189,7 @@ struct rtl_hal_ops {
        bool (*get_btc_status) (void);
        bool (*is_fw_header)(struct rtlwifi_firmware_header *hdr);
        u32 (*rx_command_packet)(struct ieee80211_hw *hw,
-                                struct rtl_stats status, struct sk_buff *skb);
+                                const struct rtl_stats *status, struct sk_buff *skb);
        void (*add_wowlan_pattern)(struct ieee80211_hw *hw,
                                   struct rtl_wow_pattern *rtl_pattern,
                                   u8 index);