diff options
author | sam <sam@FreeBSD.org> | 2003-09-05 22:37:31 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2003-09-05 22:37:31 +0000 |
commit | d1c253ce2300f067eb3c66f503932b0b7b05a583 (patch) | |
tree | 5042ddc41471da372acc6c85ef572857357b33c0 /sys/dev/fxp/if_fxpvar.h | |
parent | 617e17d9977073443c46b78caadfdd065ab29ab6 (diff) | |
download | FreeBSD-src-d1c253ce2300f067eb3c66f503932b0b7b05a583.zip FreeBSD-src-d1c253ce2300f067eb3c66f503932b0b7b05a583.tar.gz |
change timeout to be MPSAFE
Sponsored by: FreeBSD Foundation
Diffstat (limited to 'sys/dev/fxp/if_fxpvar.h')
-rw-r--r-- | sys/dev/fxp/if_fxpvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fxp/if_fxpvar.h b/sys/dev/fxp/if_fxpvar.h index dd52c07..522d3c8 100644 --- a/sys/dev/fxp/if_fxpvar.h +++ b/sys/dev/fxp/if_fxpvar.h @@ -174,7 +174,7 @@ struct fxp_softc { struct fxp_stats *fxp_stats; /* Pointer to interface stats */ u_int32_t stats_addr; /* DMA address of the stats structure */ int rx_idle_secs; /* # of seconds RX has been idle */ - struct callout_handle stat_ch; /* Handle for canceling our stat timeout */ + struct callout stat_ch; /* stat callout */ struct fxp_cb_mcs *mcsp; /* Pointer to mcast setup descriptor */ u_int32_t mcs_addr; /* DMA address of the multicast cmd */ struct ifmedia sc_media; /* media information */ |