1. 05 8月, 2009 5 次提交
  2. 11 7月, 2009 3 次提交
  3. 13 6月, 2009 1 次提交
  4. 11 6月, 2009 2 次提交
  5. 23 5月, 2009 5 次提交
  6. 29 4月, 2009 1 次提交
  7. 23 4月, 2009 10 次提交
  8. 25 3月, 2009 1 次提交
  9. 15 2月, 2009 1 次提交
  10. 30 1月, 2009 1 次提交
  11. 22 1月, 2009 1 次提交
  12. 13 11月, 2008 1 次提交
    • W
      netdevice: safe convert to netdev_priv() #part-4 · 524ad0a7
      Wang Chen 提交于
      We have some reasons to kill netdev->priv:
      1. netdev->priv is equal to netdev_priv().
      2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
         netdev_priv() is more flexible than netdev->priv.
      But we cann't kill netdev->priv, because so many drivers reference to it
      directly.
      
      This patch is a safe convert for netdev->priv to netdev_priv(netdev).
      Since all of the netdev->priv is only for read.
      But it is too big to be sent in one mail.
      I split it to 4 parts and make every part smaller than 100,000 bytes,
      which is max size allowed by vger.
      Signed-off-by: NWang Chen <wangchen@cn.fujitsu.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      524ad0a7
  13. 11 11月, 2008 1 次提交
  14. 28 10月, 2008 1 次提交
  15. 25 9月, 2008 1 次提交
    • D
      wireless: Read scan flags correctly on x86-64 · 9930ccee
      David Kilroy 提交于
      The SIOCSIWSCAN handler is passed data in an iw_point structure. Some
      drivers erronously use an iw_param instead.
      
      On 32 bit architectures the difference isn't noticed as the flags
      parameter tends to be the only one used by scan handlers and is at the
      same offset.
      
      On 64 bit architectures the pointer in the iw_point structure means the
      flag parameter is at different offsets in these structures.
      
      Thanks to Jean Tourrilhes for tracking this down for orinoco, and Pavel
      Roskin for confirming the fix and identifying other suspect handlers.
      Signed-off-by: NDavid Kilroy <kilroyd@googlemail.com>
      Acked-by: NPavel Roskin <proski@gnu.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      9930ccee
  16. 28 6月, 2008 1 次提交
  17. 17 6月, 2008 1 次提交
    • D
      wext: Emit event stream entries correctly when compat. · ccc58057
      David S. Miller 提交于
      Three major portions to this change:
      
      1) Add IW_EV_COMPAT_LCP_LEN, IW_EV_COMPAT_POINT_OFF,
         and IW_EV_COMPAT_POINT_LEN helper defines.
      
      2) Delete iw_stream_check_add_*(), they are unused.
      
      3) Add iw_request_info argument to iwe_stream_add_*(), and use it to
         size the event and pointer lengths correctly depending upon whether
         IW_REQUEST_FLAG_COMPAT is set or not.
      
      4) The mechanical transformations to the drivers and wireless stack
         bits to get the iw_request_info passed down into the routines
         modified in #3.  Also, explicit references to IW_EV_LCP_LEN are
         replaced with iwe_stream_lcp_len(info).
      
      With a lot of help and bug fixes from Masakazu Mokuno.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ccc58057
  18. 15 6月, 2008 3 次提交