... common/sys/zfs_context.h:538 ?
-a On 20 January 2015 at 14:29, Will Andrews <w...@freebsd.org> wrote: > Author: will > Date: Tue Jan 20 22:29:27 2015 > New Revision: 277449 > URL: https://svnweb.freebsd.org/changeset/base/277449 > > Log: > NSEC_TO_TICK(usec) -> NSEC_TO_TICK(nsec) > > Modified: > head/sys/cddl/compat/opensolaris/sys/time.h > > Modified: head/sys/cddl/compat/opensolaris/sys/time.h > ============================================================================== > --- head/sys/cddl/compat/opensolaris/sys/time.h Tue Jan 20 22:27:45 2015 > (r277448) > +++ head/sys/cddl/compat/opensolaris/sys/time.h Tue Jan 20 22:29:27 2015 > (r277449) > @@ -51,7 +51,7 @@ typedef longlong_t hrtime_t; > #endif > > #define SEC_TO_TICK(sec) ((sec) * hz) > -#define NSEC_TO_TICK(usec) ((usec) / (NANOSEC / hz)) > +#define NSEC_TO_TICK(nsec) ((nsec) / (NANOSEC / hz)) > > #ifdef _KERNEL > static __inline hrtime_t > _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"