Searched refs:kts (Results 1 – 7 of 7) sorted by relevance
/linux-6.6.21/drivers/block/aoe/ |
D | aoenet.c | 37 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()
|
D | aoecmd.c | 50 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-6.6.21/kernel/time/ |
D | time.c | 874 struct __kernel_timespec kts; in get_timespec64() local 877 ret = copy_from_user(&kts, uts, sizeof(kts)); in get_timespec64() 881 ts->tv_sec = kts.tv_sec; in get_timespec64() 885 kts.tv_nsec &= 0xFFFFFFFFUL; in get_timespec64() 888 ts->tv_nsec = kts.tv_nsec; in get_timespec64() 905 struct __kernel_timespec kts = { in put_timespec64() local 910 return copy_to_user(uts, &kts, sizeof(kts)) ? -EFAULT : 0; in put_timespec64()
|
/linux-6.6.21/arch/alpha/kernel/ |
D | osf_sys.c | 986 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-6.6.21/net/netfilter/ |
D | nfnetlink_log.c | 602 struct timespec64 kts = ktime_to_timespec64(skb_tstamp_cond(skb, true)); in __build_packet_message() local 604 ts.sec = cpu_to_be64(kts.tv_sec); in __build_packet_message() 605 ts.usec = cpu_to_be64(kts.tv_nsec / NSEC_PER_USEC); in __build_packet_message()
|
D | nfnetlink_queue.c | 607 struct timespec64 kts = ktime_to_timespec64(tstamp); in nfqnl_build_packet_message() local 609 ts.sec = cpu_to_be64(kts.tv_sec); in nfqnl_build_packet_message() 610 ts.usec = cpu_to_be64(kts.tv_nsec / NSEC_PER_USEC); in nfqnl_build_packet_message()
|
/linux-6.6.21/net/ipv4/ |
D | tcp.c | 2235 struct __kernel_timespec kts = { in tcp_recv_timestamp() local 2240 sizeof(kts), &kts); in tcp_recv_timestamp()
|