Home
last modified time | relevance | path

Searched refs:kts (Results 1 – 7 of 7) sorted by relevance

/linux-5.19.10/drivers/block/aoe/
Daoenet.c37 static struct ktstate kts; variable
205 kts.lock = &txlock; in aoenet_init()
206 kts.fn = tx; in aoenet_init()
207 kts.waitq = &txwq; in aoenet_init()
208 kts.id = 0; in aoenet_init()
209 snprintf(kts.name, sizeof(kts.name), "aoe_tx%d", kts.id); in aoenet_init()
210 if (aoe_ktstart(&kts)) in aoenet_init()
219 aoe_ktstop(&kts); in aoenet_exit()
Daoecmd.c50 static struct ktstate *kts; variable
1204 if (!kts[actual_id].active) { in ktio()
1207 if (!kts[actual_id].active in ktio()
1208 && aoe_ktstart(&kts[actual_id]) == 0) in ktio()
1209 kts[actual_id].active = 1; in ktio()
1277 if (!kts[id].active) { in ktcomplete()
1636 if (kts[i].active) in aoe_flush_iocq()
1691 kts = kcalloc(ncpus, sizeof(struct ktstate), GFP_KERNEL); in aoecmd_init()
1692 if (!kts) { in aoecmd_init()
1707 snprintf(kts[i].name, sizeof(kts[i].name), "aoe_ktio%d", i); in aoecmd_init()
[all …]
/linux-5.19.10/kernel/time/
Dtime.c784 struct __kernel_timespec kts; in get_timespec64() local
787 ret = copy_from_user(&kts, uts, sizeof(kts)); in get_timespec64()
791 ts->tv_sec = kts.tv_sec; in get_timespec64()
795 kts.tv_nsec &= 0xFFFFFFFFUL; in get_timespec64()
798 ts->tv_nsec = kts.tv_nsec; in get_timespec64()
807 struct __kernel_timespec kts = { in put_timespec64() local
812 return copy_to_user(uts, &kts, sizeof(kts)) ? -EFAULT : 0; in put_timespec64()
/linux-5.19.10/arch/alpha/kernel/
Dosf_sys.c986 struct timespec64 kts; in SYSCALL_DEFINE2() local
988 ktime_get_real_ts64(&kts); in SYSCALL_DEFINE2()
989 if (put_tv32(tv, &kts)) in SYSCALL_DEFINE2()
1002 struct timespec64 kts; in SYSCALL_DEFINE2() local
1006 if (get_tv32(&kts, tv)) in SYSCALL_DEFINE2()
1014 return do_sys_settimeofday64(tv ? &kts : NULL, tz ? &ktz : NULL); in SYSCALL_DEFINE2()
/linux-5.19.10/net/netfilter/
Dnfnetlink_log.c595 struct timespec64 kts = ktime_to_timespec64(tstamp); in __build_packet_message() local
596 ts.sec = cpu_to_be64(kts.tv_sec); in __build_packet_message()
597 ts.usec = cpu_to_be64(kts.tv_nsec / NSEC_PER_USEC); in __build_packet_message()
Dnfnetlink_queue.c589 struct timespec64 kts = ktime_to_timespec64(tstamp); in nfqnl_build_packet_message() local
591 ts.sec = cpu_to_be64(kts.tv_sec); in nfqnl_build_packet_message()
592 ts.usec = cpu_to_be64(kts.tv_nsec / NSEC_PER_USEC); in nfqnl_build_packet_message()
/linux-5.19.10/net/ipv4/
Dtcp.c2240 struct __kernel_timespec kts = { in tcp_recv_timestamp() local
2245 sizeof(kts), &kts); in tcp_recv_timestamp()