[haiku-commits] haiku: hrev46135 - src/libs/compat/freebsd_network

  • From: ingo_weinhold@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 29 Sep 2013 22:11:29 +0200 (CEST)

hrev46135 adds 1 changeset to branch 'master'
old head: c436d67da4a4800b5f9bc1263ac98daeccae6dce
new head: d61f592d9b3bdff75a45ab00e2a73ef6f717e953
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=d61f592+%5Ec436d67

----------------------------------------------------------------------------

d61f592: freebsd_network(): call uninit_hard_clock() on uninit
  
  Not uninstalling the timer hook could lead to a crash after unloading/
  reloading the driver.

                                    [ Ingo Weinhold <ingo_weinhold@xxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev46135
Commit:      d61f592d9b3bdff75a45ab00e2a73ef6f717e953
URL:         http://cgit.haiku-os.org/haiku/commit/?id=d61f592
Author:      Ingo Weinhold <ingo_weinhold@xxxxxx>
Date:        Sun Sep 29 20:10:54 2013 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+)
src/libs/compat/freebsd_network/driver.c | 1 +

----------------------------------------------------------------------------

diff --git a/src/libs/compat/freebsd_network/driver.c 
b/src/libs/compat/freebsd_network/driver.c
index 886e500..80b02f5 100644
--- a/src/libs/compat/freebsd_network/driver.c
+++ b/src/libs/compat/freebsd_network/driver.c
@@ -266,6 +266,7 @@ _fbsd_uninit_drivers(driver_t *drivers[])
                uninit_taskqueues();
        uninit_callout();
        uninit_mutexes();
+       uninit_hard_clock();
 
        put_module(B_PCI_MODULE_NAME);
        if (gPCIx86 != NULL)


Other related posts:

  • » [haiku-commits] haiku: hrev46135 - src/libs/compat/freebsd_network - ingo_weinhold