Home
last modified time | relevance | path

Searched refs:paths (Results 1 – 25 of 174) sorted by relevance

1234567

/Linux-v5.4/drivers/thunderbolt/
Dtunnel.c65 tunnel->paths = kcalloc(npaths, sizeof(tunnel->paths[0]), GFP_KERNEL); in tb_tunnel_alloc()
66 if (!tunnel->paths) { in tb_tunnel_alloc()
143 tunnel->paths[TB_PCI_PATH_UP] = path; in tb_tunnel_discover_pci()
144 tb_pci_init_path(tunnel->paths[TB_PCI_PATH_UP]); in tb_tunnel_discover_pci()
150 tunnel->paths[TB_PCI_PATH_DOWN] = path; in tb_tunnel_discover_pci()
151 tb_pci_init_path(tunnel->paths[TB_PCI_PATH_DOWN]); in tb_tunnel_discover_pci()
214 tunnel->paths[TB_PCI_PATH_DOWN] = path; in tb_tunnel_alloc_pci()
223 tunnel->paths[TB_PCI_PATH_UP] = path; in tb_tunnel_alloc_pci()
268 struct tb_path **paths; in tb_dp_activate() local
271 paths = tunnel->paths; in tb_dp_activate()
[all …]
Dtunnel.h37 struct tb_path **paths; member
/Linux-v5.4/tools/perf/ui/browsers/
Dscripts.c28 char **paths; member
53 if (asprintf(&c->paths[c->index], in add_script_option()
73 if (asprintf(&c->paths[c->index], "%s %s", value, in scripts_config()
88 char *buf, *paths[SCRIPT_MAX_NO], *names[SCRIPT_MAX_NO]; in list_scripts() local
96 .paths = paths, in list_scripts()
122 paths[i] = names[i] + SCRIPT_NAMELEN; in list_scripts()
125 num = find_scripts(names + max_std, paths + max_std, SCRIPT_MAX_NO - max_std, in list_scripts()
145 strcpy(script_name, paths[choice]); in list_scripts()
152 zfree(&paths[i]); in list_scripts()
/Linux-v5.4/Documentation/admin-guide/device-mapper/
Ddm-service-time.rst11 The performance value is a relative throughput value among all paths
26 among all paths in the path-group.
30 other paths having a positive value are available.
43 among all paths in the path-group.
59 1. If the paths have the same 'relative_throughput', skip
62 2. If the paths have the same 'in-flight-size', skip the division
65 3. If some paths have non-zero 'relative_throughput' and others
66 have zero 'relative_throughput', ignore those paths with zero
78 In case that 2 paths (sda and sdb) are used with repeat_count == 128
Dswitch.rst7 paths. The path used for any specific region can be switched
38 robin algorithm to send I/O across all paths and let the storage array
52 Lower Tier - Load balance amongst paths to a particular member.
55 Each of these multipath devices contains the set of paths directly to
57 selectors to load balance amongst these paths. We also build a
58 non-preferred priority group containing paths to other array members for
73 The number of paths across which to distribute the I/O.
77 to any of the available paths.
97 which paths.
/Linux-v5.4/tools/perf/
DBuild36 paths += -DPERF_HTML_PATH="BUILD_STR($(htmldir_SQ))"
37 paths += -DPERF_INFO_PATH="BUILD_STR($(infodir_SQ))"
38 paths += -DPERF_MAN_PATH="BUILD_STR($(mandir_SQ))"
40 CFLAGS_builtin-help.o += $(paths)
41 CFLAGS_builtin-timechart.o += $(paths)
/Linux-v5.4/scripts/
Dleaking_addresses.pl520 my ($total, $dmesg, $paths, $files) = parse_raw_file($file);
533 squash_by($paths, 'path');
560 my %paths; # Unique paths containing leaks.
571 cache_path(\%paths, $line);
575 return $total, \@dmesg, \%paths, \%files;
617 my ($paths, $line) = @_;
623 add_to_cache($paths, $path, substr($line, $index));
/Linux-v5.4/include/trace/events/
Dasoc.h192 TP_PROTO(int paths, int stream),
194 TP_ARGS(paths, stream),
197 __field( int, paths )
202 __entry->paths = paths;
207 __entry->stream ? "capture" : "playback", __entry->paths)
/Linux-v5.4/drivers/staging/sm750fb/
Dsm750_hw.c198 if (output->paths & sm750_panel) in hw_sm750_output_setMode()
200 if (output->paths & sm750_crt) in hw_sm750_output_setMode()
205 if (output->paths & sm750_panel) in hw_sm750_output_setMode()
207 if (output->paths & sm750_crt) in hw_sm750_output_setMode()
414 if (output->paths & sm750_crt) { in hw_sm750le_setBLANK()
459 if (output->paths & sm750_crt) { in hw_sm750_setBLANK()
468 if (output->paths & sm750_panel) { in hw_sm750_setBLANK()
Dsm750.c677 output->paths = sm750_pnc; in sm750fb_set_drv()
684 output->paths = sm750_pnc; in sm750fb_set_drv()
691 output->paths = sm750_panel; in sm750fb_set_drv()
696 output->paths = sm750_crt; in sm750fb_set_drv()
705 output->paths = sm750_panel; in sm750fb_set_drv()
710 output->paths = sm750_crt; in sm750fb_set_drv()
/Linux-v5.4/Documentation/driver-api/firmware/
Ddirect-fs-lookup.rst7 filesystem in the paths documented in the section 'Firmware search paths'.
12 It is recommended you keep /lib/firmware paths on your root filesystem,
Dfw_search_path.rst2 Firmware search paths
5 The following search paths are used to look for firmware on your
/Linux-v5.4/Documentation/devicetree/bindings/interconnect/
Dinterconnect.txt39 bandwidth requirements along interconnect paths they are connected to. There
41 multiple paths from different providers depending on use case and the
51 interconnect-names to match interconnect paths with interconnect
/Linux-v5.4/Documentation/driver-api/
Dinterconnect.rst72 Interconnect consumers are the entities which make use of the data paths exposed
91 get paths between endpoints and set their bandwidth/latency/QoS requirements
92 for these interconnect paths. These interfaces are not currently
/Linux-v5.4/tools/lib/subcmd/
Dhelp.c207 char *paths, *path, *colon; in load_command_list() local
208 path = paths = strdup(env_path); in load_command_list()
219 free(paths); in load_command_list()
/Linux-v5.4/drivers/md/
Ddm-round-robin.c32 static void free_paths(struct list_head *paths) in free_paths() argument
36 list_for_each_entry_safe(pi, next, paths, list) { in free_paths()
Ddm-queue-length.c66 static void ql_free_paths(struct list_head *paths) in ql_free_paths() argument
70 list_for_each_entry_safe(pi, next, paths, list) { in ql_free_paths()
Ddm-service-time.c62 static void free_paths(struct list_head *paths) in free_paths() argument
66 list_for_each_entry_safe(pi, next, paths, list) { in free_paths()
/Linux-v5.4/drivers/base/firmware_loader/
DKconfig10 look for the requested firmware in a series of filesystem paths:
37 /lib/firmware/ paths. This option enables you to build into the
40 /lib/firmware paths documented on CONFIG_FW_LOADER.
78 firmware failed using the different /lib/firmware/ paths, or the
121 this may be that your firmware resides outside of the paths the kernel
/Linux-v5.4/tools/kvm/kvm_stat/
Dkvm_stat725 self.paths = []
769 self.paths = list(filter(lambda x: "{}-".format(pid) in x, vms))
772 self.paths = []
777 for path in self.paths:
779 self.paths.remove(path)
798 paths = self.paths
800 paths = []
803 paths.append(dir)
804 for path in paths:
/Linux-v5.4/scripts/dtc/
Ddtx_diff52 include paths will be set properly.
55 the dts source file for include paths to be set properly for '#include'
72 add the path of DTx_1 and DTx_2 to the include paths. If DTx_2 includes
/Linux-v5.4/Documentation/sound/soc/
Ddapm.rst39 audio subsystem signal paths
170 audio paths within the audio subsystem. They have the following form:-
239 This can be used to merge to signal paths together in software.
249 audio paths (called interconnections). Each interconnection must be defined in
250 order to create a map of all audio paths between widgets.
254 paths.
/Linux-v5.4/sound/pci/hda/
Dhda_generic.c40 snd_array_init(&spec->paths, sizeof(struct nid_path), 8); in snd_hda_gen_spec_init()
92 snd_array_free(&spec->paths); in snd_hda_gen_spec_free()
258 snd_array_for_each(&spec->paths, i, path) { in get_nid_path()
284 struct nid_path *array = spec->paths.list; in snd_hda_get_path_idx()
287 if (!spec->paths.used) in snd_hda_get_path_idx()
290 if (idx < 0 || idx >= spec->paths.used) in snd_hda_get_path_idx()
306 if (idx <= 0 || idx > spec->paths.used) in snd_hda_get_path_from_idx()
308 return snd_array_elem(&spec->paths, idx - 1); in snd_hda_get_path_from_idx()
319 snd_array_for_each(&spec->paths, i, path) { in is_dac_already_used()
346 snd_array_for_each(&spec->paths, i, path) { in is_ctl_used()
[all …]
/Linux-v5.4/Documentation/core-api/
Dgfp_mask-from-fs-io.rst13 Code paths in the filesystem and IO stacks must be careful when
15 memory reclaim calling back into the FS or IO paths and blocking on
/Linux-v5.4/arch/arm64/boot/dts/amlogic/
Dmeson-gxl-mali.dtsi28 * Mali clocking is provided by two identical clock paths

1234567