1. 23 8月, 2008 3 次提交
  2. 08 7月, 2008 1 次提交
  3. 01 7月, 2008 1 次提交
  4. 21 5月, 2008 1 次提交
  5. 01 2月, 2008 1 次提交
  6. 29 1月, 2008 1 次提交
  7. 11 10月, 2007 3 次提交
  8. 09 7月, 2007 1 次提交
    • J
      [PATCH] hostap: Remove driver version number · bd5824f1
      Jouni Malinen 提交于
      The driver version number has not been updated since the driver was
      included in the main kernel tree and there is no plan on updating this
      in the future either. At this point, the only correct way to refer to
      the version is to use the kernel version. The 0.4.4 version is
      confusing since there are external version with higher version number
      even though they are not actually any newer than the in-tree version.
      
      Let's get rid of the version number in the kernel tree in order to
      avoid this kind of confusion.
      Signed-off-by: NJouni Malinen <j@w1.fi>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      bd5824f1
  9. 28 4月, 2007 3 次提交
  10. 06 12月, 2006 1 次提交
  11. 05 12月, 2006 2 次提交
  12. 26 10月, 2006 1 次提交
  13. 12 9月, 2006 1 次提交
  14. 01 7月, 2006 2 次提交
  15. 23 5月, 2006 1 次提交
  16. 31 3月, 2006 8 次提交
  17. 24 3月, 2006 1 次提交
  18. 01 3月, 2006 1 次提交
  19. 06 1月, 2006 4 次提交
  20. 04 10月, 2005 2 次提交
    • J
      [PATCH] hostap: Do not free local->hw_priv before unregistering netdev · c355184c
      Jouni Malinen 提交于
      local->hw_priv was being freed and set to NULL just before calling
      prism2_free_local_data(). However, this may expose a race condition in
      which something ends up trying to use hw_priv during shutdown. I
      haven't noticed this happening, but better be safe than sorry, so
      let's postpone hw_priv freeing to happen only after
      prism2_free_local_data() has returned.
      Signed-off-by: NJouni Malinen <jkmaline@cc.hut.fi>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      c355184c
    • J
      [PATCH] hostap: Remove hw specific dev_open/close handlers · bab76198
      Jouni Malinen 提交于
      Host AP driver used hardware model specific dev_open/close handlers
      that were called on dev_open/close if the hardware driver had
      registered the handler. These were only used for hostap_cs and only
      for tracking whether any of the netdevs were UP. This information is
      already available from local->num_dev_open, so there is not need for
      the special open/close handler.
      
      Let's get rid of these handlers. In addition to cleaning up the code,
      this fixes a module refcounting issue for hostap_cs where ejecting the
      card while any of the netdevs were open did not decrement refcount
      properly.
      Signed-off-by: NJouni Malinen <jkmaline@cc.hut.fi>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      bab76198
  21. 01 9月, 2005 1 次提交