/Linux-v5.4/Documentation/watchdog/ |
D | watchdog-parameters.rst | 18 Maximum time, in seconds, for which the watchdog framework will take 44 Watchdog timeout in seconds. 1<= timeout <=63, default=60. 53 Watchdog timeout in seconds. (0 < timeout < 18000, default=60 62 Watchdog timeout in seconds. (1<=timeout<=3600, default=30 74 Watchdog margin in seconds (default=60) 83 Watchdog timeout in seconds. (default=120) 92 Watchdog time in seconds. (default=5) 101 Watchdog heartbeats in seconds. (default = 15) 110 Watchdog time in seconds. (default=30) 119 Watchdog margin in seconds (default 60s) [all …]
|
D | watchdog-api.rst | 98 representing the timeout in seconds. The driver returns the real 104 printf("The timeout was set to %d seconds\n", timeout); 106 This example might actually print "The timeout was set to 60 seconds" 113 printf("The timeout was is %d seconds\n", timeout); 127 Note that the pretimeout is the number of seconds before the time 128 when the timeout will go off. It is not the number of seconds until 129 the pretimeout. So, for instance, if you set the timeout to 60 seconds 130 and the pretimeout to 10 seconds, the pretimeout will go off in 50 131 seconds. Setting a pretimeout to zero disables it. 136 printf("The pretimeout was is %d seconds\n", timeout); [all …]
|
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-v5.4/Documentation/networking/ |
D | nf_conntrack-sysctl.txt | 53 nf_conntrack_frag6_timeout - INTEGER (seconds) 58 nf_conntrack_generic_timeout - INTEGER (seconds) 73 nf_conntrack_icmp_timeout - INTEGER (seconds) 78 nf_conntrack_icmpv6_timeout - INTEGER (seconds) 120 nf_conntrack_tcp_timeout_close - INTEGER (seconds) 123 nf_conntrack_tcp_timeout_close_wait - INTEGER (seconds) 126 nf_conntrack_tcp_timeout_established - INTEGER (seconds) 129 nf_conntrack_tcp_timeout_fin_wait - INTEGER (seconds) 132 nf_conntrack_tcp_timeout_last_ack - INTEGER (seconds) 135 nf_conntrack_tcp_timeout_max_retrans - INTEGER (seconds) [all …]
|
/Linux-v5.4/drivers/rtc/ |
D | rtc-tps6586x.c | 72 time64_t seconds; in tps6586x_rtc_read_time() local 88 seconds = ticks >> 10; in tps6586x_rtc_read_time() 89 rtc_time64_to_tm(seconds, tm); in tps6586x_rtc_read_time() 98 time64_t seconds; in tps6586x_rtc_set_time() local 102 seconds = rtc_tm_to_time64(tm); in tps6586x_rtc_set_time() 104 ticks = (unsigned long long)seconds << 10; in tps6586x_rtc_set_time() 151 time64_t seconds; in tps6586x_rtc_set_alarm() local 160 seconds = rtc_tm_to_time64(&alrm->time); in tps6586x_rtc_set_alarm() 181 if ((seconds - rtc_current_time) > ALM1_VALID_RANGE_IN_SEC) in tps6586x_rtc_set_alarm() 182 seconds = rtc_current_time - 1; in tps6586x_rtc_set_alarm() [all …]
|
D | rtc-mc13xxx.c | 63 unsigned int seconds, days1, days2; in mc13xxx_rtc_read_time() local 75 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTOD, &seconds); in mc13xxx_rtc_read_time() 84 rtc_time64_to_tm((time64_t)days1 * SEC_PER_DAY + seconds, tm); in mc13xxx_rtc_read_time() 92 unsigned int seconds, days; in mc13xxx_rtc_set_time() local 96 days = div_s64_rem(rtc_tm_to_time64(tm), SEC_PER_DAY, &seconds); in mc13xxx_rtc_set_time() 127 ret = mc13xxx_reg_write(priv->mc13xxx, MC13XXX_RTCTOD, seconds); in mc13xxx_rtc_set_time() 158 unsigned int seconds, days; in mc13xxx_rtc_read_alarm() local 165 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTODA, &seconds); in mc13xxx_rtc_read_alarm() 168 if (seconds >= SEC_PER_DAY) { in mc13xxx_rtc_read_alarm() 189 s1970 = (time64_t)days * SEC_PER_DAY + seconds; in mc13xxx_rtc_read_alarm() [all …]
|
D | rtc-ds1685.c | 233 u8 seconds, minutes, hours, wday, mday, month, years; in ds1685_rtc_read_time() local 237 seconds = rtc->read(rtc, RTC_SECS); in ds1685_rtc_read_time() 253 tm->tm_sec = ds1685_rtc_bcd2bin(rtc, seconds, RTC_SECS_BCD_MASK, in ds1685_rtc_read_time() 281 u8 ctrlb, seconds, minutes, hours, wday, mday, month, years, century; in ds1685_rtc_set_time() local 284 seconds = ds1685_rtc_bin2bcd(rtc, tm->tm_sec, RTC_SECS_BIN_MASK, in ds1685_rtc_set_time() 328 rtc->write(rtc, RTC_SECS, seconds); in ds1685_rtc_set_time() 357 u8 seconds, minutes, hours, mday, ctrlb, ctrlc; in ds1685_rtc_read_alarm() local 362 seconds = rtc->read(rtc, RTC_SECS_ALARM); in ds1685_rtc_read_alarm() 382 if (likely(seconds < 0xc0)) in ds1685_rtc_read_alarm() 383 alrm->time.tm_sec = ds1685_rtc_bcd2bin(rtc, seconds, in ds1685_rtc_read_alarm() [all …]
|
/Linux-v5.4/drivers/net/ethernet/microchip/ |
D | lan743x_ptp.c | 23 u32 seconds, u32 nano_seconds, 64 u32 seconds, u32 nano_seconds, in lan743x_ptp_tx_ts_enqueue_ts() argument 71 ptp->tx_ts_seconds_queue[ptp->tx_ts_queue_size] = seconds; in lan743x_ptp_tx_ts_enqueue_ts() 86 u32 header, nseconds, seconds; in lan743x_ptp_tx_ts_complete() local 104 seconds = ptp->tx_ts_seconds_queue[i]; in lan743x_ptp_tx_ts_complete() 108 tstamps.hwtstamp = ktime_set(seconds, nseconds); in lan743x_ptp_tx_ts_complete() 177 u32 *seconds, u32 *nano_seconds, 349 u32 seconds = 0; in lan743x_ptpci_gettime64() local 351 lan743x_ptp_clock_get(adapter, &seconds, &nano_seconds, NULL); in lan743x_ptpci_gettime64() 352 ts->tv_sec = seconds; in lan743x_ptpci_gettime64() [all …]
|
/Linux-v5.4/Documentation/devicetree/bindings/input/ |
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-v5.4/tools/testing/selftests/rcutorture/bin/ |
D | kvm-test-1-run.sh | 121 seconds=$4 153 boot_args="`per_version_boot_params "$boot_args" $resdir/.config $seconds`" 183 if test $kruntime -ge $seconds 190 if test $kruntime -lt $seconds 192 echo Completed in $kruntime vs. $seconds >> $resdir/Warnings 2>&1 240 echo "!!! PID $qemu_pid hung at $kruntime vs. $seconds seconds" >> $resdir/Warnings 2>&1
|
/Linux-v5.4/drivers/watchdog/ |
D | bd70528_wdt.c | 168 unsigned int seconds; in bd70528_wdt_set_timeout() local 172 seconds = timeout; in bd70528_wdt_set_timeout() 176 seconds -= (60 * 60); in bd70528_wdt_set_timeout() 177 minutes = seconds / 60; in bd70528_wdt_set_timeout() 178 seconds = seconds % 60; in bd70528_wdt_set_timeout() 199 BD70528_MASK_WDT_SEC, bin2bcd(seconds)); in bd70528_wdt_set_timeout()
|
/Linux-v5.4/arch/s390/mm/ |
D | cmm.c | 232 static void cmm_set_timeout(long nr, long seconds) in cmm_set_timeout() argument 235 cmm_timeout_seconds = seconds; in cmm_set_timeout() 292 long nr, seconds; in cmm_timeout_handler() local 308 seconds = simple_strtoul(p, &p, 0); in cmm_timeout_handler() 309 cmm_set_timeout(nr, seconds); in cmm_timeout_handler() 357 long nr, seconds; in cmm_smsg_target() local 383 seconds = simple_strtoul(msg, &msg, 0); in cmm_smsg_target() 386 cmm_set_timeout(nr, seconds); in cmm_smsg_target()
|
/Linux-v5.4/fs/udf/ |
D | udftime.c | 75 time64_t seconds; in udf_time_to_disk_stamp() local 83 seconds = ts.tv_sec + offset * 60; in udf_time_to_disk_stamp() 84 time64_to_tm(seconds, 0, &tm); in udf_time_to_disk_stamp()
|
/Linux-v5.4/kernel/time/ |
D | itimer.c | 251 static unsigned int alarm_setitimer(unsigned int seconds) in alarm_setitimer() argument 256 if (seconds > INT_MAX) in alarm_setitimer() 257 seconds = INT_MAX; in alarm_setitimer() 259 it_new.it_value.tv_sec = seconds; in alarm_setitimer() 280 SYSCALL_DEFINE1(alarm, unsigned int, seconds) in SYSCALL_DEFINE1() argument 282 return alarm_setitimer(seconds); in SYSCALL_DEFINE1()
|
/Linux-v5.4/tools/testing/vsock/ |
D | timeout.c | 41 void timeout_begin(unsigned int seconds) in timeout_begin() argument 43 alarm(seconds); in timeout_begin()
|
/Linux-v5.4/Documentation/ABI/testing/ |
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
|
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-v5.4/Documentation/devicetree/bindings/memory-controllers/ |
D | arm,pl172.txt | 68 enable (WE signal) in nano seconds. 71 enable (OE signal) in nano seconds. 74 access in nano seconds. 77 access in nano seconds. 80 accesses in nano seconds. 83 seconds.
|
/Linux-v5.4/tools/laptop/freefall/ |
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-v5.4/Documentation/admin-guide/device-mapper/ |
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.
|
/Linux-v5.4/include/linux/ |
D | delay.h | 63 static inline void ssleep(unsigned int seconds) in ssleep() argument 65 msleep(seconds * 1000); in ssleep()
|
/Linux-v5.4/include/uapi/linux/netfilter/ |
D | xt_recent.h | 29 __u32 seconds; member 38 __u32 seconds; member
|
/Linux-v5.4/tools/testing/selftests/timers/ |
D | inconsistency-check.c | 94 int consistency_test(int clock_type, unsigned long seconds) in consistency_test() argument 109 while (seconds == -1 || now - then < seconds) { in consistency_test()
|
/Linux-v5.4/Documentation/locking/ |
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. 117 The number of seconds to keep the test threads affinitied 118 to a particular subset of the CPUs, defaults to 3 seconds.
|
/Linux-v5.4/Documentation/devicetree/bindings/net/ |
D | hisilicon-femac.txt | 20 The 1st cell is reset pre-delay in micro seconds. 21 The 2nd cell is reset pulse in micro seconds. 22 The 3rd cell is reset post-delay in micro seconds.
|