1. 23 9月, 2006 1 次提交
  2. 21 9月, 2006 3 次提交
  3. 14 9月, 2006 1 次提交
  4. 12 9月, 2006 2 次提交
  5. 11 9月, 2006 1 次提交
    • D
      [PATCH] Fix dm9000 release_resource · 51985487
      Dirk Opfer 提交于
      dm9000_release_board calls release_resource with the platform resource
      instead of the requested resource:
      
      db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
      db->addr_req = request_mem_region(db->addr_res->start, i, pdev->name);
      
      dm9000_release_board:
      
      if (db->addr_res != NULL) {
      release_resource(db->addr_res);
      kfree(db->addr_req);
      
      With this behavior the kernel will crash on the second removal. The
      attached patch fix this problem.
      Signed-off-by: NDirk Opfer <Dirk@Opfer-Online.de>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      51985487
  6. 06 9月, 2006 1 次提交
  7. 30 8月, 2006 3 次提交
  8. 24 8月, 2006 6 次提交
  9. 20 8月, 2006 22 次提交