Home
last modified time | relevance | path

Searched refs:ut (Results 1 - 18 of 18) sorted by relevance

/kernel/linux/linux-6.6/tools/testing/selftests/amd-pstate/
H A Dbasic.sh4 # amd-pstate-ut is a test module for testing the amd-pstate driver.
24 printf "*** Running AMD P-state ut ***"
27 if ! /sbin/modprobe -q -n amd-pstate-ut; then
28 echo "amd-pstate-ut: module amd-pstate-ut is not found [SKIP]"
31 if /sbin/modprobe -q amd-pstate-ut; then
32 /sbin/modprobe -q -r amd-pstate-ut
/kernel/linux/linux-5.10/fs/hfs/
H A Dhfs_fs.h257 time64_t ut = (u32)(be32_to_cpu(mt) - HFS_UTC_OFFSET); in __hfs_m_to_utime() local
259 return ut + sys_tz.tz_minuteswest * 60; in __hfs_m_to_utime()
262 static inline __be32 __hfs_u_to_mtime(time64_t ut) in __hfs_u_to_mtime() argument
264 ut -= sys_tz.tz_minuteswest * 60; in __hfs_u_to_mtime()
266 return cpu_to_be32(lower_32_bits(ut) + HFS_UTC_OFFSET); in __hfs_u_to_mtime()
/kernel/linux/linux-6.6/fs/hfs/
H A Dhfs_fs.h260 time64_t ut = (u32)(be32_to_cpu(mt) - HFS_UTC_OFFSET); in __hfs_m_to_utime() local
262 return ut + sys_tz.tz_minuteswest * 60; in __hfs_m_to_utime()
265 static inline __be32 __hfs_u_to_mtime(time64_t ut) in __hfs_u_to_mtime() argument
267 ut -= sys_tz.tz_minuteswest * 60; in __hfs_u_to_mtime()
269 return cpu_to_be32(lower_32_bits(ut) + HFS_UTC_OFFSET); in __hfs_u_to_mtime()
/kernel/linux/linux-5.10/include/linux/sched/
H A Dcputime.h55 extern void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
56 extern void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
58 u64 *ut, u64 *st);
/kernel/linux/linux-6.6/include/linux/sched/
H A Dcputime.h47 extern void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
48 extern void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st);
50 u64 *ut, u64 *st);
/kernel/linux/linux-5.10/kernel/sched/
H A Dcputime.c456 u64 *ut, u64 *st) in cputime_adjust()
458 *ut = curr->utime; in cputime_adjust()
462 void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in task_cputime_adjusted() argument
464 *ut = p->utime; in task_cputime_adjusted()
469 void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in thread_group_cputime_adjusted() argument
475 *ut = cputime.utime; in thread_group_cputime_adjusted()
558 u64 *ut, u64 *st) in cputime_adjust()
624 *ut = prev->utime; in cputime_adjust()
629 void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in task_cputime_adjusted() argument
636 cputime_adjust(&cputime, &p->prev_cputime, ut, s in task_cputime_adjusted()
455 cputime_adjust(struct task_cputime *curr, struct prev_cputime *prev, u64 *ut, u64 *st) cputime_adjust() argument
557 cputime_adjust(struct task_cputime *curr, struct prev_cputime *prev, u64 *ut, u64 *st) cputime_adjust() argument
640 thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) thread_group_cputime_adjusted() argument
[all...]
/kernel/linux/linux-6.6/kernel/sched/
H A Dcputime.c472 u64 *ut, u64 *st) in cputime_adjust()
474 *ut = curr->utime; in cputime_adjust()
478 void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in task_cputime_adjusted() argument
480 *ut = p->utime; in task_cputime_adjusted()
485 void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in thread_group_cputime_adjusted() argument
491 *ut = cputime.utime; in thread_group_cputime_adjusted()
574 u64 *ut, u64 *st) in cputime_adjust()
640 *ut = prev->utime; in cputime_adjust()
645 void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in task_cputime_adjusted() argument
653 cputime_adjust(&cputime, &p->prev_cputime, ut, s in task_cputime_adjusted()
471 cputime_adjust(struct task_cputime *curr, struct prev_cputime *prev, u64 *ut, u64 *st) cputime_adjust() argument
573 cputime_adjust(struct task_cputime *curr, struct prev_cputime *prev, u64 *ut, u64 *st) cputime_adjust() argument
657 thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) thread_group_cputime_adjusted() argument
[all...]
/kernel/linux/linux-5.10/net/xfrm/
H A Dxfrm_user.c1524 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut, in copy_templates() argument
1530 for (i = 0; i < nr; i++, ut++) { in copy_templates()
1533 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id)); in copy_templates()
1534 memcpy(&t->saddr, &ut->saddr, in copy_templates()
1536 t->reqid = ut->reqid; in copy_templates()
1537 t->mode = ut->mode; in copy_templates()
1538 t->share = ut->share; in copy_templates()
1539 t->optional = ut->optional; in copy_templates()
1540 t->aalgos = ut->aalgos; in copy_templates()
1541 t->ealgos = ut in copy_templates()
1549 validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family) validate_tmpl() argument
2426 struct xfrm_user_tmpl *ut; xfrm_add_acquire() local
3196 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1); xfrm_compile_policy() local
[all...]
/kernel/linux/linux-5.10/drivers/ata/
H A Dpata_via.c254 int ut; in via_do_set_mode() local
298 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 5) - 2)) : 0x03; in via_do_set_mode()
301 ut = t.udma ? (0xe8 | (clamp_val(t.udma, 2, 9) - 2)) : 0x0f; in via_do_set_mode()
304 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 9) - 2)) : 0x07; in via_do_set_mode()
307 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 9) - 2)) : 0x07; in via_do_set_mode()
323 udma_etc |= ut; in via_do_set_mode()
/kernel/linux/linux-6.6/drivers/ata/
H A Dpata_via.c254 int ut; in via_do_set_mode() local
298 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 5) - 2)) : 0x03; in via_do_set_mode()
301 ut = t.udma ? (0xe8 | (clamp_val(t.udma, 2, 9) - 2)) : 0x0f; in via_do_set_mode()
304 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 9) - 2)) : 0x07; in via_do_set_mode()
307 ut = t.udma ? (0xe0 | (clamp_val(t.udma, 2, 9) - 2)) : 0x07; in via_do_set_mode()
323 udma_etc |= ut; in via_do_set_mode()
/kernel/linux/linux-6.6/drivers/vdpa/mlx5/net/
H A Ddebug.c98 static const char *ut = "untagged"; in mlx5_vdpa_add_rx_counters() local
108 strcpy(vidstr, ut); in mlx5_vdpa_add_rx_counters()
/kernel/linux/linux-5.10/fs/hfsplus/
H A Dhfsplus_fs.h550 time64_t ut = (u32)(be32_to_cpu(mt) - HFSPLUS_UTC_OFFSET); in __hfsp_mt2ut() local
552 return ut; in __hfsp_mt2ut()
555 static inline __be32 __hfsp_ut2mt(time64_t ut) in __hfsp_ut2mt() argument
557 return cpu_to_be32(lower_32_bits(ut) + HFSPLUS_UTC_OFFSET); in __hfsp_ut2mt()
/kernel/linux/linux-6.6/fs/hfsplus/
H A Dhfsplus_fs.h545 time64_t ut = (u32)(be32_to_cpu(mt) - HFSPLUS_UTC_OFFSET); in __hfsp_mt2ut() local
547 return ut; in __hfsp_mt2ut()
550 static inline __be32 __hfsp_ut2mt(time64_t ut) in __hfsp_ut2mt() argument
552 return cpu_to_be32(lower_32_bits(ut) + HFSPLUS_UTC_OFFSET); in __hfsp_ut2mt()
/kernel/linux/linux-6.6/net/xfrm/
H A Dxfrm_user.c1756 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut, in copy_templates() argument
1762 for (i = 0; i < nr; i++, ut++) { in copy_templates()
1765 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id)); in copy_templates()
1766 memcpy(&t->saddr, &ut->saddr, in copy_templates()
1768 t->reqid = ut->reqid; in copy_templates()
1769 t->mode = ut->mode; in copy_templates()
1770 t->share = ut->share; in copy_templates()
1771 t->optional = ut->optional; in copy_templates()
1772 t->aalgos = ut->aalgos; in copy_templates()
1773 t->ealgos = ut in copy_templates()
1781 validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family, int dir, struct netlink_ext_ack *extack) validate_tmpl() argument
2708 struct xfrm_user_tmpl *ut; xfrm_add_acquire() local
3487 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1); xfrm_compile_policy() local
[all...]
/kernel/linux/linux-5.10/drivers/clk/baikal-t1/
H A Dccu-pll.c91 unsigned long ud, ut; in ccu_pll_reset() local
95 ut = ud * CCU_PLL_LOCK_CHECK_RETRIES; in ccu_pll_reset()
101 val & CCU_PLL_CTL_LOCK, ud, ut); in ccu_pll_reset()
/kernel/linux/linux-6.6/drivers/clk/baikal-t1/
H A Dccu-pll.c91 unsigned long ud, ut; in ccu_pll_reset() local
95 ut = ud * CCU_PLL_LOCK_CHECK_RETRIES; in ccu_pll_reset()
101 val & CCU_PLL_CTL_LOCK, ud, ut); in ccu_pll_reset()
/kernel/linux/common_modules/ucollection/
H A Ducollection_process_cpu.c65 static void get_process_usage_cputime(struct task_struct *task, unsigned long long *ut, unsigned long long *st) in get_process_usage_cputime() argument
72 *ut = utime; in get_process_usage_cputime()
/kernel/linux/linux-6.6/drivers/cpufreq/
H A DMakefile33 obj-$(CONFIG_X86_AMD_PSTATE_UT) += amd-pstate-ut.o

Completed in 19 milliseconds