Searched refs:HZ (Results 26 - 50 of 2618) sorted by relevance

1234567891011>>

/linux-master/include/uapi/linux/
H A Dif_eql.h26 #define EQL_DEFAULT_RESCHED_IVAL HZ
/linux-master/include/video/
H A Dudlfb.h78 #define GET_URB_TIMEOUT HZ
79 #define FREE_URB_TIMEOUT (HZ*2)
96 #define DL_DEFIO_WRITE_DELAY msecs_to_jiffies(HZ <= 300 ? 4 : 10) /* optimal value for 720p video */
97 #define DL_DEFIO_WRITE_DISABLE (HZ*60) /* "disable" with long delay */
/linux-master/sound/core/seq/
H A Dseq_lock.c14 int warn_count = 5 * HZ;
/linux-master/drivers/gpu/drm/i915/selftests/
H A Digt_flush_test.c27 if (intel_gt_wait_for_idle(gt, HZ * 3) == -ETIME) {
/linux-master/drivers/net/wireless/intel/iwlwifi/fw/
H A Dpnvm.h11 #define MVM_UCODE_PNVM_TIMEOUT (HZ / 4)
/linux-master/arch/mips/sni/
H A Dtime.c15 #define SNI_COUNTER0_DIV ((SNI_CLOCK_TICK_RATE / SNI_COUNTER2_DIV) / HZ)
76 #define SNI_8254_TCSAMP_COUNTER ((SNI_8254_TICK_RATE / HZ) + 255)
103 * for every 1/HZ seconds. We round off the nearest 1 MHz of master
104 * clock (= 1000000 / HZ / 2).
106 /*return (ct1 - ct0 + (500000/HZ/2)) / (500000/HZ) * (500000/HZ);*/
107 return (ct1 - ct0) / (500000/HZ) * (500000/HZ);
153 (int) (r4k_tick / (500000 / HZ)),
[all...]
/linux-master/arch/mips/sgi-ip22/
H A Dip22-time.c59 * for every 1/HZ seconds. We round off the nearest 1 MHz of master
60 * clock (= 1000000 / HZ / 2).
63 return (ct1 - ct0) / (500000/HZ) * (500000/HZ);
109 (int) (r4k_tick / (500000 / HZ)),
110 (int) (r4k_tick % (500000 / HZ)));
112 mips_hpt_frequency = r4k_tick * HZ;
/linux-master/include/scsi/
H A Dscsi.h19 SCSI_DEFAULT_EH_TIMEOUT = 10 * HZ,
134 #define FORMAT_UNIT_TIMEOUT (2 * 60 * 60 * HZ)
135 #define START_STOP_TIMEOUT (60 * HZ)
136 #define MOVE_MEDIUM_TIMEOUT (5 * 60 * HZ)
137 #define READ_ELEMENT_STATUS_TIMEOUT (5 * 60 * HZ)
138 #define READ_DEFECT_DATA_TIMEOUT (60 * HZ )
H A Dscsi_bsg_iscsi.h22 #define ISCSI_DEFAULT_BSG_TIMEOUT (10 * HZ)
/linux-master/kernel/time/
H A Dtime.c373 * two most common HZ cases.
379 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC % HZ)
380 return (MSEC_PER_SEC / HZ) * j;
381 #elif HZ > MSEC_PER_SEC && !(HZ % MSEC_PER_SEC)
382 return (j + (HZ / MSEC_PER_SEC) - 1)/(HZ / MSEC_PER_SEC);
406 BUILD_BUG_ON(HZ > USEC_PER_SEC);
408 #if !(USEC_PER_SEC % HZ)
[all...]
/linux-master/arch/mips/rb532/
H A Dtime.c34 return mips_hpt_frequency / HZ;
48 est_freq = 2 * r4k_offset * HZ;
/linux-master/drivers/net/fjes/
H A Dfjes.h16 #define FJES_TX_RETRY_INTERVAL (20 * HZ)
20 #define FJES_IRQ_WATCH_DELAY (HZ)
/linux-master/arch/mips/lib/
H A Ddelay.c56 __delay((us * 0x000010c7ull * HZ * lpj) >> 32);
64 __delay((ns * 0x00000005ull * HZ * lpj) >> 32);
/linux-master/drivers/net/ethernet/aquantia/atlantic/
H A Daq_cfg.h59 #define AQ_CFG_SERVICE_TIMER_INTERVAL (1 * HZ)
60 #define AQ_CFG_POLLING_TIMER_INTERVAL ((unsigned int)(2 * HZ))
/linux-master/arch/arm/include/asm/
H A Ddelay.h11 #include <asm/param.h> /* HZ */
20 * jiffies_per_sec = HZ
23 * Therefore the constant part is HZ / 1000000 which is a small
32 * UDELAY_MULT = 2^31 * HZ / 1000000
33 * = (2^31 / 1000000) * HZ
34 * = 2147.483648 * HZ
35 * = 2147 * HZ + 483648 * HZ / 1000000
38 * delay_us * UDELAY_MULT assuming HZ <= 1000 and delay_us <= 2000.
41 #define UDELAY_MULT UL(2147 * HZ
[all...]
/linux-master/drivers/target/
H A Dtarget_core_pscsi.h16 #define PS_TIMEOUT_DISK (15*HZ)
17 #define PS_TIMEOUT_OTHER (500*HZ)
/linux-master/arch/arm/mach-shmobile/
H A Dtimer.c40 preset_lpj = max_freq / HZ;
/linux-master/arch/mips/cobalt/
H A Dtime.c18 int i = HZ / 10;
/linux-master/arch/arc/include/asm/
H A Ddelay.h18 #include <asm/param.h> /* HZ */
39 * -1 sec has HZ jiffies
40 * loops per "N" usecs = ((loops_per_jiffy * HZ / 1000000) * N)
46 * -> (((loops_per_jiffy * HZ / 1000000) * N) * 2^32) / 2^32
47 * -> (loops_per_jiffy * HZ * N * 4295) / 2^32
59 * HZ * 4295 is pre-evaluated by gcc - hence only 2 mpy ops
61 loops = ((u64) usecs * 4295 * HZ * loops_per_jiffy) >> 32;
/linux-master/arch/sh/lib/
H A Ddelay.c40 "r" (cpu_data[raw_smp_processor_id()].loops_per_jiffy * (HZ/4))
/linux-master/drivers/hwmon/peci/
H A Dcommon.h10 #define PECI_HWMON_UPDATE_INTERVAL HZ
/linux-master/drivers/gpu/drm/i915/
H A Di915_file_private.h101 #define I915_CLIENT_FAST_HANG_JIFFIES (60 * HZ)
/linux-master/net/core/
H A Dhotdata.c15 .netdev_budget_usecs = 2 * USEC_PER_SEC / HZ,
/linux-master/net/sunrpc/
H A Dtimer.c25 #define RPC_RTO_MAX (60*HZ)
26 #define RPC_RTO_INIT (HZ/5)
27 #define RPC_RTO_MIN (HZ/10)
/linux-master/net/netfilter/
H A Dnf_conntrack_proto_generic.c13 static const unsigned int nf_ct_generic_timeout = 600*HZ;
31 ntohl(nla_get_be32(tb[CTA_TIMEOUT_GENERIC_TIMEOUT])) * HZ;
45 if (nla_put_be32(skb, CTA_TIMEOUT_GENERIC_TIMEOUT, htonl(*timeout / HZ)))

Completed in 218 milliseconds

1234567891011>>