Searched refs:seconds (Results 1 - 200 of 1204) sorted by relevance

1234567

/linux-4.1.27/arch/x86/include/asm/
H A Diommu.h9 /* 10 seconds */
/linux-4.1.27/include/uapi/linux/nfsd/
H A Dstats.h14 /* thread usage wraps very million seconds (approx one fortnight) */
/linux-4.1.27/include/uapi/linux/netfilter/
H A Dxt_recent.h27 __u32 seconds; member in struct:xt_recent_mtinfo
36 __u32 seconds; member in struct:xt_recent_mtinfo_v1
H A Dxt_limit.h12 seconds, or one every 59 hours. */
H A Dxt_hashlimit.h9 * seconds, or one packet every 59 hours.
/linux-4.1.27/drivers/rtc/
H A Drtc-tps6586x.c74 unsigned long seconds; tps6586x_rtc_read_time() local
90 seconds = ticks >> 10; tps6586x_rtc_read_time()
91 seconds += rtc->epoch_start; tps6586x_rtc_read_time()
92 rtc_time_to_tm(seconds, tm); tps6586x_rtc_read_time()
101 unsigned long seconds; tps6586x_rtc_set_time() local
105 rtc_tm_to_time(tm, &seconds); tps6586x_rtc_set_time()
106 if (seconds < rtc->epoch_start) { tps6586x_rtc_set_time()
110 seconds -= rtc->epoch_start; tps6586x_rtc_set_time()
112 ticks = (unsigned long long)seconds << 10; tps6586x_rtc_set_time()
160 unsigned long seconds; tps6586x_rtc_set_alarm() local
169 rtc_tm_to_time(&alrm->time, &seconds); tps6586x_rtc_set_alarm()
171 if (alrm->enabled && (seconds < rtc->epoch_start)) { tps6586x_rtc_set_alarm()
182 seconds -= rtc->epoch_start; tps6586x_rtc_set_alarm()
196 if ((seconds - rtc_current_time) > ALM1_VALID_RANGE_IN_SEC) tps6586x_rtc_set_alarm()
197 seconds = rtc_current_time - 1; tps6586x_rtc_set_alarm()
199 ticks = (unsigned long long)seconds << 10; tps6586x_rtc_set_alarm()
216 unsigned long seconds; tps6586x_rtc_read_alarm() local
227 seconds = ticks >> 10; tps6586x_rtc_read_alarm()
228 seconds += rtc->epoch_start; tps6586x_rtc_read_alarm()
230 rtc_time_to_tm(seconds, &alrm->time); tps6586x_rtc_read_alarm()
H A Drtc-mc13xxx.c65 unsigned int seconds, days1, days2; mc13xxx_rtc_read_time() local
77 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTOD, &seconds); mc13xxx_rtc_read_time()
86 rtc_time64_to_tm((time64_t)days1 * SEC_PER_DAY + seconds, tm); mc13xxx_rtc_read_time()
94 unsigned int seconds, days; mc13xxx_rtc_set_mmss() local
98 days = div_s64_rem(secs, SEC_PER_DAY, &seconds); mc13xxx_rtc_set_mmss()
118 * write seconds=0 to prevent a day switch between writing days mc13xxx_rtc_set_mmss()
119 * and seconds below mc13xxx_rtc_set_mmss()
129 ret = mc13xxx_reg_write(priv->mc13xxx, MC13XXX_RTCTOD, seconds); mc13xxx_rtc_set_mmss()
160 unsigned seconds, days; mc13xxx_rtc_read_alarm() local
167 ret = mc13xxx_reg_read(priv->mc13xxx, MC13XXX_RTCTODA, &seconds); mc13xxx_rtc_read_alarm()
170 if (seconds >= SEC_PER_DAY) { mc13xxx_rtc_read_alarm()
191 s1970 = (time64_t)days * SEC_PER_DAY + seconds; mc13xxx_rtc_read_alarm()
203 u32 seconds, days; mc13xxx_rtc_set_alarm() local
227 days = div_s64_rem(s1970, SEC_PER_DAY, &seconds); mc13xxx_rtc_set_alarm()
233 ret = mc13xxx_reg_write(priv->mc13xxx, MC13XXX_RTCTODA, seconds); mc13xxx_rtc_set_alarm()
H A Dhctosys.c16 /* IMPORTANT: the RTC only stores whole seconds. It is arbitrary
18 * seconds truncated. However, it is important that we use it to store
H A Drtc-tegra.c34 /* when msec is read, the seconds are buffered into shadow seconds. */
80 * This periodic update (where the seconds and milliseconds are copied to the
92 * posts its updated seconds+msec registers to AHB side. */ tegra_rtc_wait_while_busy()
113 /* RTC hardware copies seconds to shadow seconds when a read tegra_rtc_read_time()
143 /* convert tm to seconds. */ tegra_rtc_set_time()
160 /* seconds only written if wait succeeded. */ tegra_rtc_set_time()
H A Drtc-ab8500.c70 /* Calculate the seconds from 1970 to 01-01-2000 00:00:00 */ get_elapsed_seconds()
129 /* Add back the initially subtracted number of seconds */ ab8500_rtc_read_time()
148 /* Get the number of seconds since 1970 */ ab8500_rtc_set_time()
152 * Convert it to the number of seconds since 01-01-2000 00:00:00, since ab8500_rtc_set_time()
160 /* Make the seconds count as per the RTC resolution */ ab8500_rtc_set_time()
213 /* Add back the initially subtracted number of seconds */ ab8500_rtc_read_alarm()
241 /* Get the number of seconds since 1970 */ ab8500_rtc_set_alarm()
257 * Convert it to the number of seconds since 01-01-2000 00:00:00, since ab8500_rtc_set_alarm()
291 /* Get the number of seconds since 1970 */ ab8540_rtc_set_alarm()
295 * Convert it to the number of seconds since 01-01-2000 00:00:00 ab8540_rtc_set_alarm()
H A Drtc-au1xxx.c13 * used to count seconds since the beginning of the unix epoch.
51 * take up to 6 seconds... au1xtoy_rtc_set_time()
H A Drtc-lib.c51 * Convert seconds since 01-01-1970 00:00:00 to Gregorian date.
117 * Convert Gregorian date to seconds since 01-01-1970 00:00:00.
H A Drtc-bq32k.c23 #define BQ32K_SECONDS_MASK 0x7F /* Mask over seconds value */
39 uint8_t seconds; member in struct:bq32k_regs
96 tm->tm_sec = bcd2bin(regs.seconds & BQ32K_SECONDS_MASK); bq32k_rtc_read_time()
112 regs.seconds = bin2bcd(tm->tm_sec); bq32k_rtc_set_time()
H A Drtc-imxdi.c19 * to implement a Linux RTC. Times and alarms are truncated to seconds.
231 * read the seconds portion of the current time from the dryice time counter
245 * set the seconds portion of dryice time counter and clear the
275 * read the seconds portion of the alarm register.
301 * set the seconds portion of dryice alarm register
H A Drtc-ds1685.c255 u8 seconds, minutes, hours, wday, mday, month, years; ds1685_rtc_read_time() local
259 seconds = rtc->read(rtc, RTC_SECS); ds1685_rtc_read_time()
275 tm->tm_sec = ds1685_rtc_bcd2bin(rtc, seconds, RTC_SECS_BCD_MASK, ds1685_rtc_read_time()
304 u8 ctrlb, seconds, minutes, hours, wday, mday, month, years, century; ds1685_rtc_set_time() local
307 seconds = ds1685_rtc_bin2bcd(rtc, tm->tm_sec, RTC_SECS_BIN_MASK, ds1685_rtc_set_time()
351 rtc->write(rtc, RTC_SECS, seconds); ds1685_rtc_set_time()
369 * There are three primary alarm registers: seconds, minutes, and hours.
381 u8 seconds, minutes, hours, mday, ctrlb, ctrlc; ds1685_rtc_read_alarm() local
385 seconds = rtc->read(rtc, RTC_SECS_ALARM); ds1685_rtc_read_alarm()
404 if (unlikely(seconds >= 0xc0)) ds1685_rtc_read_alarm()
407 alrm->time.tm_sec = ds1685_rtc_bcd2bin(rtc, seconds, ds1685_rtc_read_alarm()
449 u8 ctrlb, seconds, minutes, hours, mday; ds1685_rtc_set_alarm() local
452 seconds = ds1685_rtc_bin2bcd(rtc, alrm->time.tm_sec, ds1685_rtc_set_alarm()
477 if (unlikely(seconds >= 0xc0)) ds1685_rtc_set_alarm()
478 seconds = 0xff; ds1685_rtc_set_alarm()
510 rtc->write(rtc, RTC_SECS_ALARM, seconds); ds1685_rtc_set_alarm()
1544 { "seconds", RTC_SECS, RTC_SECS_BCD_MASK, 0, 59 },
1561 { "seconds", RTC_SECS, RTC_SECS_BIN_MASK, 0x00, 0x3b },
1688 DS1685_RTC_SYSFS_TIME_REG_RW(seconds); variable
H A Drtc-dm355evm.c47 * and assuming the four reads take at most a few seconds. dm355evm_rtc_read_time()
H A Drtc-ds1216.c116 regs.tsec = 0; /* clear 0.1 and 0.01 seconds */ ds1216_rtc_set_time()
H A Drtc-ds1343.c257 alarm_str = "seconds match"; ds1343_show_alarmmode()
261 alarm_str = "minutes and seconds match"; ds1343_show_alarmmode()
265 alarm_str = "hours, minutes and seconds match"; ds1343_show_alarmmode()
269 alarm_str = "day, hours, minutes and seconds match"; ds1343_show_alarmmode()
H A Drtc-hid-sensor-time.c182 /* allow attribute seconds with unit seconds */ hid_time_parse_report()
H A Drtc-xgene.c71 * after the update cycle of 1 seconds. xgene_rtc_set_mmss()
197 /* HW does not support update faster than 1 seconds */ xgene_rtc_probe()
/linux-4.1.27/arch/sh/boards/mach-dreamcast/
H A Drtc.c18 seconds) to get the standard Unix Epoch when getting the time, and add
22 /* The AICA RTC is represented by a 32-bit seconds counter stored in 2 16-bit
31 * Grabs the current RTC seconds counter and adjusts it to the Unix Epoch.
47 /* Can't get nanoseconds with just a seconds counter. */ aica_rtc_gettimeofday()
55 * Adjusts the given @tv to the AICA Epoch and sets the RTC seconds counter.
/linux-4.1.27/drivers/char/
H A Dhangcheck-timer.c30 * duration in seconds. The hangcheck_margin parameter defines the
31 * margin of error, in seconds. The defaults are 60 seconds for the
32 * timer and 180 seconds for the margin of error. IOW, a timer is set
33 * for 60 seconds. When the timer fires, the callback checks the
35 * alloted time and margin (here 60 + 180, or 240 seconds), the machine
56 #define DEFAULT_IOFENCE_MARGIN 60 /* Default fudge factor, in seconds */
57 #define DEFAULT_IOFENCE_TICK 180 /* Default timer timeout, in seconds */
68 MODULE_PARM_DESC(hangcheck_margin, "If the hangcheck timer has been delayed more than hangcheck_margin seconds, the driver will fire.");
168 printk("Hangcheck: starting hangcheck timer %s (tick is %d seconds, margin is %d seconds).\n", hangcheck_init()
/linux-4.1.27/include/linux/
H A Dtimekeeper_internal.h21 * @xtime_nsec: Shifted (fractional) nano seconds offset for readout
45 * @xtime_sec: Current CLOCK_REALTIME time in seconds
46 * @ktime_sec: Current CLOCK_MONOTONIC time in seconds
51 * @tai_offset: The current UTC to TAI offset in seconds
54 * @xtime_interval: Number of clock shifted nano seconds in one NTP
56 * @xtime_remainder: Shifted nano seconds left over when rounding
58 * @raw_interval: Raw nano seconds accumulated per NTP interval.
60 * shifted nano seconds.
61 * @ntp_error_shift: Shift conversion between clock shifted nano seconds and
62 * ntp shifted nano seconds.
103 * shifted nano seconds. */
H A Ddelay.h50 static inline void ssleep(unsigned int seconds) ssleep() argument
52 msleep(seconds * 1000); ssleep()
H A Dscc.h35 unsigned int maxkeyup; /* Maximum time to transmit (seconds) */
36 unsigned int mintime; /* Minimal offtime after MAXKEYUP timeout (seconds) */
37 unsigned int idletime; /* Maximum idle time in ALWAYS KEYED mode (seconds) */
H A Ddrbd_limits.h53 /* timeout, unit centi seconds
57 #define DRBD_TIMEOUT_DEF 60 /* 6 seconds */
69 #define DRBD_CONNECT_INT_DEF 10 /* seconds */
H A Dtime.h149 extern unsigned int alarm_setitimer(unsigned int seconds);
162 * the number of seconds after the minute, normally in the range
163 * 0 to 59, but can be up to 60 to allow for leap seconds
H A Dpowercap.h171 * @set_time_window_us: Set time window in micro-seconds.
172 * @get_time_window_us: Get time window in micro-seconds.
175 * @get_max_time_window_us: Get max time window allowed in micro-seconds.
176 * @get_min_time_window_us: Get min time window allowed in micro-seconds.
/linux-4.1.27/include/uapi/linux/
H A Datmclip.h17 #define CLIP_CHECK_INTERVAL 10 /* check every ten seconds */
H A Dtime.h10 __kernel_time_t tv_sec; /* seconds */
16 __kernel_time_t tv_sec; /* seconds */
H A Dif_addr.h59 __u32 cstamp; /* created timestamp, hundredths of seconds */
60 __u32 tstamp; /* updated timestamp, hundredths of seconds */
H A Dwatchdog.h45 #define WDIOF_SETTIMEOUT 0x0080 /* Set timeout (in seconds) */
47 #define WDIOF_PRETIMEOUT 0x0200 /* Pretimeout (in seconds), get/set */
H A Digmp.h109 /* query (in seconds) */
112 /* specifies time in 10th of seconds */
H A Dpg.h48 int timeout; /* number of seconds before timeout */
58 int duration; /* time in seconds command took */
H A Dmmtimer.h33 * The resolution of the clock in femto (10^-15) seconds
H A Dptp_clock.h35 * The sign of the seconds field applies to the whole value. The
42 __s64 sec; /* seconds */
H A Dv4l2-subdev.h104 * @interval: frame interval in seconds
119 * @interval: frame interval in seconds
H A Dcn_proc.h66 /* Number of nano seconds since system boot */
/linux-4.1.27/include/uapi/linux/netfilter_bridge/
H A Debt_limit.h12 seconds, or one every 59 hours. */
/linux-4.1.27/arch/ia64/include/asm/
H A Diommu.h5 /* 10 seconds */
/linux-4.1.27/include/linux/ceph/
H A Dmdsmap.h24 u32 m_session_timeout; /* seconds */
25 u32 m_session_autoclose; /* seconds */
/linux-4.1.27/arch/cris/arch-v32/lib/
H A Ddelay.c18 * seconds. Unsigned arithmetic and careful expression handles
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/
H A Dlibcfs_time.h66 static inline unsigned long cfs_time_shift(int seconds) cfs_time_shift() argument
68 return cfs_time_add(cfs_time_current(), cfs_time_seconds(seconds)); cfs_time_shift()
84 static inline void cfs_slow_warning(unsigned long now, int seconds, char *msg) cfs_slow_warning() argument
92 #define CFS_RATELIMIT(seconds) \
103 __next_message = cfs_time_shift(seconds); \
H A Dlibcfs_fail.h130 /* If id hit cfs_fail_loc, sleep for seconds or milliseconds */
138 * sleep seconds or milliseconds */
/linux-4.1.27/include/net/netns/
H A Dsctp.h44 * RTO.Initial - 3 seconds
46 * RTO.Max - 60 seconds
69 /* Valid.Cookie.Life - 60 seconds */
75 /* HB.interval - 30 seconds */
131 /* Threshold for autoclose timeout, in seconds. */
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/linux/
H A Dlinux-time.h88 static inline long cfs_time_seconds(int seconds) cfs_time_seconds() argument
90 return ((long)seconds) * HZ; cfs_time_seconds()
120 static inline __u64 cfs_time_shift_64(int seconds) cfs_time_shift_64() argument
123 cfs_time_seconds(seconds)); cfs_time_shift_64()
/linux-4.1.27/drivers/staging/speakup/
H A Dspeakup_acnt.h15 #define SYNTH_ALMOST_EMPTY 'M' /* synth has less than 2 seconds of text left */
/linux-4.1.27/drivers/watchdog/
H A Dnuc900_wdt.c39 * 0x00 ((2^ 14 ) * ((external crystal freq) / 256))seconds
40 * 0x01 ((2^ 16 ) * ((external crystal freq) / 256))seconds
41 * 0x02 ((2^ 18 ) * ((external crystal freq) / 256))seconds
42 * 0x03 ((2^ 20 ) * ((external crystal freq) / 256))seconds
45 * So 0x00 = +-0.28 seconds, 0x01 = +-1.12 seconds, 0x02 = +-4.48 seconds,
46 * 0x03 = +- 16.92 seconds..
54 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. "
H A Dbcm47xx_wdt.c31 #define WDT_DEFAULT_TIME 30 /* seconds */
32 #define WDT_SOFTTIMER_MAX 255 /* seconds */
33 #define WDT_SOFTTIMER_THRESHOLD 60 /* seconds */
39 MODULE_PARM_DESC(timeout, "Watchdog time in seconds. (default="
233 dev_info(&pdev->dev, "BCM47xx Watchdog Timer enabled (%d seconds%s%s)\n", bcm47xx_wdt_probe()
H A Dtxx9wdt.c27 #define TIMER_MARGIN 60 /* Default is 60 seconds */
29 static unsigned int timeout = TIMER_MARGIN; /* in seconds */
32 "Watchdog timeout in seconds. "
H A Dmtx-1_wdt.c29 * if it is not triggered for 100 seconds.
30 * It should not be triggered more often than 1.6 seconds.
32 * A timer triggers the watchdog every 5 seconds, until
34 * it MUST be triggered every 2..95 seconds.
H A Dat91rm9200_wdt.c35 #define WDT_DEFAULT_TIME 5 /* seconds */
36 #define WDT_MAX_TIME 256 /* seconds */
43 MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default="
143 * 65536 / 256 = 256 seconds. at91_wdt_settimeout()
258 pr_info("AT91 Watchdog Timer enabled (%d seconds%s)\n", at91wdt_probe()
H A Dks8695_wdt.c41 #define WDT_DEFAULT_TIME 5 /* seconds */
42 #define WDT_MAX_TIME 171 /* seconds */
48 MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default="
123 * 65536 / 0.256 = 256 seconds. ks8695_wdt_settimeout()
250 pr_info("KS8695 Watchdog Timer enabled (%d seconds%s)\n", ks8695wdt_probe()
H A Dpika_wdt.c30 /* Hardware timeout in seconds */
40 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. "
76 * seconds. Valid ranges are 1 to 15 seconds. The value can pikawdt_reset()
80 /* enable with max timeout - 15 seconds */ pikawdt_reset()
H A Dscx200_wdt.c41 static int margin = 60; /* in seconds */
43 MODULE_PARM_DESC(margin, "Watchdog margin in seconds");
70 pr_info("timer margin %d seconds\n", margin); scx200_wdt_update_margin()
H A Dsoftdog.c52 #define TIMER_MARGIN 60 /* Default is 60 seconds */
53 static unsigned int soft_margin = TIMER_MARGIN; /* in seconds */
56 "Watchdog soft_margin in seconds. (0 < soft_margin < 65536, default="
H A Dnv_tco.c59 static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
61 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (2<heartbeat<39, "
72 static inline unsigned char seconds_to_ticks(int seconds) seconds_to_ticks() argument
75 * every 0.6 seconds */ seconds_to_ticks()
76 return (seconds * 10) / 6; seconds_to_ticks()
121 * tmrval=seconds_to_ticks(t). Check that the count in seconds isn't tco_timer_set_heartbeat()
H A Dep93xx_wdt.c47 "Watchdog timeout in seconds. (1<=timeout<=3600, default="
57 /* reset the wdt every ~200ms - the heartbeat of the device is 0.250 seconds*/
H A Dintel_scu_watchdog.h33 /* Time from warning to reboot is 2 seconds */
H A Dalim7101_wdt.c13 * seconds) and it would be insane to count on any userspace
57 * char to /dev/watchdog every 30 seconds.
61 /* in seconds, will be multiplied by HZ to get seconds to wait for a ping */
65 "Watchdog timeout in seconds. (1<=timeout<=3600, default="
H A DiTCO_vendor_support.c75 * So, if the watchdog timer is 20 seconds, then the maximum hang
76 * time is about 40 seconds, and the minimum hang time is about
77 * 20.6 seconds.
157 /* (Bit 3: 0 = seconds, 1 = minutes */
186 /* Watchdog timer setting needs to be in seconds*/ supermicro_new_pre_start()
H A Dsbc60xxwdt.c95 * char to /dev/watchdog every 30 seconds.
96 * If the daemon pulses us every 25 seconds, we can still afford
102 static int timeout = WATCHDOG_TIMEOUT; /* in seconds, multiplied by HZ to
103 get seconds to wait for a ping */
106 "Watchdog timeout in seconds. (1<=timeout<=3600, default="
H A Dsc520_wdt.c49 * seconds) and it would be insane to count on any userspace
88 * char to /dev/watchdog every 30 seconds.
92 /* in seconds, will be multiplied by HZ to get seconds to wait for a ping */
96 "Watchdog timeout in seconds. (1 <= timeout <= 3600, default="
H A Dw83877f_wdt.c41 * seconds) and it would be insane to count on any userspace
82 * char to /dev/watchdog every 30 seconds.
86 /* in seconds, will be multiplied by HZ to get seconds to wait for a ping */
90 "Watchdog timeout in seconds. (1<=timeout<=3600, default="
H A Dw83977f_wdt.c45 #define DEFAULT_TIMEOUT 45 /* default timeout in seconds */
56 "Watchdog timeout in seconds (15..7635), default="
230 * Convert seconds to watchdog counter time units, rounding up. wdt_set_timeout()
231 * On PCM-5335 watchdog units are 30 seconds/step with 15 sec startup wdt_set_timeout()
245 * timeout is the timeout in seconds, wdt_set_timeout()
H A Dwdt977.c18 * from minutes to seconds.
55 #define DEFAULT_TIMEOUT 60 /* default timeout in seconds */
65 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds (60..15300, default="
207 /* convert seconds to minutes, rounding up */ wdt977_set_timeout()
221 /* timeout is the timeout in seconds, timeoutM is wdt977_set_timeout()
H A Dpnx4008_wdt.c100 /* the longest pulse period 65541/(13*10^6) seconds ~ 5 ms. */ pnx4008_wdt_start()
224 "Watchdog heartbeat period in seconds from 1 to "
H A Dsbc_fitpc2_wdt.c223 pr_err("margin must be in range 31 - 255 seconds, you tried to set %d\n", fitpc2_wdt_init()
260 MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)");
H A Dwdt285.c45 static unsigned int soft_margin = 60; /* in seconds */
228 MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
H A Dsch311x_wdt.c71 static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
74 "Watchdog timeout in seconds. 1<= timeout <=15300, default="
117 /* When new timeout is bigger then 255 seconds, we will use minutes */ sch311x_wdt_set_timeout()
187 /* When new timeout is bigger then 255 seconds, sch311x_wdt_set_heartbeat()
H A Dstmp3xxx_rtc_wdt.c24 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat period in seconds from 1 to "
H A Dts72xx_wdt.c32 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. "
98 * @new_timeout: timeout in seconds to be converted
108 /* first limit it to 1 - 8 seconds */ timeout_to_regval()
123 * Function converts given @regval to timeout in seconds (1, 2, 4 or 8).
H A Dadvantechwdt.c58 * To enable or restart, write the timeout value in seconds (1 to 63)
74 static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
77 "Watchdog timeout in seconds. 1<= timeout <=63, default="
H A Dib700wdt.c98 #define WATCHDOG_TIMEOUT 30 /* 30 seconds +/- 20% */
99 static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
102 "Watchdog timeout in seconds. 0<= timeout <=30, default="
H A Dsbc7240_wdt.c43 static int timeout = SBC7240_TIMEOUT; /* in seconds */
45 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. (1<=timeout<="
89 pr_info("timeout set to %d seconds\n", t); wdt_set_timeout()
H A Dsunxi_wdt.c67 * wdt_timeout_map maps the watchdog timer interval value in seconds to
70 * [timeout seconds] = register value
325 MODULE_PARM_DESC(timeout, "Watchdog heartbeat in seconds");
H A Dvia_wdt.c47 /* Hardware heartbeat in seconds */
53 /* User space timeout in seconds */
58 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds, between 1 and 1023 "
H A Dwafer5823wdt.c55 * To enable, write the timeout value in seconds (1 to 255) to I/O
64 static int timeout = WD_TIMO; /* in seconds */
67 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
H A Dbfin_wdt.c108 * @t: new timeout value (in seconds)
110 * Translate the specified timeout in seconds into System Clock
470 "Watchdog timeout in seconds. (1<=timeout<=((2^32)/SCLK), default="
H A Dimx2_wdt.c58 #define IMX2_WDT_DEFAULT_TIME 60 /* in seconds */
78 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds (default="
159 /* ping it every wdog->timeout / 2 seconds to prevent reboot */ imx2_wdt_timer_ping()
H A Dit8712f_wdt.c46 static int margin = 60; /* in seconds */
48 MODULE_PARM_DESC(margin, "Watchdog margin in seconds");
163 pr_info("timer margin %d seconds\n", units); it8712f_wdt_update_margin()
H A Dixp4xx_wdt.c205 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds (default 60s)");
H A Dmoxart_wdt.c183 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds");
H A Docteon-wdt-main.c30 * For most systems this is less than 10 seconds, so to allow for
94 #define WD_TIMO 60 /* Default heartbeat = 60 seconds */
99 "Watchdog heartbeat in seconds. (0 < heartbeat, default="
574 * of even seconds, octeon_wdt_init()
H A Dux500_wdt.c32 "Watchdog timeout in seconds. default="
H A Dwdrtas.c82 * seconds.
108 * @fallback_value: value (in seconds) to use, if the RTAS call fails
114 * of the return value is seconds.
534 pr_warn("couldn't get token for ibm,get-system-parameter. Trying to continue with a default timeout value of %i seconds.\n", wdrtas_get_tokens()
H A Dar7_wdt.c51 MODULE_PARM_DESC(margin, "Watchdog margin in seconds");
153 pr_info("timer margin %d seconds (prescale %d, change %d, freq %d)\n", ar7_wdt_update_margin()
H A Dath79_wdt.c41 #define WDT_TIMEOUT 15 /* seconds */
60 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds "
/linux-4.1.27/arch/alpha/include/asm/
H A Dtimex.h18 * But this only means we'll force a reschedule every 8 seconds or so,
/linux-4.1.27/kernel/time/
H A Ditimer.c242 * alarm_setitimer - set alarm in seconds
244 * @seconds: number of seconds until alarm
247 * Returns the remaining time in seconds of a pending timer or 0 when
250 * On 32 bit machines the seconds value is limited to (INT_MAX/2) to avoid
253 unsigned int alarm_setitimer(unsigned int seconds) alarm_setitimer() argument
258 if (seconds > INT_MAX) alarm_setitimer()
259 seconds = INT_MAX; alarm_setitimer()
261 it_new.it_value.tv_sec = seconds; alarm_setitimer()
H A Dtimeconv.c72 * @totalsecs the number of seconds elapsed since 00:00:00 on January 1, 1970,
74 * @offset offset seconds adding to totalsecs.
H A Dtime.c312 * mktime64 - Converts date to seconds.
313 * Converts Gregorian date to seconds since 1970-01-01 00:00:00.
341 )*60 + sec; /* finally seconds */ mktime64()
349 * @sec: seconds to set
352 * Set seconds and nanoseconds field of a timespec variable and
429 * @sec: seconds to set
432 * Set seconds and nanoseconds field of a timespec variable and
/linux-4.1.27/arch/s390/mm/
H A Dcmm.c237 static void cmm_set_timeout(long nr, long seconds) cmm_set_timeout() argument
240 cmm_timeout_seconds = seconds; cmm_set_timeout()
300 long nr, seconds; cmm_timeout_handler() local
317 seconds = simple_strtoul(p, &p, 0); cmm_timeout_handler()
318 cmm_set_timeout(nr, seconds); cmm_timeout_handler()
365 long nr, seconds; cmm_smsg_target() local
391 seconds = simple_strtoul(msg, &msg, 0); cmm_smsg_target()
394 cmm_set_timeout(nr, seconds); cmm_smsg_target()
/linux-4.1.27/tools/perf/scripts/python/
H A Dsctop.py8 # will be refreshed every [interval] seconds. The default interval is
9 # 3 seconds.
/linux-4.1.27/tools/power/cpupower/utils/idle_monitor/
H A Dcpupower-monitor.h63 fprintf(stderr, gettext("Measure took %u seconds, but registers could " \
64 "overflow at %u seconds, results " \
/linux-4.1.27/include/linux/input/
H A Dkxtj9.h26 unsigned int min_interval; /* minimum poll interval (in milli-seconds) */
27 unsigned int init_interval; /* initial poll interval (in milli-seconds) */
H A Dadp5589.h157 unsigned char unlock_timer; /* Time in seconds [0..7] between the two unlock keys 0=disable (ADP5589 only) */
/linux-4.1.27/net/netfilter/ipvs/
H A Dip_vs_est.c33 seconds) for virtual services and real servers. For measure rate in a
40 We measure rate during the last 8 seconds every 2 seconds:
116 /* scaled by 2^10, but divided 2 seconds */ estimation_timer()
129 /* scaled by 2^5, but divided 2 seconds */ estimation_timer()
/linux-4.1.27/Documentation/laptops/
H A Dfreefall.c81 static void protect(int seconds) protect() argument
83 const char *str = (seconds == 0) ? "Unparked" : "Parked"; protect()
85 write_int(unload_heads_path, seconds*1000); protect()
H A Ddslm.c153 printf("Waiting %d seconds for the system to settle down to " main()
/linux-4.1.27/scripts/
H A Dshow_delta41 # returns a tuple containing the seconds and text for each message line
42 # seconds is returned as a float
58 # time data is expressed in seconds.useconds,
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/socklnd/
H A Dsocklnd_modparams.c26 MODULE_PARM_DESC(sock_timeout, "dead socket timeout (seconds)");
98 MODULE_PARM_DESC(keepalive, "# seconds before send keepalive");
102 MODULE_PARM_DESC(keepalive_idle, "# idle seconds before probe");
111 MODULE_PARM_DESC(keepalive_intvl, "seconds between probes");
/linux-4.1.27/arch/sh/lib64/
H A Dudelay.c21 * a 1GHz box, that's about 2 seconds.
/linux-4.1.27/arch/mips/kernel/
H A Dcrash.c49 * respond. Delay of at least 10 seconds. crash_kexec_prepare_cpus()
/linux-4.1.27/arch/alpha/lib/
H A Dudelay.c18 * a 1GHz box, that's about 2 seconds.
/linux-4.1.27/tools/testing/selftests/timers/
H A Dinconsistency-check.c105 int consistency_test(int clock_type, unsigned long seconds) consistency_test() argument
120 while (seconds == -1 || now - then < seconds) { consistency_test()
184 printf(" -t: Number of seconds to run\n"); main()
H A Dleapcrash.c98 /* set the time to 2 seconds before the leap */ main()
H A Dleap-a-day.c15 * -s: Each iteration, set the date to 10 seconds before midnight GMT.
18 * time by 24 hours every ~16 seconds, it may cause application
254 /* Wake up 3 seconds before leap */ main()
H A Dalarmtimer-suspend.c160 printf("Setting alarm for every %i seconds\n", SUSPEND_SECS); main()
H A Dthreadtest.c177 printf("Testing consistency with %i threads for %ld seconds: ", thread_count, runtime); main()
/linux-4.1.27/drivers/xen/
H A Dpreempt.c19 * seconds. Allow tasks running hypercalls via the privcmd driver to
/linux-4.1.27/drivers/net/wireless/b43/
H A Dlo.h65 * Timeouts must be multiple of 15 seconds. To make sure
67 * subtract two additional seconds from the timeout. */
/linux-4.1.27/net/rxrpc/
H A Dsysctl.c65 /* Values measured in seconds but used in jiffies */
83 /* Values measured in seconds */
/linux-4.1.27/tools/testing/selftests/powerpc/tm/
H A Dtm-syscall.c28 #define TEST_DURATION 10 /* seconds */
88 printf("Testing transactional syscalls for %d seconds...\n", TEST_DURATION); tm_syscall()
/linux-4.1.27/Documentation/ptp/
H A Dtestptp.c116 " -a val request a one-shot alarm after 'val' seconds\n" usage()
117 " -A val request a periodic alarm every 'val' seconds\n" usage()
138 " -t val shift the ptp clock time by 'val' seconds\n" usage()
139 " -T val set the ptp clock time to 'val' seconds\n", usage()
180 int seconds = 0; main() local
245 seconds = atoi(optarg); main()
340 ts.tv_sec = seconds; main()
/linux-4.1.27/drivers/target/
H A Dtarget_core_alua.h59 #define ALUA_MAX_NONOP_DELAY_MSECS 10000 /* 10 seconds */
65 #define ALUA_MAX_TRANS_DELAY_MSECS 30000 /* 30 seconds */
68 * in seconds, returned by the REPORT_TARGET_PORT_GROUPS w/ extended header.
/linux-4.1.27/include/scsi/
H A Dscsi_transport_srp.h44 * @reconnect_delay: Reconnect delay in seconds.
47 * @fast_io_fail_tmo: Fast I/O fail timeout in seconds.
48 * @dev_loss_tmo: Device loss timeout in seconds.
H A Dscsi_bsg_iscsi.h35 /* Default BSG request timeout (in seconds) */
/linux-4.1.27/arch/arm/mach-davinci/
H A Dclock.h57 * is ~25MHz. Units are micro seconds.
60 /* From OMAP-L138 datasheet table 6-4. Units are micro seconds */
64 * Units are micro seconds.
/linux-4.1.27/drivers/leds/
H A Dleds-ipaq-micro.c37 * 0 = 256/10 seconds micro_leds_brightness_set()
74 * 0 = 256/10 seconds micro_leds_blink_set()
/linux-4.1.27/drivers/macintosh/
H A Dwindfarm_pid.h27 int interval; /* Interval between samples in seconds */
61 int interval; /* Interval between samples in seconds */
H A Dwindfarm_core.c105 /* 10 seconds overtemp, notify userland */ wf_thread_func()
108 /* 30 seconds, shutdown */ wf_thread_func()
112 " seconds, shutting down\n"); wf_thread_func()
/linux-4.1.27/arch/x86/kernel/
H A Dcheck.c20 static unsigned __read_mostly corruption_check_period = 60; /* seconds */
158 printk(KERN_INFO "Scanning for low memory corruption every %d seconds\n", start_periodic_check_for_corruption()
/linux-4.1.27/include/memory/
H A Djedec_ddr.h66 /* Refresh rate in nano-seconds */
126 * All parameters are in pico seconds(ps) unless explicitly indicated
/linux-4.1.27/include/trace/events/
H A Dv4l2.h136 buf->timecode.seconds; \
155 "seconds = %u, minutes = %u, hours = %u, " \
/linux-4.1.27/arch/mn10300/include/asm/
H A Drtc-regs.h18 #define RTSCR __SYSREG(0xd8600000, u8) /* RTC seconds count reg */
19 #define RTSAR __SYSREG(0xd8600001, u8) /* RTC seconds alarm reg */
/linux-4.1.27/tools/perf/scripts/perl/
H A Drwtop.pl9 # refreshed every [interval] seconds. The default interval is 3
10 # seconds.
/linux-4.1.27/drivers/isdn/pcbit/
H A Dedss1.h90 unsigned long timeout; /* in seconds */
/linux-4.1.27/drivers/net/ethernet/neterion/vxge/
H A Dvxge-ethtool.h39 #define VXGE_MAX_FLICKER_TIME (60 * HZ) /* 60 seconds */
/linux-4.1.27/drivers/media/platform/vivid/
H A Dvivid-rds-gen.h24 * It takes almost exactly 5 seconds to transmit 57 RDS groups.
/linux-4.1.27/drivers/net/fddi/skfp/h/
H A Dsba_def.h59 #define TWO_MIN 120 /* seconds */
/linux-4.1.27/drivers/staging/rtl8723au/os_dep/
H A Dmlme_linux.c36 * disconnect with AP for 60 seconds. rtw_reset_securitypriv23a()
/linux-4.1.27/fs/xfs/
H A Dxfs_globals.c25 * seconds.
H A Dxfs_mru_cache.c33 * initialises an MRU Cache with a lifetime of ten seconds and a group count of
38 * All the elements added in the first two seconds are appended to the first
43 * The reaper function will have nothing to do until at least twelve seconds
46 * have only been inactive for nine seconds, so it still does nothing. If it is
47 * called anywhere between t=12 and t=14 seconds, it will delete all the
50 * (t + t/g) seconds, where t is the inactive element lifetime and g is the
54 * every (t/g) seconds. If it is called less frequently, unused elements will
/linux-4.1.27/include/uapi/scsi/
H A Dscsi_netlink_fc.h60 uint64_t seconds; member in struct:fc_nl_event
/linux-4.1.27/arch/blackfin/include/asm/
H A Dtime.h19 * (32 bit counter is 4,294,967,296ns or 4.2 seconds) so, we don't need
/linux-4.1.27/arch/arm/include/asm/
H A Dvdso_datapage.h40 u32 xtime_clock_sec; /* CLOCK_REALTIME - seconds */
/linux-4.1.27/Documentation/prctl/
H A Ddisable-tsc-ctxt-sw-stress-test.c7 * Warning: this test will cause a very high load for a few seconds
H A Ddisable-tsc-on-off-stress-test.c7 * Warning: this test will cause a very high load for a few seconds
/linux-4.1.27/net/netfilter/
H A Dnf_conntrack_netbios_ns.c37 MODULE_PARM_DESC(timeout, "timeout for master connection/replies in seconds");
H A Dnf_conntrack_snmp.c30 MODULE_PARM_DESC(timeout, "timeout for master connection/replies in seconds");
/linux-4.1.27/tools/testing/selftests/rcutorture/configs/lock/
H A Dver_functions.sh34 # per_version_boot_params bootparam-string config-file seconds
/linux-4.1.27/tools/testing/selftests/rcutorture/configs/rcu/
H A Dver_functions.sh46 # per_version_boot_params bootparam-string config-file seconds
/linux-4.1.27/include/asm-generic/
H A Dcputime_jiffies.h41 * Convert cputime to seconds and back.
H A Dcputime_nsecs.h66 * Convert cputime <-> seconds
/linux-4.1.27/drivers/scsi/qla2xxx/
H A Dqla_mr.h512 #define QLAFX00_HEARTBEAT_INTERVAL 6 /* number of seconds */
514 #define QLAFX00_RESET_INTERVAL 120 /* number of seconds */
515 #define QLAFX00_MAX_RESET_INTERVAL 600 /* number of seconds */
516 #define QLAFX00_CRITEMP_INTERVAL 60 /* number of seconds */
517 #define QLAFX00_HINFO_RESEND_INTERVAL 60 /* number of seconds */
/linux-4.1.27/arch/mips/include/asm/octeon/
H A Dcvmx-spi.h92 * @timeout: Timeout to wait for clock synchronization in seconds
110 * @timeout: Timeout to wait for clock synchronization in seconds
212 * @timeout: Timeout to wait for clock synchronization in seconds
229 * @timeout: Timeout to wait for link to be trained (in seconds)
246 * @timeout: Timeout to wait for calendar data in seconds
/linux-4.1.27/net/batman-adv/
H A Dmain.h38 /* purge originators after time in seconds if no valid packet comes in
41 #define BATADV_PURGE_TIMEOUT 200000 /* 200 seconds */
45 #define BATADV_TT_WORK_PERIOD 5000 /* 5 seconds */
111 #define BATADV_BLA_PERIOD_LENGTH 10000 /* 10 seconds */
118 /* don't reset again within 30 seconds */
/linux-4.1.27/fs/adfs/
H A Dinode.c166 * referenced to 1 Jan 1900 (til 2248) so we need to discard 2208988800 seconds
186 /* convert 40-bit centi-seconds to 32-bit seconds adfs_adfs2unix_time()
220 /* convert 32-bit seconds to 40-bit centi-seconds */ adfs_unix2adfs_time()
/linux-4.1.27/drivers/scsi/qla4xxx/
H A Dql4_nvram.c207 unsigned int seconds = 30; ql4xxx_sem_spinlock() local
223 } while (--seconds); ql4xxx_sem_spinlock()
/linux-4.1.27/drivers/ssb/
H A Dsprom.c80 * be holding the lock for several seconds. So allow userspace ssb_attr_sprom_show()
123 * be holding the lock for several seconds. So allow userspace ssb_attr_sprom_store()
/linux-4.1.27/drivers/staging/unisys/include/
H A Dtimskmod.h115 /** Sleep for an indicated number of seconds (for use in kernel mode).
116 * x - the number of seconds to sleep.
/linux-4.1.27/fs/ntfs/
H A Dtime.h51 * Convert the seconds to 100ns intervals, add the nano-seconds utc2ntfs()
/linux-4.1.27/fs/udf/
H A Dudftime.c32 * We don't take into account leap seconds. This may be correct or incorrect.
33 * For more NIST information (especially dealing with leap seconds), see:
/linux-4.1.27/arch/powerpc/platforms/pseries/
H A Dnvram.c38 #define NVRAM_RTAS_READ_TIMEOUT 5 /* seconds */
197 * NVRAM_RTAS_READ_TIMEOUT seconds, it's probably not going to.
/linux-4.1.27/arch/powerpc/include/asm/
H A Dcputime.h142 * Convert cputime <-> seconds
205 * Convert cputime <-> clock_t (units of 1/USER_HZ seconds)
H A Dvdso_datapage.h88 __u32 stamp_sec_fraction; /* fractional seconds of stamp_xtime */
109 __u32 stamp_sec_fraction; /* fractional seconds of stamp_xtime */
/linux-4.1.27/arch/blackfin/kernel/
H A Dnmi.c27 #define NMI_WDT_TIMEOUT 5 /* 5 seconds */
28 #define NMI_CHECK_TIMEOUT (4 * HZ) /* 4 seconds in jiffies */
H A Dtime.c151 * 2^31 seconds (which uClibc cannot cope with yet) time_init()
/linux-4.1.27/net/dccp/ccids/
H A Dccid3.h45 /* Two seconds as per RFC 5348, 4.2 */
48 /* Parameter t_mbi from [RFC 3448, 4.3]: backoff interval in seconds */
/linux-4.1.27/kernel/
H A Dhung_task.c111 pr_err("INFO: task %s:%d blocked for more than %ld seconds.\n", check_hung_task()
155 * a really long time (120 seconds). If that happens, print out
H A Dtsacct.c41 /* Convert to micro seconds */ bacct_add_tsk()
44 /* Convert to seconds for btime */ bacct_add_tsk()
H A Dwatchdog.c152 * Hard-lockup warnings should be triggered after just a few seconds. Soft-
164 * Returns seconds, approximately. We don't need nanosecond
176 * convert watchdog_thresh from seconds to ns set_sample_period()
484 * It only runs once every sample_period seconds (4 seconds by
486 * for more than 2*watchdog_thresh seconds then the debug-printout
504 * every few seconds if the hardlockup was disabled but the softlockup watchdog()
H A Dsmpboot.c379 * for more than five seconds, and the user attempts to cpu_check_up_prepare()
408 bool cpu_wait_death(unsigned int cpu, int seconds) cpu_wait_death() argument
410 int jf_left = seconds * HZ; cpu_wait_death()
/linux-4.1.27/kernel/power/
H A Dprocess.c88 pr_err("Freezing of tasks %s after %d.%03d seconds "
104 pr_cont("(elapsed %d.%03d seconds) ", elapsed_msecs / 1000,
/linux-4.1.27/drivers/isdn/hysdn/
H A Dhysdn_pof.h19 /* max. timeout time in seconds
/linux-4.1.27/arch/x86/boot/
H A Dtty.c71 * seconds in BCD.
/linux-4.1.27/fs/nfsd/
H A Dstats.c14 * time (seconds) when nfsd thread usage above thresholds
/linux-4.1.27/include/linux/netfilter/
H A Dnf_conntrack_h323_asn1.h19 * takes only 3.9 seconds.
/linux-4.1.27/net/bridge/netfilter/
H A Debt_limit.c80 /* User avg in seconds * EBT_LIMIT_SCALE: convert to jiffies * 128. */ ebt_limit_mt_check()
/linux-4.1.27/tools/testing/selftests/powerpc/
H A Dharness.c46 /* Wake us up in timeout seconds */ run_test()
/linux-4.1.27/include/linux/extcon/
H A Dextcon-adc-jack.h53 * milli-seconds after the interrupt occurs. You may
/linux-4.1.27/drivers/ptp/
H A Dptp_clock.c58 s64 seconds; enqueue_external_timestamp() local
61 seconds = div_u64_rem(src->timestamp, 1000000000, &remainder); enqueue_external_timestamp()
67 dst->t.sec = seconds; enqueue_external_timestamp()
/linux-4.1.27/drivers/input/misc/
H A Dpalmas-pwrbutton.c130 error = of_property_read_u32(np, "ti,palmas-long-press-seconds", &val); palmas_pwron_params_ofinit()
141 "ti,palmas-pwron-debounce-milli-seconds", palmas_pwron_params_ofinit()
152 dev_info(dev, "h/w controlled shutdown duration=%d seconds\n", palmas_pwron_params_ofinit()
/linux-4.1.27/drivers/ata/
H A Dlibata-zpodd.c10 static int zpodd_poweroff_delay = 30; /* 30 seconds for power off delay */
12 MODULE_PARM_DESC(zpodd_poweroff_delay, "Poweroff delay for ZPODD in seconds");
168 * back to full power state every few seconds.
/linux-4.1.27/include/net/
H A Dbond_alb.h34 #define BOND_TLB_REBALANCE_INTERVAL 10 /* In seconds, periodic re-balancing.
39 #define BOND_ALB_LP_INTERVAL(bond) (bond->params.lp_interval) /* In seconds, periodic send of
60 #define RLB_UPDATE_DELAY (2*ALB_TIMER_TICKS_PER_SEC) /* 2 seconds */
H A Dnetrom.h46 #define NR_DEFAULT_T1 120000 /* Outstanding frames - 120 seconds */
47 #define NR_DEFAULT_T2 5000 /* Response delay - 5 seconds */
49 #define NR_DEFAULT_T4 180000 /* Busy Delay - 180 seconds */
/linux-4.1.27/drivers/infiniband/hw/ipath/
H A Dipath_stats.c48 * handle all the counters. word counters can wrap in about 20 seconds
76 * pre-empted.) An Opteron HT O read timeout is 4 seconds with ipath_snap_cntr()
137 * every 5 seconds. User processes are printed at close, but kernel doesn't
/linux-4.1.27/include/net/sctp/
H A Dconstants.h268 /* RTO.Initial - 3 seconds
270 * RTO.Max - 60 seconds
286 #define SCTP_DEFAULT_COOKIE_LIFE (60 * 1000) /* 60 seconds */
/linux-4.1.27/fs/ext4/
H A Dmmp.c123 * kmmpd will update the MMP sequence every s_mmp_update_interval seconds
166 * (s_mmp_update_interval * 60) seconds. kmmpd()
196 * seconds have not passed since writing. If that has happened kmmpd()
/linux-4.1.27/drivers/net/slip/
H A Dslip.h94 unsigned char keepalive; /* keepalive seconds */
/linux-4.1.27/drivers/staging/ft1000/ft1000-usb/
H A Dft1000_ioctl.h76 * in seconds
/linux-4.1.27/drivers/staging/iio/resolver/
H A Dad2s1200.c56 /* delay (6 * AD2S1200_TSCLK + 20) nano seconds */ ad2s1200_read_raw()
/linux-4.1.27/drivers/staging/lustre/lustre/include/linux/
H A Dobd.h90 LCONSOLE_WARN("%s:%d: lock %p was acquired by <%s:%d:%s:%d> for %lu seconds.\n", __client_obd_list_lock()
/linux-4.1.27/drivers/net/ethernet/arc/
H A Demac_mdio.c13 /* Number of seconds we wait for "MDIO complete" flag to appear */
/linux-4.1.27/arch/mips/include/asm/
H A Dmc146818-time.h50 * since we're only adjusting minutes and seconds, mc146818_set_rtc_mmss()
H A Dtimex.h34 * But this only means we'll force a reschedule every 8 seconds or so,
/linux-4.1.27/drivers/usb/storage/
H A Dfreecom.c53 u8 Timeout; /* Timeout in seconds. */
60 u8 Timeout; /* Timeout in seconds. */
269 /* The firmware will time-out commands after 20 seconds. Some commands freecom_transport()
459 /* wait 3 seconds */ init_freecom()
/linux-4.1.27/fs/nfs/
H A Dcache_lib.c31 MODULE_PARM_DESC(cache_getent_timeout, "Timeout (in seconds) after which "
/linux-4.1.27/include/linux/mtd/
H A Dxip.h56 * note 2: this should be able to cope with a few seconds without
/linux-4.1.27/arch/s390/include/asm/
H A Dcputime.h16 /* We want to use full resolution of the CPU timer: 2**-12 micro-seconds. */
/linux-4.1.27/arch/mips/sgi-ip22/
H A Dip22-time.c59 * for every 1/HZ seconds. We round off the nearest 1 MHz of master dosample()
/linux-4.1.27/arch/arm/plat-iop/
H A Dtime.c34 * Minimum clocksource/clockevent timer range in seconds
/linux-4.1.27/arch/arm/mach-gemini/
H A Dtime.c125 * Set up timer interrupt, and return the current time in seconds.
/linux-4.1.27/sound/drivers/
H A Dpcm-indirect2.c47 int seconds = (rec->lastbytetime - rec->firstbytetime) / HZ; snd_pcm_indirect2_stat() local
62 seconds, rec->bytes2hw / seconds, snd_pcm_indirect2_stat()
63 rec->bytes2hw / 2 / 2 / seconds); snd_pcm_indirect2_stat()
/linux-4.1.27/drivers/platform/x86/
H A Ddell-laptop.c77 * Ordered list of timeouts expressed in seconds.
891 * cbRES4, byte0 Maximum acceptable seconds value (0 if seconds not supported).
993 u8 seconds; member in struct:kbd_info
1068 info->seconds = (buffer->output[3] >> 0) & 0xFF; kbd_get_info()
1284 if (kbd_info.seconds > 63) kbd_init_info()
1285 kbd_info.seconds = 63; kbd_init_info()
1392 if (value > kbd_info.seconds) kbd_led_timeout_store()
1419 /* Convert value from current units to seconds */ kbd_led_timeout_store()
1439 if (value <= kbd_info.seconds && kbd_info.seconds) { kbd_led_timeout_store()
/linux-4.1.27/drivers/media/radio/wl128x/
H A Dfmdrv.h53 #define FM_DRV_TX_TIMEOUT (5*HZ) /* 5 seconds */
54 #define FM_DRV_RX_SEEK_TIMEOUT (20*HZ) /* 20 seconds */
/linux-4.1.27/drivers/scsi/megaraid/
H A Dmegaraid_mbox.h102 #define MBOX_RESET_WAIT 180 // wait these many seconds in reset
106 #define MBOX_SYNC_DELAY_200 200 // 200 micro-seconds
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/o2iblnd/
H A Do2iblnd_modparams.c53 MODULE_PARM_DESC(timeout, "timeout (seconds)");
101 MODULE_PARM_DESC(keepalive, "Idle time in seconds before sending a keepalive");
/linux-4.1.27/drivers/clocksource/
H A Dtimer-atmel-st.c127 * before 32 seconds have passed clkevt32k_mode()
157 * wouldn't trigger until 32 seconds later, after CRTR wraps. clkevt32k_next_event()

Completed in 4596 milliseconds

1234567