Commit 790428b6 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach Committed by John W. Linville

iwlagn: move iwl_free_pages to iwl-shared.h

This helper is used by the transport and the upper layer.
Kill __iwl_free_pages which was used in the transport only.
Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 845a9c0d
...@@ -1505,13 +1505,4 @@ static inline int is_channel_ibss(const struct iwl_channel_info *ch) ...@@ -1505,13 +1505,4 @@ static inline int is_channel_ibss(const struct iwl_channel_info *ch)
return ((ch->flags & EEPROM_CHANNEL_IBSS)) ? 1 : 0; return ((ch->flags & EEPROM_CHANNEL_IBSS)) ? 1 : 0;
} }
static inline void __iwl_free_pages(struct iwl_priv *priv, struct page *page)
{
__free_pages(page, hw_params(priv).rx_page_order);
}
static inline void iwl_free_pages(struct iwl_priv *priv, unsigned long page)
{
free_pages(page, hw_params(priv).rx_page_order);
}
#endif /* __iwl_dev_h__ */ #endif /* __iwl_dev_h__ */
...@@ -91,7 +91,7 @@ static int iwl_send_scan_abort(struct iwl_priv *priv) ...@@ -91,7 +91,7 @@ static int iwl_send_scan_abort(struct iwl_priv *priv)
ret = -EIO; ret = -EIO;
} }
iwl_free_pages(priv, cmd.reply_page); iwl_free_pages(priv->shrd, cmd.reply_page);
return ret; return ret;
} }
......
...@@ -229,6 +229,11 @@ static inline u32 iwl_get_debug_level(struct iwl_shared *shrd) ...@@ -229,6 +229,11 @@ static inline u32 iwl_get_debug_level(struct iwl_shared *shrd)
} }
#endif #endif
static inline void iwl_free_pages(struct iwl_shared *shrd, unsigned long page)
{
free_pages(page, shrd->hw_params.rx_page_order);
}
struct iwl_rx_mem_buffer { struct iwl_rx_mem_buffer {
dma_addr_t page_dma; dma_addr_t page_dma;
struct page *page; struct page *page;
......
...@@ -177,7 +177,7 @@ int iwl_send_add_sta(struct iwl_priv *priv, ...@@ -177,7 +177,7 @@ int iwl_send_add_sta(struct iwl_priv *priv,
pkt = (struct iwl_rx_packet *)cmd.reply_page; pkt = (struct iwl_rx_packet *)cmd.reply_page;
ret = iwl_process_add_sta_resp(priv, sta, pkt, true); ret = iwl_process_add_sta_resp(priv, sta, pkt, true);
} }
iwl_free_pages(priv, cmd.reply_page); iwl_free_pages(priv->shrd, cmd.reply_page);
return ret; return ret;
} }
...@@ -455,7 +455,7 @@ static int iwl_send_remove_station(struct iwl_priv *priv, ...@@ -455,7 +455,7 @@ static int iwl_send_remove_station(struct iwl_priv *priv,
break; break;
} }
} }
iwl_free_pages(priv, cmd.reply_page); iwl_free_pages(priv->shrd, cmd.reply_page);
return ret; return ret;
} }
......
...@@ -1023,7 +1023,7 @@ static int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd) ...@@ -1023,7 +1023,7 @@ static int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
} }
fail: fail:
if (cmd->reply_page) { if (cmd->reply_page) {
iwl_free_pages(priv, cmd->reply_page); iwl_free_pages(priv->shrd, cmd->reply_page);
cmd->reply_page = 0; cmd->reply_page = 0;
} }
......
...@@ -129,7 +129,8 @@ static void iwl_trans_rxq_free_rx_bufs(struct iwl_trans *trans) ...@@ -129,7 +129,8 @@ static void iwl_trans_rxq_free_rx_bufs(struct iwl_trans *trans)
dma_unmap_page(bus(trans)->dev, rxq->pool[i].page_dma, dma_unmap_page(bus(trans)->dev, rxq->pool[i].page_dma,
PAGE_SIZE << hw_params(trans).rx_page_order, PAGE_SIZE << hw_params(trans).rx_page_order,
DMA_FROM_DEVICE); DMA_FROM_DEVICE);
__iwl_free_pages(priv(trans), rxq->pool[i].page); __free_pages(rxq->pool[i].page,
hw_params(trans).rx_page_order);
rxq->pool[i].page = NULL; rxq->pool[i].page = NULL;
} }
list_add_tail(&rxq->pool[i].list, &rxq->rx_used); list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment