|
@@ -219,9 +219,8 @@ static void e1000e_dump(struct e1000_adapter *adapter)
|
|
|
if (netdev) {
|
|
|
dev_info(&adapter->pdev->dev, "Net device Info\n");
|
|
|
pr_info("Device Name state trans_start last_rx\n");
|
|
|
- pr_info("%-15s %016lX %016lX %016lX\n",
|
|
|
- netdev->name, netdev->state, netdev->trans_start,
|
|
|
- netdev->last_rx);
|
|
|
+ pr_info("%-15s %016lX %016lX %016lX\n", netdev->name,
|
|
|
+ netdev->state, netdev->trans_start, netdev->last_rx);
|
|
|
}
|
|
|
|
|
|
/* Print Registers */
|
|
@@ -755,8 +754,7 @@ static void e1000_alloc_rx_buffers_ps(struct e1000_ring *rx_ring,
|
|
|
cpu_to_le64(ps_page->dma);
|
|
|
}
|
|
|
|
|
|
- skb = __netdev_alloc_skb_ip_align(netdev,
|
|
|
- adapter->rx_ps_bsize0,
|
|
|
+ skb = __netdev_alloc_skb_ip_align(netdev, adapter->rx_ps_bsize0,
|
|
|
gfp);
|
|
|
|
|
|
if (!skb) {
|
|
@@ -937,10 +935,8 @@ static bool e1000_clean_rx_irq(struct e1000_ring *rx_ring, int *work_done,
|
|
|
|
|
|
cleaned = true;
|
|
|
cleaned_count++;
|
|
|
- dma_unmap_single(&pdev->dev,
|
|
|
- buffer_info->dma,
|
|
|
- adapter->rx_buffer_len,
|
|
|
- DMA_FROM_DEVICE);
|
|
|
+ dma_unmap_single(&pdev->dev, buffer_info->dma,
|
|
|
+ adapter->rx_buffer_len, DMA_FROM_DEVICE);
|
|
|
buffer_info->dma = 0;
|
|
|
|
|
|
length = le16_to_cpu(rx_desc->wb.upper.length);
|
|
@@ -1082,8 +1078,7 @@ static void e1000_print_hw_hang(struct work_struct *work)
|
|
|
if (test_bit(__E1000_DOWN, &adapter->state))
|
|
|
return;
|
|
|
|
|
|
- if (!adapter->tx_hang_recheck &&
|
|
|
- (adapter->flags2 & FLAG2_DMA_BURST)) {
|
|
|
+ if (!adapter->tx_hang_recheck && (adapter->flags2 & FLAG2_DMA_BURST)) {
|
|
|
/* May be block on write-back, flush and detect again
|
|
|
* flush pending descriptor writebacks to memory
|
|
|
*/
|
|
@@ -1125,19 +1120,10 @@ static void e1000_print_hw_hang(struct work_struct *work)
|
|
|
"PHY 1000BASE-T Status <%x>\n"
|
|
|
"PHY Extended Status <%x>\n"
|
|
|
"PCI Status <%x>\n",
|
|
|
- readl(tx_ring->head),
|
|
|
- readl(tx_ring->tail),
|
|
|
- tx_ring->next_to_use,
|
|
|
- tx_ring->next_to_clean,
|
|
|
- tx_ring->buffer_info[eop].time_stamp,
|
|
|
- eop,
|
|
|
- jiffies,
|
|
|
- eop_desc->upper.fields.status,
|
|
|
- er32(STATUS),
|
|
|
- phy_status,
|
|
|
- phy_1000t_status,
|
|
|
- phy_ext_status,
|
|
|
- pci_status);
|
|
|
+ readl(tx_ring->head), readl(tx_ring->tail), tx_ring->next_to_use,
|
|
|
+ tx_ring->next_to_clean, tx_ring->buffer_info[eop].time_stamp,
|
|
|
+ eop, jiffies, eop_desc->upper.fields.status, er32(STATUS),
|
|
|
+ phy_status, phy_1000t_status, phy_ext_status, pci_status);
|
|
|
|
|
|
/* Suggest workaround for known h/w issue */
|
|
|
if ((hw->mac.type == e1000_pchlan) && (er32(CTRL) & E1000_CTRL_TFCE))
|
|
@@ -2811,8 +2797,7 @@ static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
|
|
|
u16 vid = adapter->hw.mng_cookie.vlan_id;
|
|
|
u16 old_vid = adapter->mng_vlan_id;
|
|
|
|
|
|
- if (adapter->hw.mng_cookie.status &
|
|
|
- E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
|
|
|
+ if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
|
|
|
e1000_vlan_rx_add_vid(netdev, vid);
|
|
|
adapter->mng_vlan_id = vid;
|
|
|
}
|
|
@@ -3090,19 +3075,17 @@ static void e1000_setup_rctl(struct e1000_adapter *adapter)
|
|
|
/* Enable Packet split descriptors */
|
|
|
rctl |= E1000_RCTL_DTYP_PS;
|
|
|
|
|
|
- psrctl |= adapter->rx_ps_bsize0 >>
|
|
|
- E1000_PSRCTL_BSIZE0_SHIFT;
|
|
|
+ psrctl |= adapter->rx_ps_bsize0 >> E1000_PSRCTL_BSIZE0_SHIFT;
|
|
|
|
|
|
switch (adapter->rx_ps_pages) {
|
|
|
case 3:
|
|
|
- psrctl |= PAGE_SIZE <<
|
|
|
- E1000_PSRCTL_BSIZE3_SHIFT;
|
|
|
+ psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE3_SHIFT;
|
|
|
+ /* fall-through */
|
|
|
case 2:
|
|
|
- psrctl |= PAGE_SIZE <<
|
|
|
- E1000_PSRCTL_BSIZE2_SHIFT;
|
|
|
+ psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE2_SHIFT;
|
|
|
+ /* fall-through */
|
|
|
case 1:
|
|
|
- psrctl |= PAGE_SIZE >>
|
|
|
- E1000_PSRCTL_BSIZE1_SHIFT;
|
|
|
+ psrctl |= PAGE_SIZE >> E1000_PSRCTL_BSIZE1_SHIFT;
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -3753,8 +3736,7 @@ void e1000e_reset(struct e1000_adapter *adapter)
|
|
|
* but don't include ethernet FCS because hardware appends it
|
|
|
*/
|
|
|
min_tx_space = (adapter->max_frame_size +
|
|
|
- sizeof(struct e1000_tx_desc) -
|
|
|
- ETH_FCS_LEN) * 2;
|
|
|
+ sizeof(struct e1000_tx_desc) - ETH_FCS_LEN) * 2;
|
|
|
min_tx_space = ALIGN(min_tx_space, 1024);
|
|
|
min_tx_space >>= 10;
|
|
|
/* software strips receive CRC, so leave room for it */
|
|
@@ -4262,8 +4244,7 @@ static int e1000_open(struct net_device *netdev)
|
|
|
e1000e_power_up_phy(adapter);
|
|
|
|
|
|
adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
|
|
|
- if ((adapter->hw.mng_cookie.status &
|
|
|
- E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
|
|
|
+ if ((adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
|
|
|
e1000_update_mng_vlan(adapter);
|
|
|
|
|
|
/* DMA latency requirement to workaround jumbo issue */
|
|
@@ -4365,8 +4346,7 @@ static int e1000_close(struct net_device *netdev)
|
|
|
/* kill manageability vlan ID if supported, but not if a vlan with
|
|
|
* the same ID is registered on the host OS (let 8021q kill it)
|
|
|
*/
|
|
|
- if (adapter->hw.mng_cookie.status &
|
|
|
- E1000_MNG_DHCP_COOKIE_STATUS_VLAN)
|
|
|
+ if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN)
|
|
|
e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
|
|
|
|
|
|
/* If AMT is enabled, let the firmware know that the network
|