Advertisement
Guest User

Untitled

a guest
Feb 7th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. --- src/module.c.orig 2013-02-07 09:15:09.870456986 +0800
  2. +++ src/module.c 2013-02-07 09:28:33.096462084 +0800
  3. @@ -85,7 +85,7 @@
  4. }
  5.  
  6. /**
  7. - * Attempts to unload a module if loaded, for ten seconds before
  8. + * Attempts to unload a module if loaded, for twenty seconds before
  9. * giving up
  10. *
  11. * @param driver The name of the driver (not a filename)
  12. @@ -100,7 +100,7 @@
  13. driver,
  14. NULL
  15. };
  16. - bb_run_fork_wait(mod_argv, 10);
  17. + bb_run_fork_wait(mod_argv, 20);
  18. if (module_is_loaded(driver) == 1) {
  19. bb_log(LOG_ERR, "Unloading %s driver timed out.\n", driver);
  20. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement