Home
last modified time | relevance | path

Searched refs:kps (Results 1 – 13 of 13) sorted by relevance

/linux-6.3-rc2/include/linux/
A Dkprobes.h422 int register_kprobes(struct kprobe **kps, int num);
423 void unregister_kprobes(struct kprobe **kps, int num);
474 static inline int register_kprobes(struct kprobe **kps, int num) in register_kprobes() argument
481 static inline void unregister_kprobes(struct kprobe **kps, int num) in unregister_kprobes() argument
/linux-6.3-rc2/drivers/clk/bcm/
A Dclk-nsp.c22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument
23 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
A Dclk-ns2.c22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument
23 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
A Dclk-cygnus.c30 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument
31 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
A Dclk-sr.c24 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, \ argument
25 .ki_shift = kis, .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, \
/linux-6.3-rc2/lib/
A Dtest_kprobes.c124 struct kprobe *kps[2] = {&kp, &kp2}; in test_kprobes() local
132 KUNIT_EXPECT_EQ(test, 0, register_kprobes(kps, 2)); in test_kprobes()
146 unregister_kprobes(kps, 2); in test_kprobes()
/linux-6.3-rc2/kernel/
A Dparams.c513 const struct kparam_string *kps = kp->str; in param_set_copystring() local
515 if (strlen(val)+1 > kps->maxlen) { in param_set_copystring()
517 kp->name, kps->maxlen-1); in param_set_copystring()
520 strcpy(kps->string, val); in param_set_copystring()
527 const struct kparam_string *kps = kp->str; in param_get_string() local
528 return scnprintf(buffer, PAGE_SIZE, "%s\n", kps->string); in param_get_string()
A Dkprobes.c1810 int register_kprobes(struct kprobe **kps, int num) in register_kprobes() argument
1817 ret = register_kprobe(kps[i]); in register_kprobes()
1820 unregister_kprobes(kps, i); in register_kprobes()
1834 void unregister_kprobes(struct kprobe **kps, int num) in unregister_kprobes() argument
1842 if (__unregister_kprobe_top(kps[i]) < 0) in unregister_kprobes()
1843 kps[i]->addr = NULL; in unregister_kprobes()
1848 if (kps[i]->addr) in unregister_kprobes()
1849 __unregister_kprobe_bottom(kps[i]); in unregister_kprobes()
/linux-6.3-rc2/kernel/power/
A Dhibernate.c264 unsigned int kps; in swsusp_show_speed() local
272 kps = (k * 100) / centisecs; in swsusp_show_speed()
274 msg, k, centisecs / 100, centisecs % 100, kps / 1000, in swsusp_show_speed()
275 (kps % 1000) / 10); in swsusp_show_speed()
/linux-6.3-rc2/drivers/tty/serial/
A Dkgdboc.c35 static struct kparam_string kps = { variable
627 module_param_call(kgdboc, param_set_kgdboc_var, param_get_string, &kps, 0644);
/linux-6.3-rc2/drivers/misc/
A Dkgdbts.c157 static struct kparam_string kps = { variable
1190 module_param_call(kgdbts, param_set_kgdbts_var, param_get_string, &kps, 0644);
/linux-6.3-rc2/Documentation/trace/
A Dkprobes.rst476 int register_kprobes(struct kprobe **kps, int num);
484 - kps/rps: an array of pointers to ``*probe`` data structures
498 void unregister_kprobes(struct kprobe **kps, int num);
/linux-6.3-rc2/arch/x86/kvm/
A Dx86.c6086 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state; in kvm_vm_ioctl_get_pit() local
6088 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels)); in kvm_vm_ioctl_get_pit()
6090 mutex_lock(&kps->lock); in kvm_vm_ioctl_get_pit()
6091 memcpy(ps, &kps->channels, sizeof(*ps)); in kvm_vm_ioctl_get_pit()
6092 mutex_unlock(&kps->lock); in kvm_vm_ioctl_get_pit()

Completed in 69 milliseconds