Searched refs:ut (Results 1 – 11 of 11) sorted by relevance
/linux-6.3-rc2/tools/testing/selftests/amd-pstate/ |
A D | basic.sh | 27 if ! /sbin/modprobe -q -n amd-pstate-ut; then 31 if /sbin/modprobe -q amd-pstate-ut; then 32 /sbin/modprobe -q -r amd-pstate-ut
|
/linux-6.3-rc2/fs/hfs/ |
A D | hfs_fs.h | 260 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()
|
/linux-6.3-rc2/kernel/sched/ |
A D | cputime.c | 457 u64 *ut, u64 *st) in cputime_adjust() argument 459 *ut = curr->utime; in cputime_adjust() 463 void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in task_cputime_adjusted() argument 465 *ut = p->utime; in task_cputime_adjusted() 470 void thread_group_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in thread_group_cputime_adjusted() argument 476 *ut = cputime.utime; in thread_group_cputime_adjusted() 559 u64 *ut, u64 *st) in cputime_adjust() argument 625 *ut = prev->utime; in cputime_adjust() 630 void task_cputime_adjusted(struct task_struct *p, u64 *ut, u64 *st) in task_cputime_adjusted() argument 638 cputime_adjust(&cputime, &p->prev_cputime, ut, st); in task_cputime_adjusted() [all …]
|
/linux-6.3-rc2/include/linux/sched/ |
A D | cputime.h | 47 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);
|
/linux-6.3-rc2/drivers/ata/ |
A D | pata_via.c | 254 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()
|
/linux-6.3-rc2/drivers/vdpa/mlx5/net/ |
A D | debug.c | 98 static const char *ut = "untagged"; in mlx5_vdpa_add_rx_counters() local 108 strcpy(vidstr, ut); in mlx5_vdpa_add_rx_counters()
|
/linux-6.3-rc2/net/xfrm/ |
A D | xfrm_user.c | 1720 t->reqid = ut->reqid; in copy_templates() 1721 t->mode = ut->mode; in copy_templates() 1722 t->share = ut->share; in copy_templates() 1724 t->aalgos = ut->aalgos; in copy_templates() 1725 t->ealgos = ut->ealgos; in copy_templates() 1726 t->calgos = ut->calgos; in copy_templates() 1754 if (!ut[i].family) in validate_tmpl() 1755 ut[i].family = family; in validate_tmpl() 1757 switch (ut[i].mode) { in validate_tmpl() 1775 switch (ut[i].family) { in validate_tmpl() [all …]
|
/linux-6.3-rc2/fs/hfsplus/ |
A D | hfsplus_fs.h | 545 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()
|
/linux-6.3-rc2/drivers/clk/baikal-t1/ |
A D | ccu-pll.c | 91 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()
|
/linux-6.3-rc2/drivers/cpufreq/ |
A D | Makefile | 33 obj-$(CONFIG_X86_AMD_PSTATE_UT) += amd-pstate-ut.o
|
/linux-6.3-rc2/Documentation/admin-guide/pm/ |
A D | amd-pstate.rst | 468 ``amd-pstate-ut`` is a test module for testing the ``amd-pstate`` driver. 523 We create ``amd-pstate-ut`` module and tie it into kselftest.(for
|
Completed in 25 milliseconds