OSDN Git Service

ice: Rename build_ctob to ice_build_ctob
authorTony Nguyen <anthony.l.nguyen@intel.com>
Fri, 8 May 2020 00:41:13 +0000 (17:41 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 22 May 2020 05:10:04 +0000 (22:10 -0700)
To make the function easier to identify as being part of the ice driver,
prepend ice to the function name.

Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ice/ice_txrx.c
drivers/net/ethernet/intel/ice/ice_txrx_lib.c
drivers/net/ethernet/intel/ice/ice_txrx_lib.h
drivers/net/ethernet/intel/ice/ice_xsk.c

index 05d1077..0d90e32 100644 (file)
@@ -1680,7 +1680,8 @@ ice_tx_map(struct ice_ring *tx_ring, struct ice_tx_buf *first,
                 */
                while (unlikely(size > ICE_MAX_DATA_PER_TXD)) {
                        tx_desc->cmd_type_offset_bsz =
-                               build_ctob(td_cmd, td_offset, max_data, td_tag);
+                               ice_build_ctob(td_cmd, td_offset, max_data,
+                                              td_tag);
 
                        tx_desc++;
                        i++;
@@ -1700,8 +1701,8 @@ ice_tx_map(struct ice_ring *tx_ring, struct ice_tx_buf *first,
                if (likely(!data_len))
                        break;
 
-               tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
-                                                         size, td_tag);
+               tx_desc->cmd_type_offset_bsz = ice_build_ctob(td_cmd, td_offset,
+                                                             size, td_tag);
 
                tx_desc++;
                i++;
@@ -1732,8 +1733,8 @@ ice_tx_map(struct ice_ring *tx_ring, struct ice_tx_buf *first,
 
        /* write last descriptor with RS and EOP bits */
        td_cmd |= (u64)ICE_TXD_LAST_DESC_CMD;
-       tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset, size,
-                                                 td_tag);
+       tx_desc->cmd_type_offset_bsz =
+                       ice_build_ctob(td_cmd, td_offset, size, td_tag);
 
        /* Force memory writes to complete before letting h/w know there
         * are new descriptors to fetch.
index 9d6512f..1ba9717 100644 (file)
@@ -232,8 +232,8 @@ int ice_xmit_xdp_ring(void *data, u16 size, struct ice_ring *xdp_ring)
 
        tx_desc = ICE_TX_DESC(xdp_ring, i);
        tx_desc->buf_addr = cpu_to_le64(dma);
-       tx_desc->cmd_type_offset_bsz = build_ctob(ICE_TXD_LAST_DESC_CMD, 0,
-                                                 size, 0);
+       tx_desc->cmd_type_offset_bsz = ice_build_ctob(ICE_TXD_LAST_DESC_CMD, 0,
+                                                     size, 0);
 
        /* Make certain all of the status bits have been updated
         * before next_to_watch is written.
index af0fca5..58ff58f 100644 (file)
@@ -22,7 +22,7 @@ ice_test_staterr(union ice_32b_rx_flex_desc *rx_desc, const u16 stat_err_bits)
 }
 
 static inline __le64
-build_ctob(u64 td_cmd, u64 td_offset, unsigned int size, u64 td_tag)
+ice_build_ctob(u64 td_cmd, u64 td_offset, unsigned int size, u64 td_tag)
 {
        return cpu_to_le64(ICE_TX_DESC_DTYPE_DATA |
                           (td_cmd    << ICE_TXD_QW1_CMD_S) |
index 23e5515..20ac54e 100644 (file)
@@ -988,8 +988,8 @@ static bool ice_xmit_zc(struct ice_ring *xdp_ring, int budget)
 
                tx_desc = ICE_TX_DESC(xdp_ring, xdp_ring->next_to_use);
                tx_desc->buf_addr = cpu_to_le64(dma);
-               tx_desc->cmd_type_offset_bsz = build_ctob(ICE_TXD_LAST_DESC_CMD,
-                                                         0, desc.len, 0);
+               tx_desc->cmd_type_offset_bsz =
+                       ice_build_ctob(ICE_TXD_LAST_DESC_CMD, 0, desc.len, 0);
 
                xdp_ring->next_to_use++;
                if (xdp_ring->next_to_use == xdp_ring->count)