“761b3297934c741aaa4d13130a3e0a31131506d5”上不存在“paddle/fluid/framework/op_version_registry.cc”
  1. 08 10月, 2013 1 次提交
  2. 01 10月, 2013 1 次提交
    • F
      ath9k: fix powersave response handling for BA session packets · f69727fd
      Felix Fietkau 提交于
      When a packet is passed from mac80211 to the driver with the
      IEEE80211_TX_CTL_PS_RESPONSE flag set, it bypasses the normal driver
      internal queueing and goes directly to the UAPSD queue.
      
      When that happens, packets that are part of a BlockAck session still
      need to be tracked as such inside the driver, otherwise it will create
      discrepancies in the receiver BA reorder window, causing traffic stalls.
      This only happens in AP mode with powersave-enabled clients.
      
      This patch fixes the regression introduced in the commit
      "ath9k: use software queues for un-aggregated data packets"
      Signed-off-by: NFelix Fietkau <nbd@openwrt.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      f69727fd
  3. 27 9月, 2013 5 次提交
  4. 04 9月, 2013 1 次提交
    • J
      drivers/net: Convert uses of compare_ether_addr to ether_addr_equal · 7367d0b5
      Joe Perches 提交于
      Use the new bool function ether_addr_equal to add
      some clarity and reduce the likelihood for misuse
      of compare_ether_addr for sorting.
      
      Done via cocci script: (and a little typing)
      
      $ cat compare_ether_addr.cocci
      @@
      expression a,b;
      @@
      -	!compare_ether_addr(a, b)
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	compare_ether_addr(a, b)
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!ether_addr_equal(a, b) == 0
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!ether_addr_equal(a, b) != 0
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	ether_addr_equal(a, b) == 0
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	ether_addr_equal(a, b) != 0
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!!ether_addr_equal(a, b)
      +	ether_addr_equal(a, b)
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7367d0b5
  5. 29 8月, 2013 2 次提交
  6. 28 8月, 2013 1 次提交
  7. 27 8月, 2013 5 次提交
  8. 23 8月, 2013 6 次提交
  9. 21 8月, 2013 1 次提交
  10. 17 8月, 2013 9 次提交
  11. 16 8月, 2013 8 次提交