1. 04 6月, 2016 2 次提交
    • M
      loopback: make use of NETIF_F_GSO_SOFTWARE · f6c382fc
      Marcelo Ricardo Leitner 提交于
      NETIF_F_GSO_SOFTWARE was defined to list all GSO software types, so lets
      make use of it in loopback code. Note that veth/vxlan/others already
      uses it.
      
      Within this patch series, this patch causes lo to pick up SCTP GSO feature
      automatically (as it's added to NETIF_F_GSO_SOFTWARE) and thus avoiding
      segmentation if possible.
      Signed-off-by: NMarcelo Ricardo Leitner <marcelo.leitner@gmail.com>
      Tested-by: NXin Long <lucien.xin@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f6c382fc
    • B
      net: fjes: fjes_main: Remove create_workqueue · f2edc4e1
      Bhaktipriya Shridhar 提交于
      alloc_workqueue replaces deprecated create_workqueue().
      
      The workqueue adapter->txrx_wq has workitem
      &adapter->raise_intr_rxdata_task per adapter. Extended Socket Network
      Device is shared memory based, so someone's transmission denotes other's
      reception.  raise_intr_rxdata_task raises interruption of receivers from
      the sender in order to notify receivers.
      
      The workqueue adapter->control_wq has workitem
      &adapter->interrupt_watch_task per adapter. interrupt_watch_task is used
      to prevent delay of interrupts.
      
      Dedicated workqueues have been used in both cases since the workitems
      on the workqueues are involved in normal device operation and require
      forward progress under memory pressure.
      
      max_active has been set to 0 since there is no need for throttling
      the number of active work items.
      
      Since network devices  may be used for memory reclaim,
      WQ_MEM_RECLAIM has been set to guarantee forward progress.
      Signed-off-by: NBhaktipriya Shridhar <bhaktipriya96@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f2edc4e1
  2. 03 6月, 2016 4 次提交
  3. 02 6月, 2016 8 次提交
  4. 01 6月, 2016 18 次提交
  5. 31 5月, 2016 4 次提交
  6. 30 5月, 2016 4 次提交