Lines Matching refs:HZ
343 ax25->dtimer.expires = jiffies + 2 * HZ; in ax25_destroy_socket()
375 if (ax25_ctl.arg > ULONG_MAX / HZ && ax25_ctl.cmd != AX25_KILL) in ax25_ctl_ioctl()
414 if (ax25_ctl.arg < 1 || ax25_ctl.arg > ULONG_MAX / HZ) in ax25_ctl_ioctl()
416 ax25->rtt = (ax25_ctl.arg * HZ) / 2; in ax25_ctl_ioctl()
417 ax25->t1 = ax25_ctl.arg * HZ; in ax25_ctl_ioctl()
421 if (ax25_ctl.arg < 1 || ax25_ctl.arg > ULONG_MAX / HZ) in ax25_ctl_ioctl()
423 ax25->t2 = ax25_ctl.arg * HZ; in ax25_ctl_ioctl()
434 if (ax25_ctl.arg > ULONG_MAX / HZ) in ax25_ctl_ioctl()
436 ax25->t3 = ax25_ctl.arg * HZ; in ax25_ctl_ioctl()
440 if (ax25_ctl.arg > ULONG_MAX / (60 * HZ)) in ax25_ctl_ioctl()
443 ax25->idle = ax25_ctl.arg * 60 * HZ; in ax25_ctl_ioctl()
590 if (opt < 1 || opt > UINT_MAX / HZ) { in ax25_setsockopt()
594 ax25->rtt = (opt * HZ) >> 1; in ax25_setsockopt()
595 ax25->t1 = opt * HZ; in ax25_setsockopt()
599 if (opt < 1 || opt > UINT_MAX / HZ) { in ax25_setsockopt()
603 ax25->t2 = opt * HZ; in ax25_setsockopt()
615 if (opt < 1 || opt > UINT_MAX / HZ) { in ax25_setsockopt()
619 ax25->t3 = opt * HZ; in ax25_setsockopt()
623 if (opt > UINT_MAX / (60 * HZ)) { in ax25_setsockopt()
627 ax25->idle = opt * 60 * HZ; in ax25_setsockopt()
734 val = ax25->t1 / HZ; in ax25_getsockopt()
738 val = ax25->t2 / HZ; in ax25_getsockopt()
746 val = ax25->t3 / HZ; in ax25_getsockopt()
750 val = ax25->idle / (60 * HZ); in ax25_getsockopt()
1834 ax25_info.t1 = ax25->t1 / HZ; in ax25_ioctl()
1835 ax25_info.t2 = ax25->t2 / HZ; in ax25_ioctl()
1836 ax25_info.t3 = ax25->t3 / HZ; in ax25_ioctl()
1837 ax25_info.idle = ax25->idle / (60 * HZ); in ax25_ioctl()
1839 ax25_info.t1timer = ax25_display_timer(&ax25->t1timer) / HZ; in ax25_ioctl()
1840 ax25_info.t2timer = ax25_display_timer(&ax25->t2timer) / HZ; in ax25_ioctl()
1841 ax25_info.t3timer = ax25_display_timer(&ax25->t3timer) / HZ; in ax25_ioctl()
1842 ax25_info.idletimer = ax25_display_timer(&ax25->idletimer) / (60 * HZ); in ax25_ioctl()
1962 ax25_display_timer(&ax25->t1timer) / HZ, ax25->t1 / HZ, in ax25_info_show()
1963 ax25_display_timer(&ax25->t2timer) / HZ, ax25->t2 / HZ, in ax25_info_show()
1964 ax25_display_timer(&ax25->t3timer) / HZ, ax25->t3 / HZ, in ax25_info_show()
1965 ax25_display_timer(&ax25->idletimer) / (60 * HZ), in ax25_info_show()
1966 ax25->idle / (60 * HZ), in ax25_info_show()
1968 ax25->rtt / HZ, in ax25_info_show()