| /linux/Documentation/networking/ |
| H A D | nf_conntrack-sysctl.rst | 62 nf_conntrack_frag6_timeout - INTEGER (seconds) 67 nf_conntrack_generic_timeout - INTEGER (seconds) 73 nf_conntrack_icmp_timeout - INTEGER (seconds) 78 nf_conntrack_icmpv6_timeout - INTEGER (seconds) 129 nf_conntrack_tcp_timeout_close - INTEGER (seconds) 132 nf_conntrack_tcp_timeout_close_wait - INTEGER (seconds) 135 nf_conntrack_tcp_timeout_established - INTEGER (seconds) 138 nf_conntrack_tcp_timeout_fin_wait - INTEGER (seconds) 141 nf_conntrack_tcp_timeout_last_ack - INTEGER (seconds) 144 nf_conntrack_tcp_timeout_max_retrans - INTEGER (seconds) [all …]
|
| /linux/Documentation/watchdog/ |
| H A D | watchdog-parameters.rst | 23 Maximum time, in seconds, for which the watchdog framework will take 53 Watchdog timeout in seconds. 1<= timeout <=63, default=60. 62 Watchdog timeout in seconds. (0 < timeout < 18000, default=60) 71 Watchdog timeout in seconds. (1<=timeout<=3600, default=30) 83 Watchdog margin in seconds (default=60) 92 Watchdog timeout in seconds. (default=120) 101 Watchdog time in seconds. (default=5) 110 Watchdog heartbeats in seconds. (default = 15) 119 Watchdog time in seconds. (default=30) 128 Watchdog margin in seconds (default 60s) [all …]
|
| H A D | hpwdt.rst | 30 Default value is 30 seconds. 33 This is the number of seconds before timeout when an 36 Default value is 9 seconds. 42 kdumptimeout Minimum timeout in seconds to apply upon receipt of an NMI 54 can only be set to 9 seconds. Attempts to set pretimeout to other
|
| /linux/tools/testing/selftests/rcutorture/bin/ |
| H A D | kvm-transform.sh | 45 seconds="$4" 46 if test -n "$seconds" && echo $seconds | grep -q '[^0-9]' 48 echo "Invalid duration, should be numeric in seconds: '$seconds'" 63 if (seconds == "") 66 print "# seconds=" seconds; 104 if ("" seconds != "" && $i ~ /\.shutdown_secs=[0-9]*$/) 105 sub(/[0-9]*$/, seconds, arg); 139 -v seconds="$seconds" -f $T/bootarg.awk
|
| H A D | kvm-test-1-run-qemu.sh | 101 elif test $kruntime -ge $seconds || test -f "$resdir/../STOP.1" 108 if test $kruntime -lt $seconds 110 echo Completed in $kruntime vs. $seconds >> $resdir/Warnings 2>&1 161 …if test "$newline" != "$oldline" && test "$last_ts" -lt $((seconds + $TORTURE_SHUTDOWN_GRACE)) && … 164 if test $kruntime -ge $((seconds + $TORTURE_SHUTDOWN_GRACE)) 171 echo "!!! PID $qemu_pid hung at $kruntime vs. $seconds seconds `date`" >> $resdir/Warnings 2>&1
|
| /linux/drivers/rtc/ |
| H A D | rtc-msc313.c | 52 unsigned long seconds; in msc313_rtc_read_alarm() local 54 seconds = readw(priv->rtc_base + REG_RTC_MATCH_VAL_L) in msc313_rtc_read_alarm() 57 rtc_time64_to_tm(seconds, &alarm->time); in msc313_rtc_read_alarm() 82 unsigned long seconds; in msc313_rtc_set_alarm() local 84 seconds = rtc_tm_to_time64(&alarm->time); in msc313_rtc_set_alarm() 85 writew((seconds & 0xFFFF), priv->rtc_base + REG_RTC_MATCH_VAL_L); in msc313_rtc_set_alarm() 86 writew((seconds >> 16) & 0xFFFF, priv->rtc_base + REG_RTC_MATCH_VAL_H); in msc313_rtc_set_alarm() 110 u32 seconds; in msc313_rtc_read_time() local 123 seconds = readw(priv->rtc_base + REG_RTC_CNT_VAL_L) in msc313_rtc_read_time() 126 rtc_time64_to_tm(seconds, tm); in msc313_rtc_read_time() [all …]
|
| H A D | rtc-tps6586x.c | 60 time64_t seconds; in tps6586x_rtc_read_time() local 76 seconds = ticks >> 10; in tps6586x_rtc_read_time() 77 rtc_time64_to_tm(seconds, tm); in tps6586x_rtc_read_time() 86 time64_t seconds; in tps6586x_rtc_set_time() local 90 seconds = rtc_tm_to_time64(tm); in tps6586x_rtc_set_time() 92 ticks = (unsigned long long)seconds << 10; in tps6586x_rtc_set_time() 139 time64_t seconds; in tps6586x_rtc_set_alarm() local 148 seconds = rtc_tm_to_time64(&alrm->time); in tps6586x_rtc_set_alarm() 169 if ((seconds - rtc_current_time) > ALM1_VALID_RANGE_IN_SEC) in tps6586x_rtc_set_alarm() 170 seconds = rtc_current_time - 1; in tps6586x_rtc_set_alarm() [all …]
|
| H A D | rtc-mc13xxx.c | 62 unsigned int seconds, days1, days2; in mc13xxx_rtc_read_time() local 74 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTOD, &seconds); in mc13xxx_rtc_read_time() 83 rtc_time64_to_tm((time64_t)days1 * SEC_PER_DAY + seconds, tm); in mc13xxx_rtc_read_time() 91 unsigned int seconds, days; in mc13xxx_rtc_set_time() local 95 days = div_s64_rem(rtc_tm_to_time64(tm), SEC_PER_DAY, &seconds); in mc13xxx_rtc_set_time() 126 ret = mc13xxx_reg_write(priv->mc13xxx, MC13XXX_RTCTOD, seconds); in mc13xxx_rtc_set_time() 153 unsigned int seconds, days; in mc13xxx_rtc_read_alarm() local 160 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTODA, &seconds); in mc13xxx_rtc_read_alarm() 163 if (seconds >= SEC_PER_DAY) { in mc13xxx_rtc_read_alarm() 184 s1970 = (time64_t)days * SEC_PER_DAY + seconds; in mc13xxx_rtc_read_alarm() [all …]
|
| H A D | rtc-mc146818-lib.c | 21 bool mc146818_avoid_UIP(void (*callback)(unsigned char seconds, void *param), in mc146818_avoid_UIP() argument 27 unsigned char seconds; in mc146818_avoid_UIP() local 41 seconds = CMOS_READ(RTC_SECONDS); in mc146818_avoid_UIP() 50 if (seconds != CMOS_READ(RTC_SECONDS)) { in mc146818_avoid_UIP() 56 callback(seconds, param); in mc146818_avoid_UIP() 74 if (seconds != CMOS_READ(RTC_SECONDS)) { in mc146818_avoid_UIP() 111 static void mc146818_get_time_callback(unsigned char seconds, void *param_in) in mc146818_get_time_callback() argument 121 p->time->tm_sec = seconds; in mc146818_get_time_callback()
|
| H A D | rtc-ssd202d.c | 153 u32 seconds; in ssd202d_rtc_read_time() local 168 seconds = base + counter; in ssd202d_rtc_read_time() 170 rtc_time64_to_tm(seconds, tm); in ssd202d_rtc_read_time() 191 unsigned long seconds = rtc_tm_to_time64(tm); in ssd202d_rtc_set_time() local 193 ssd202d_rtc_write_reg(priv, REG_CTRL, BASE_WR_BIT, seconds); in ssd202d_rtc_set_time()
|
| H A D | rtc-ti-k3.c | 280 time64_t seconds; in ti_k3_rtc_set_time() local 282 seconds = rtc_tm_to_time64(tm); in ti_k3_rtc_set_time() 289 regmap_write(priv->regmap, REG_K3RTC_S_CNT_LSW, seconds); in ti_k3_rtc_set_time() 290 regmap_write(priv->regmap, REG_K3RTC_S_CNT_MSW, seconds >> 32); in ti_k3_rtc_set_time() 333 time64_t seconds; in ti_k3_rtc_set_alarm() local 336 seconds = rtc_tm_to_time64(&alarm->time); in ti_k3_rtc_set_alarm() 338 k3rtc_field_write(priv, K3RTC_ALM_S_CNT_LSW, seconds); in ti_k3_rtc_set_alarm() 339 k3rtc_field_write(priv, K3RTC_ALM_S_CNT_MSW, (seconds >> 32)); in ti_k3_rtc_set_alarm()
|
| H A D | rtc-ds1685.c | 265 u8 seconds, minutes, hours, wday, mday, month, years; in ds1685_rtc_read_time() local 269 seconds = rtc->read(rtc, RTC_SECS); in ds1685_rtc_read_time() 284 tm->tm_sec = ds1685_rtc_bcd2bin(rtc, seconds, RTC_SECS_BCD_MASK, in ds1685_rtc_read_time() 312 u8 ctrlb, seconds, minutes, hours, wday, mday, month, years, century; in ds1685_rtc_set_time() local 315 seconds = ds1685_rtc_bin2bcd(rtc, tm->tm_sec, RTC_SECS_BIN_MASK, in ds1685_rtc_set_time() 359 rtc->write(rtc, RTC_SECS, seconds); in ds1685_rtc_set_time() 388 u8 seconds, minutes, hours, mday, ctrlb, ctrlc; in ds1685_rtc_read_alarm() local 393 seconds = rtc->read(rtc, RTC_SECS_ALARM); in ds1685_rtc_read_alarm() 413 if (likely(seconds < 0xc0)) in ds1685_rtc_read_alarm() 414 alrm->time.tm_sec = ds1685_rtc_bcd2bin(rtc, seconds, in ds1685_rtc_read_alarm() [all …]
|
| /linux/tools/dma/ |
| H A D | dma_map_benchmark.c | 32 /* default single thread, run 20 seconds on NUMA_NO_NODE */ in main() 33 int threads = 1, seconds = 20, node = -1; in main() 49 seconds = atoi(optarg); in main() 86 if (seconds <= 0 || seconds > DMA_MAP_MAX_SECONDS) { in main() 87 fprintf(stderr, "invalid number of seconds, must be in 1-%d\n", in main() 122 map.seconds = seconds; in main() 136 printf("dma mapping benchmark(%s): threads:%d seconds:%d node:%d dir:%s granule:%d\n", 137 mode[map_mode], threads, seconds, nod 28 int threads = 1, seconds = 20, node = -1; main() local [all...] |
| /linux/tools/testing/selftests/firmware/ |
| H A D | settings | 2 # 2 seconds). There are 3 test configs, each done with and without firmware 4 # normal execution should be 2 * 3 * 2 * 2 * 5 = 120 seconds for those alone. 5 # Additionally, fw_fallback may take 5 seconds for internal timeouts in each 6 # of the 3 configs, so at least another 15 seconds are needed. Add another 7 # 10 seconds for each testing config: 120 + 15 + 30
|
| /linux/Documentation/devicetree/bindings/input/ |
| H A D | ti,palmas-pwrbutton.txt | 16 - ti,palmas-long-press-seconds: Duration in seconds which the power 20 - ti,palmas-pwron-debounce-milli-seconds: Duration in milliseconds 32 ti,palmas-long-press-seconds = <12>; 33 ti,palmas-pwron-debounce-milli-seconds = <15>;
|
| /linux/drivers/ptp/ |
| H A D | ptp_dfl_tod.c | 102 u64 seconds, now; in coarse_adjust_tod_clock() local 112 seconds = CAL_SECONDS(seconds_msb, seconds_lsb); in coarse_adjust_tod_clock() 113 now = seconds * NSEC_PER_SEC + nanosec + delta; in coarse_adjust_tod_clock() 115 seconds = div_u64_rem(now, NSEC_PER_SEC, &nanosec); in coarse_adjust_tod_clock() 116 seconds_msb = FIELD_GET(SECONDS_MSB, seconds); in coarse_adjust_tod_clock() 117 seconds_lsb = FIELD_GET(SECONDS_LSB, seconds); in coarse_adjust_tod_clock() 233 u64 seconds; in dfl_tod_get_timex() local 243 seconds = CAL_SECONDS(seconds_msb, seconds_lsb); in dfl_tod_get_timex() 246 ts->tv_sec = seconds; in dfl_tod_get_timex()
|
| /linux/tools/testing/selftests/sched_ext/ |
| H A D | peek_dsq.c | 81 int seconds = 3; in run() local 111 sleep(seconds); in run() 116 seconds++; in run() 117 if (seconds >= 30) { in run() 144 printf("Enqueue/dispatch count over %d seconds: %d / %d\n", seconds, in run()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-bus-iio-sps30 | 7 to its maximum speed and keeps spinning for about 10 seconds in 17 the current one is returned. Units are seconds. 26 The range of available values in seconds represented as the
|
| H A D | sysfs-class-rtc | 51 Valid time range for the RTC, as seconds from epoch, formatted 59 (RO) RTC-provided time as the number of seconds since the epoch 88 wake if a daily wakeup is required. Format is seconds since the 89 epoch by default, or if there's a leading +, seconds in the 90 future, or if there is a leading +=, seconds ahead of the
|
| /linux/tools/testing/vsock/ |
| H A D | timeout.c | 44 void timeout_begin(unsigned int seconds) in timeout_begin() 46 alarm(seconds); 41 timeout_begin(unsigned int seconds) timeout_begin() argument
|
| /linux/tools/laptop/freefall/ |
| H A D | freefall.c | 80 static void protect(int seconds) in protect() argument 82 const char *str = (seconds == 0) ? "Unparked" : "Parked"; in protect() 84 write_int(unload_heads_path, seconds*1000); in protect()
|
| /linux/Documentation/locking/ |
| H A D | locktorture.rst | 80 The number of seconds to run the test before terminating 86 The number of seconds between each attempt to execute a 94 The number of seconds to wait until starting CPU-hotplug 103 Number of seconds between statistics-related printk()s. 104 By default, locktorture will report stats every 60 seconds. 116 The number of seconds to keep the test threads affinitized 117 to a particular subset of the CPUs, defaults to 3 seconds.
|
| /linux/tools/testing/selftests/timers/ |
| H A D | inconsistency-check.c | 54 int consistency_test(int clock_type, unsigned long seconds) in clockstring() 69 while (seconds == -1 || now - then < seconds) { in in_order() 131 printf(" -t: Number of seconds to run\n"); in consistency_test() 83 consistency_test(int clock_type,unsigned long seconds) consistency_test() argument
|
| /linux/include/uapi/linux/netfilter/ |
| H A D | xt_recent.h | 29 __u32 seconds; member 38 __u32 seconds; member
|
| /linux/Documentation/admin-guide/device-mapper/ |
| H A D | dm-flakey.rst | 10 <up interval> seconds, then exhibits unreliable behaviour for <down 11 interval> seconds, and then this cycle repeats. 33 Number of seconds device is available. 35 Number of seconds device returns errors.
|