diff options
author | rwatson <rwatson@FreeBSD.org> | 2005-02-22 14:20:29 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2005-02-22 14:20:29 +0000 |
commit | d552b6fe480d4086e05aa88c4bcf23baf0c470a3 (patch) | |
tree | e491c0df9e3888bbb34db162823ab69087e3b44b /sys/netatalk/at_var.h | |
parent | cd21b2e10ce05cf965e2989f557834034cf53854 (diff) | |
download | FreeBSD-src-d552b6fe480d4086e05aa88c4bcf23baf0c470a3.zip FreeBSD-src-d552b6fe480d4086e05aa88c4bcf23baf0c470a3.tar.gz |
Convert the aa_ifaddr timeout to a callout, and run the aarprobe callout
MPSAFE. Acquire the aarptab_mtx to make sure that the callout and msleep
in the ioctl thread don't race.
MFC after: 1 week
Diffstat (limited to 'sys/netatalk/at_var.h')
-rw-r--r-- | sys/netatalk/at_var.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netatalk/at_var.h b/sys/netatalk/at_var.h index e0eb0ed..fa4e69d 100644 --- a/sys/netatalk/at_var.h +++ b/sys/netatalk/at_var.h @@ -39,7 +39,7 @@ struct at_ifaddr { int aa_flags; u_short aa_firstnet, aa_lastnet; int aa_probcnt; - struct callout_handle aa_ch; + struct callout aa_callout; struct at_ifaddr *aa_next; }; |