Searched refs:kps (Results 1 - 12 of 12) sorted by relevance

/linux-master/drivers/clk/bcm/
H A Dclk-nsp.c22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\
23 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
H A Dclk-ns2.c22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\
23 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
H A Dclk-cygnus.c30 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\
31 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
H A Dclk-sr.c24 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, \
25 .ki_shift = kis, .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, \
/linux-master/include/linux/
H A Dkprobes.h412 int register_kprobes(struct kprobe **kps, int num);
413 void unregister_kprobes(struct kprobe **kps, int num);
468 static inline int register_kprobes(struct kprobe **kps, int num) argument
475 static inline void unregister_kprobes(struct kprobe **kps, int num) argument
/linux-master/lib/
H A Dtest_kprobes.c124 struct kprobe *kps[2] = {&kp, &kp2}; local
132 KUNIT_EXPECT_EQ(test, 0, register_kprobes(kps, 2));
146 unregister_kprobes(kps, 2);
/linux-master/kernel/
H A Dparams.c515 const struct kparam_string *kps = kp->str; local
517 if (strnlen(val, kps->maxlen) == kps->maxlen) {
519 kp->name, kps->maxlen-1);
522 strcpy(kps->string, val);
529 const struct kparam_string *kps = kp->str; local
530 return scnprintf(buffer, PAGE_SIZE, "%s\n", kps->string);
H A Dkprobes.c1828 int register_kprobes(struct kprobe **kps, int num) argument
1835 ret = register_kprobe(kps[i]);
1838 unregister_kprobes(kps, i);
1852 void unregister_kprobes(struct kprobe **kps, int num) argument
1860 if (__unregister_kprobe_top(kps[i]) < 0)
1861 kps[i]->addr = NULL;
1866 if (kps[i]->addr)
1867 __unregister_kprobe_bottom(kps[i]);
/linux-master/drivers/tty/serial/
H A Dkgdboc.c35 static struct kparam_string kps = { variable in typeref:struct:kparam_string
627 module_param_call(kgdboc, param_set_kgdboc_var, param_get_string, &kps, 0644);
/linux-master/kernel/power/
H A Dhibernate.c274 unsigned int kps; local
282 kps = (k * 100) / centisecs;
284 msg, k, centisecs / 100, centisecs % 100, kps / 1000,
285 (kps % 1000) / 10);
/linux-master/drivers/misc/
H A Dkgdbts.c157 static struct kparam_string kps = { variable in typeref:struct:kparam_string
1190 module_param_call(kgdbts, param_set_kgdbts_var, param_get_string, &kps, 0644);
/linux-master/arch/x86/kvm/
H A Dx86.c6399 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state; local
6401 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
6403 mutex_lock(&kps->lock);
6404 memcpy(ps, &kps->channels, sizeof(*ps));
6405 mutex_unlock(&kps->lock);

Completed in 198 milliseconds