Home
last modified time | relevance | path

Searched refs:ips (Results 1 – 25 of 62) sorted by relevance

123

/linux/drivers/platform/x86/
H A Dintel_ips.c229 #define thm_readb(off) readb(ips->regmap + (off))
230 #define thm_readw(off) readw(ips->regmap + (off))
231 #define thm_readl(off) readl(ips->regmap + (off))
232 #define thm_readq(off) readq(ips->regmap + (off))
234 #define thm_writeb(off, val) writeb((val), ips->regmap + (off))
235 #define thm_writew(off, val) writew((val), ips->regmap + (off))
236 #define thm_writel(off, val) writel((val), ips->regmap + (off))
336 ips_gpu_turbo_enabled(struct ips_driver *ips);
347 static bool ips_cpu_busy(struct ips_driver *ips) in ips_cpu_busy() argument
365 static void ips_cpu_raise(struct ips_driver *ips) in ips_cpu_raise() argument
[all …]
/linux/tools/testing/selftests/net/tcp_ao/
H A Dbench-lookups.c16 static void gen_test_ips(union tcp_addr *ips, size_t ips_nr, bool use_rand) in gen_test_ips() argument
26 ips[i] = gen_tcp_addr(net, 2 * i + 1); in gen_test_ips()
32 ips[i] = gen_tcp_addr(net, r); in gen_test_ips()
35 if (!memcmp(&ips[i], &ips[j], sizeof(union tcp_addr))) { in gen_test_ips()
43 static void test_add_routes(union tcp_addr *ips, size_t ips_nr) in test_add_routes() argument
48 union tcp_addr *p = (union tcp_addr *)&ips[i]; in test_add_routes()
57 static void server_apply_keys(int lsk, union tcp_addr *ips, size_t ips_nr) in server_apply_keys() argument
62 union tcp_addr *p = (union tcp_addr *)&ips[i]; in server_apply_keys()
146 union tcp_addr *ips, size_t ips_nr, in bench_delete() argument
159 p = (union tcp_addr *)&ips[0]; in bench_delete()
[all …]
/linux/tools/testing/selftests/bpf/prog_tests/
H A Duretprobe_stack.c78 static void validate_stack(__u64 *ips, int stack_len, int cnt, ...) in validate_stack() argument
98 if (ips[i] >= targets[j].start && ips[i] < targets[j].stop) in validate_stack()
102 printf("ENTRY #%d: %#lx (in target_%d)\n", i, (long)ips[i], j); in validate_stack()
103 } else if (ips[i] >= caller.start && ips[i] < caller.stop) { in validate_stack()
104 printf("ENTRY #%d: %#lx (in caller)\n", i, (long)ips[i]); in validate_stack()
106 printf("ENTRY #%d: %#lx\n", i, (long)ips[i]); in validate_stack()
117 ASSERT_GE(ips[i], t->start, "addr_start"); in validate_stack()
118 ASSERT_LT(ips[i], t->stop, "addr_stop"); in validate_stack()
/linux/tools/testing/selftests/wireguard/
H A Dnetns.sh105 allowed-ips 192.168.241.2/32,fd00::2/128
111 allowed-ips 192.168.241.1/32,fd00::1/128
225 n1 wg set wg0 peer "$pub2" allowed-ips 192.168.241.0/24
233 n1 wg set wg0 peer "$more_specific_key" allowed-ips 192.168.241.2/32
245 n1 wg set wg0 private-key <(echo "$key1") peer "$pub2" preshared-key <(echo "$psk") allowed-ips 192.168.241.2/32 endpoint 127.0.0.1:2
246 n2 wg set wg0 private-key <(echo "$key2") listen-port 2 peer "$pub1" preshared-key <(echo "$psk") allowed-ips 192.168.241.1/32
249 n2 wg set wg0 peer "$pub3" preshared-key <(echo "$psk") allowed-ips 192.168.241.1/32 peer "$pub1" remove
258 n1 wg set wg0 private-key <(echo "$key1") peer "$pub2" preshared-key <(echo "$psk") allowed-ips fd00::5:2/128 endpoint 127.0.0.1:2
259 n2 wg set wg0 private-key <(echo "$key2") listen-port 2 peer "$pub1" preshared-key <(echo "$psk") allowed-ips fd00::5:1/128 endpoint 127.212.121.99:9998
268 n1 wg set wg1 listen-port 5 private-key <(echo "$key3") peer "$pub4" allowed-ips 192.16
[all...]
/linux/drivers/gpu/drm/i915/gt/
H A Dintel_rps.c293 rps->ips.m = cparams[i].m; in gen5_rps_init()
294 rps->ips.c = cparams[i].c; in gen5_rps_init()
315 __ips_chipset_val(struct intel_ips *ips) in __ips_chipset_val() argument
318 rps_to_uncore(container_of(ips, struct intel_rps, ips)); in __ips_chipset_val()
331 dt = now - ips->last_time1; in __ips_chipset_val()
333 return ips->chipset_power; in __ips_chipset_val()
340 delta = total - ips->last_count1; in __ips_chipset_val()
342 result = div_u64(div_u64(ips->m * delta, dt) + ips->c, 10); in __ips_chipset_val()
344 ips->last_count1 = total; in __ips_chipset_val()
345 ips->last_time1 = now; in __ips_chipset_val()
[all …]
H A Dintel_rps_types.h114 struct intel_ips ips; member
/linux/kernel/bpf/
H A Dstackmap.c235 u64 *ips; in __bpf_get_stackid() local
244 ips = trace->ip + skip; in __bpf_get_stackid()
245 hash = jhash2((u32 *)ips, trace_len / sizeof(u32), 0); in __bpf_get_stackid()
265 id_offs[i].ip = ips[i]; in __bpf_get_stackid()
279 memcmp(bucket->data, ips, trace_len) == 0) in __bpf_get_stackid()
288 memcpy(new_bucket->data, ips, trace_len); in __bpf_get_stackid()
417 u64 *ips; in __bpf_get_stack() local
467 ips = trace->ip + skip; in __bpf_get_stack()
473 id_offs[i].ip = ips[i]; in __bpf_get_stack()
475 memcpy(buf, ips, copy_len); in __bpf_get_stack()
/linux/tools/perf/util/
H A Dunwind-libunwind-local.c739 unw_word_t ips[max_stack]; in get_entries() local
749 ips[i++] = (unw_word_t) val; in get_entries()
767 unw_get_reg(&c, UNW_REG_IP, &ips[i]); in get_entries()
777 --ips[i]; in get_entries()
793 ret = ips[j] ? entry(ips[j], ui->thread, cb, arg) : 0; in get_entries()
H A Dthread-stack.c535 chain->ips[0] = context; in thread_stack__sample()
536 chain->ips[1] = ip; in thread_stack__sample()
551 chain->ips[i++] = context; in thread_stack__sample()
554 chain->ips[i] = ip; in thread_stack__sample()
602 chain->ips[nr++] = context; in thread_stack__sample_late()
605 chain->ips[nr] = ip; in thread_stack__sample_late()
611 chain->ips[0] = sample_context; in thread_stack__sample_late()
612 chain->ips[1] = sample_ip; in thread_stack__sample_late()
H A Darm64-frame-pointer-unwind-support.c48 sample->user_regs.cache_regs[PERF_REG_ARM64_PC] = sample->callchain->ips[usr_idx+1]; in get_leaf_frame_caller_aarch64()
/linux/arch/powerpc/boot/dts/
H A Dmpc5121.dtsi96 bus-frequency = <66000000>; /* 66 MHz ips bus */
164 clock-names = "ipg", "ips", "sys", "ref", "mclk";
176 clock-names = "ipg", "ips", "sys", "ref", "mclk";
250 clock-names = "ipg", "ips", "sys", "ref", "mclk";
262 clock-names = "ipg", "ips", "sys", "ref", "mclk";
H A Dmpc5125twr.dts72 bus-frequency = <66000000>; // 66 MHz ips bus
134 clock-names = "ipg", "ips", "sys", "ref", "mclk";
146 clock-names = "ipg", "ips", "sys", "ref", "mclk";
/linux/Documentation/scsi/
H A Dscsi-parameters.rst43 ips= [HW,SCSI] Adaptec / IBM ServeRAID controller
44 See header of drivers/scsi/ips.c.
/linux/fs/xfs/
H A Dxfs_inode.c383 struct xfs_inode **ips, in xfs_lock_inodes() argument
400 ASSERT(ips && inodes >= 2 && inodes <= 5); in xfs_lock_inodes()
419 ASSERT(ips[i]); in xfs_lock_inodes()
421 if (i && (ips[i] == ips[i - 1])) /* Already locked */ in xfs_lock_inodes()
430 lp = &ips[j]->i_itemp->ili_item; in xfs_lock_inodes()
443 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i)); in xfs_lock_inodes()
449 if (xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) in xfs_lock_inodes()
463 if (j != (i - 1) && ips[j] == ips[j + 1]) in xfs_lock_inodes()
466 xfs_iunlock(ips[j], lock_mode); in xfs_lock_inodes()
/linux/Documentation/trace/
H A Dfprobe.rst50 unsigned long ips[] = { 0x.... };
52 register_fprobe_ips(&fp, ips, ARRAY_SIZE(ips));
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192de/
H A Dsw.c352 module_param_named(ips, rtl92de_mod_params.inactiveps, bool, 0444);
358 MODULE_PARM_DESC(ips, "Set to 0 to not use link power save (default 1)\n");
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723be/
H A Dsw.c364 module_param_named(ips, rtl8723be_mod_params.inactiveps, bool, 0444);
373 MODULE_PARM_DESC(ips, "Set to 0 to not use link power save (default 1)\n");
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
H A Dsw.c348 module_param_named(ips, rtl92ce_mod_params.inactiveps, bool, 0444);
353 MODULE_PARM_DESC(ips, "Set to 0 to not use link power save (default 1)\n");
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/
H A Dsw.c363 module_param_named(ips, rtl88ee_mod_params.inactiveps, bool, 0444);
371 MODULE_PARM_DESC(ips, "Set to 0 to not use link power save (default 1)\n");
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
H A Dsw.c349 module_param_named(ips, rtl92ee_mod_params.inactiveps, bool, 0444);
358 MODULE_PARM_DESC(ips, "Set to 0 to not use link power save (default 1)\n");
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
H A Dsw.c395 module_param_named(ips, rtl92se_mod_params.inactiveps, bool, 0444);
400 MODULE_PARM_DESC(ips, "Set to 0 to not use link power save (default 1)\n");
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192du/
H A Dsw.c339 module_param_named(ips, rtl92du_mod_params.inactiveps, bool, 0444);
343 MODULE_PARM_DESC(ips, "Set to 0 to not use link power save (default 0)\n");
/linux/Documentation/translations/zh_CN/admin-guide/
H A Dtainted-kernels.rst124 上的scsi/snic,非x86/x86_64/itanium上的scsi/ips,已经损坏了arm64上
/linux/Documentation/translations/zh_TW/admin-guide/
H A Dtainted-kernels.rst127 上的scsi/snic,非x86/x86_64/itanium上的scsi/ips,已經損壞了arm64上
/linux/tools/perf/arch/powerpc/util/
H A Dskip-callchain-idx.c254 ip = chain->ips[1]; in arch_skip_callchain_idx()

123