Home
last modified time | relevance | path

Searched full:join (Results 1 – 25 of 410) sorted by relevance

12345678910>>...17

/Linux-v6.1/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
Dvmmnv50.c147 struct nvkm_vmm_join *join; in nv50_vmm_pgd_pde() local
154 list_for_each_entry(join, &vmm->join, head) { in nv50_vmm_pgd_pde()
155 nvkm_kmap(join->inst); in nv50_vmm_pgd_pde()
156 nvkm_wo64(join->inst, pdeo, data); in nv50_vmm_pgd_pde()
157 nvkm_done(join->inst); in nv50_vmm_pgd_pde()
326 struct nvkm_vmm_join *join; in nv50_vmm_part() local
328 list_for_each_entry(join, &vmm->join, head) { in nv50_vmm_part()
329 if (join->inst == inst) { in nv50_vmm_part()
330 list_del(&join->head); in nv50_vmm_part()
331 kfree(join); in nv50_vmm_part()
[all …]
/Linux-v6.1/drivers/comedi/drivers/ni_routing/tools/
Dconvert_csv_to_c.py56 lines = '\n'.join(lines)
113 return '\n'.join(lines)
152 """.format(filename=SET_C, extern_h=os.path.join(ITEMS_DIR, EXTERN_H))
241 sheet_filename = os.path.join(self.ITEMS_DIR,'{}.c'.format(S))
258 with open(os.path.join(self.OUTPUT_DIR, sheet_filename), 'w') as f:
259 f.write('\n'.join(s_chunks))
262 with open(os.path.join(self.OUTPUT_DIR, self.MKFILE_SEGMENTS), 'w') as f:
265 f.write('\n'.join(objs))
268 EXTERN_H = os.path.join(self.ITEMS_DIR, self.EXTERN_H)
269 with open(os.path.join(self.OUTPUT_DIR, EXTERN_H), 'w') as f:
[all …]
Dconvert_py_to_csv.py34 csv_fname = path.join(CSV_DIR, name + '.csv')
54 os.makedirs(path.join(CSV_DIR,d))
59 create_csv(path.join('route_values',family), dst_src_map, iter_src_values)
62 create_csv(path.join('device_routes',device), dst_src_map, iter_src)
/Linux-v6.1/tools/testing/kunit/
Dkunit_kernel.py32 QEMU_CONFIGS_DIR = os.path.join(ABS_TOOL_PATH, 'qemu_configs')
66 print('Populating config with:\n$', ' '.join(command))
80 print('Building with:\n$', ' '.join(command))
116 kernel_path = os.path.join(build_dir, self._kernel_path)
121 '-append', ' '.join(params + [self._kernel_command_line]),
125 # Note: shlex.join() does what we want, but requires python 3.8+.
126 print('Running tests with:\n$', ' '.join(shlex.quote(arg) for arg in qemu_command))
146 linux_bin = os.path.join(build_dir, 'linux')
155 return os.path.join(build_dir, KCONFIG_PATH)
158 return os.path.join(build_dir, KUNITCONFIG_PATH)
[all …]
/Linux-v6.1/drivers/net/wireless/ti/wl1251/
Dcmd.c273 struct cmd_join *join; in wl1251_cmd_join() local
277 join = kzalloc(sizeof(*join), GFP_KERNEL); in wl1251_cmd_join()
278 if (!join) in wl1251_cmd_join()
281 wl1251_debug(DEBUG_CMD, "cmd join%s ch %d %d/%d", in wl1251_cmd_join()
286 bssid = (u8 *) &join->bssid_lsb; in wl1251_cmd_join()
290 join->rx_config_options = wl->rx_config; in wl1251_cmd_join()
291 join->rx_filter_options = wl->rx_filter; in wl1251_cmd_join()
293 join->basic_rate_set = RATE_MASK_1MBPS | RATE_MASK_2MBPS | in wl1251_cmd_join()
296 join->beacon_interval = beacon_interval; in wl1251_cmd_join()
297 join->dtim_interval = dtim_interval; in wl1251_cmd_join()
[all …]
/Linux-v6.1/tools/testing/selftests/bpf/
Dtest_bpftool_synctypes.py10 LINUX_ROOT = os.path.abspath(os.path.join(__file__,
13 os.path.join(LINUX_ROOT, 'tools/bpf/bpftool'))
15 os.path.join(BPFTOOL_DIR, 'bash-completion'))
17 os.path.join(BPFTOOL_DIR, 'Documentation'))
19 os.path.join(LINUX_ROOT, 'tools/include'))
304 filename = os.path.join(BPFTOOL_DIR, 'main.h')
330 filename = os.path.join(BPFTOOL_DOC_DIR, 'substitutions.rst')
353 filename = os.path.join(BPFTOOL_DIR, 'prog.c')
366 filename = os.path.join(BPFTOOL_DIR, 'map.c')
375 filename = os.path.join(BPFTOOL_DIR, 'cgroup.c')
[all …]
Dcgroup_helpers.c261 * join_cgroup() - Join a cgroup
262 * @relative_path: The cgroup path, relative to the workdir, to join
280 * join_parent_cgroup() - Join a cgroup in the parent process workdir
281 * @relative_path: The cgroup path, relative to parent process workdir, to join
337 * @relative_path: The cgroup path, relative to the workdir, to join
367 * @relative_path: The cgroup path, relative to the workdir, to join
437 fprintf(stderr, "Failed to join cgroup\n"); in cgroup_setup_and_join()
522 * join_classid() - Join a cgroupv1 net_cls classid
525 * join it here. This causes the process sockets to be tagged with the given
/Linux-v6.1/drivers/gpu/drm/i915/selftests/
Di915_syncmap.c288 * Each pass the common prefix shrinks and we have to insert a join. in igt_syncmap_join_above()
289 * Each join will only contain two branches, the latest of which in igt_syncmap_join_above()
298 struct i915_syncmap *join; in igt_syncmap_join_above() local
304 join = sync->parent; in igt_syncmap_join_above()
305 if (!join) /* very first insert will have no parents */ in igt_syncmap_join_above()
308 if (!join->height) { in igt_syncmap_join_above()
314 if (hweight32(join->bitmap) != 2) { in igt_syncmap_join_above()
315 pr_err("Join does not have 2 children: %x (%d)\n", in igt_syncmap_join_above()
316 join->bitmap, hweight32(join->bitmap)); in igt_syncmap_join_above()
321 if (__sync_child(join)[__sync_branch_idx(join, context)] != sync) { in igt_syncmap_join_above() local
[all …]
/Linux-v6.1/Documentation/sphinx/
Dkfigure.py258 src_fname = path.join(translator.builder.srcdir, img_node['uri'])
260 src_fname = path.join(translator.builder.outdir, img_node['uri'])
276 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
282 dst_fname = path.join(
286 img_node['uri'] = path.join(
289 '*': path.join(translator.builder.imgpath, fname + '.svg')}
305 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
325 svg_fname = path.join(translator.builder.outdir, fname + '.svg')
364 "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))
397 kernellog.warn(app, "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))
[all …]
/Linux-v6.1/scripts/kconfig/tests/
Dconftest.py18 CONF_PATH = os.path.abspath(os.path.join('scripts', 'kconfig', 'conf'))
66 shutil.copyfile(os.path.join(self._test_dir, dot_config),
67 os.path.join(temp_dir, '.config'))
94 with open(os.path.join(temp_dir, out_file)) as f:
104 print("[command]\n{}\n".format(' '.join(command)))
154 defconfig_path = os.path.join(self._test_dir, defconfig)
159 all_config_path = os.path.join(self._test_dir, all_config)
230 with open(os.path.join(self._test_dir, expected)) as f:
/Linux-v6.1/tools/perf/scripts/python/
Dexport-to-sqlite.py399 ' FROM call_paths c INNER JOIN call_paths p ON p.id = c.parent_id')
424 ' FROM calls INNER JOIN call_paths ON call_paths.id = call_path_id')
459 ' INNER JOIN samples ON samples.id = ptwrite.id')
470 ' INNER JOIN samples ON samples.id = cbr.id')
480 ' INNER JOIN samples ON samples.id = mwait.id')
491 ' INNER JOIN samples ON samples.id = pwre.id')
500 ' INNER JOIN samples ON samples.id = exstop.id')
516 ' INNER JOIN samples ON samples.id = pwrx.id')
544 ' INNER JOIN selected_events ON selected_events.id = evsel_id'
565 ' INNER JOIN threads AS th_out ON th_out.id = context_switches.thread_out_id'
[all …]
Dexport-to-postgresql.py561 ' FROM call_paths c INNER JOIN call_paths p ON p.id = c.parent_id')
586 ' FROM calls INNER JOIN call_paths ON call_paths.id = call_path_id')
621 ' INNER JOIN samples ON samples.id = ptwrite.id')
632 ' INNER JOIN samples ON samples.id = cbr.id')
642 ' INNER JOIN samples ON samples.id = mwait.id')
653 ' INNER JOIN samples ON samples.id = pwre.id')
662 ' INNER JOIN samples ON samples.id = exstop.id')
678 ' INNER JOIN samples ON samples.id = pwrx.id')
704 ' FULL JOIN mwait ON mwait.id = cbr.id'
705 ' FULL JOIN pwre ON pwre.id = cbr.id'
[all …]
/Linux-v6.1/tools/testing/selftests/tc-testing/
Dtdc_helper.py37 print(curcase['id'] + ': (' + ', '.join(curcase['category']) + ") " + curcase['name'])
44 print(", ".join(str(s) for s in categories))
58 print("\n".join(str(s) for s in items))
/Linux-v6.1/fs/ocfs2/dlm/
Ddlmdomain.c5 * defines domain join / leave apis
316 /* we may still be in the list if we hit an error during join. */ in dlm_ctxt_release()
509 * state and the dlm spinlock for join state... Sorry! */ in dlm_mark_domain_leaving()
735 "node %u wanted to join with %s locking protocol " in dlm_query_join_proto_check()
745 "Node %u wanted to join with %s locking " in dlm_query_join_proto_check()
802 mlog(0, "node %u wants to join domain %s\n", query->node_idx, in dlm_query_join_handler()
828 * join request if joining node has different node map. in dlm_query_join_handler()
834 mlog(0, "disallow join as node %u does not " in dlm_query_join_handler()
855 * haven't started our join process yet, then in dlm_query_join_handler()
862 mlog(0, "node %u trying to join, but recovery " in dlm_query_join_handler()
[all …]
/Linux-v6.1/rust/alloc/
Dslice.rs637 /// assert_eq!(["hello", "world"].join(" "), "hello world");
638 /// assert_eq!([[1, 2], [3, 4]].join(&0), [1, 2, 0, 3, 4]);
639 /// assert_eq!([[1, 2], [3, 4]].join(&[0, 0][..]), [1, 2, 0, 0, 3, 4]);
643 pub fn join<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output in join() method
645 Self: Join<Separator>, in join()
647 Join::join(self, sep) in join()
662 #[deprecated(since = "1.3.0", note = "renamed to join")]
663 pub fn connect<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output in connect()
665 Self: Join<Separator>, in connect()
667 Join::join(self, sep) in connect()
[all …]
/Linux-v6.1/drivers/net/wireless/st/cw1200/
Dsta.c1166 pr_debug("[STA] Join complete (%d)\n", priv->join_complete_status); in cw1200_join_complete()
1211 struct wsm_join join = { in cw1200_do_join() local
1221 pr_warn("[STA] - Join request already pending, skipping..\n"); in cw1200_do_join()
1252 if (!join.basic_rate_set) in cw1200_do_join()
1253 join.basic_rate_set = 7; in cw1200_do_join()
1259 join.beacon_interval = priv->beacon_int; in cw1200_do_join()
1276 join.dtim_period = priv->join_dtim_period; in cw1200_do_join()
1278 join.channel_number = priv->channel->hw_value; in cw1200_do_join()
1279 join.band = (priv->channel->band == NL80211_BAND_5GHZ) ? in cw1200_do_join()
1282 memcpy(join.bssid, bssid, sizeof(join.bssid)); in cw1200_do_join()
[all …]
/Linux-v6.1/drivers/net/wireless/marvell/mwifiex/
Djoin.c3 * NXP Wireless LAN device driver: association and ad-hoc start/join
22 * This function is called from the network join command preparation routine.
78 * This function is called from the network join command preparation routine.
188 * target BSS and our adapter settings for use in an assoc/join command.
219 * This function appends a WPS IE. It is called from the network join command
264 * This function is called from the network join command preparation routine.
316 * It is called from the network join command preparation routine.
1092 * This function prepares command for ad-hoc join.
1187 /* Copy the adhoc join rates into Current BSS state structure */ in mwifiex_cmd_802_11_ad_hoc_join()
1249 * ad-hoc join.
[all …]
/Linux-v6.1/include/rdma/
Dib_sa.h74 * There are 4 types of join states:
429 * ib_sa_join_multicast - Initiates a join request to the specified multicast
439 * @callback: User callback invoked once the join operation completes.
442 * This call initiates a multicast join request with the SA for the specified
443 * multicast group. If the join operation is started successfully, it returns
446 * join operation later fails. (The callback status is non-zero.)
448 * If the join operation fails; status will be non-zero, with the following
/Linux-v6.1/tools/testing/selftests/net/mptcp/
Dmptcp_join.sh1368 echo "[fail] got $count JOIN[s] syn expected $syn_nr"
1386 echo "[fail] got $count JOIN[s] synack expected $syn_ack_nr"
1398 echo "[fail] got $count JOIN[s] ack expected $ack_nr"
1511 echo "[fail] got $count JOIN[s] syn with a different \
1524 echo "[fail] got $count JOIN[s] synack with a different \
1537 echo "[fail] got $count JOIN[s] ack with a different \
1550 echo "[fail] got $count JOIN[s] syn with a mismatched \
1563 echo "[fail] got $count JOIN[s] ack with a mismatched \
1761 if reset "no JOIN"; then
2418 if reset "no JOIN with diff families v4-v6"; then
[all …]
/Linux-v6.1/scripts/gdb/linux/
Dtimerlist.py65 text += "".join([x for x in print_active_timers(base)])
87 text += "\n".join([s.format(f, cpu_base[f]) for s, f in fmts])
105 text += "\n".join([s.format(f, ts[f]) for s, f in fmts])
176 return "".join(chunks)
/Linux-v6.1/scripts/clang-tools/
Dgen_compile_commands.py86 exclude_dirs = [ os.path.join(directory, d) for d in _EXCLUDE_DIRS ]
96 yield os.path.join(dirpath, filename)
109 return os.path.join(dir, '.' + base + '.cmd')
176 abs_path = os.path.abspath(os.path.join(root_directory, file_path))
/Linux-v6.1/Documentation/admin-guide/device-mapper/
Dlinear.rst29 # Join 2 devices together
38 # Split a device into 4M chunks and then join them together in reverse order.
/Linux-v6.1/tools/cgroup/
Dmemcg_shrinker.py16 path = os.path.join(root, cgroup)
29 count_path = os.path.join(root, shrinker, "count")
/Linux-v6.1/drivers/infiniband/core/
Dmulticast.c225 * type based on their join state. Adjust the number of members the belong to
226 * the specified join states.
238 * If a multicast group has zero members left for a particular join state, but
239 * the group is still a member with the SA, we need to leave that join state.
240 * Determine which join states we still belong to, but that do not have any
489 * Fail a join request if it is still active - at the head of the pending queue.
600 * We serialize all join requests to a single group to make our lives much
601 * easier. Otherwise, two users could try to join the same group
603 * join is in progress, etc., which makes locking around error recovery
/Linux-v6.1/drivers/infiniband/ulp/ipoib/
Dipoib_multicast.c67 /* join state that allows creating mcg with sendonly member request */
95 * task immediately. The join task will make sure to in __ipoib_mcast_schedule_join_thread()
403 ipoib_dbg_mcast(priv, "%smulticast join failed for %pI6, status %d\n", in ipoib_mcast_join_complete()
407 ipoib_warn(priv, "%smulticast join failed for %pI6, status %d\n", in ipoib_mcast_join_complete()
424 * and restart the join thread. The empty queue in ipoib_mcast_join_complete()
425 * is why the join thread ignores this group. in ipoib_mcast_join_complete()
436 /* Requeue this join task with a backoff delay */ in ipoib_mcast_join_complete()
543 /* Requeue this join task with a backoff delay */ in ipoib_mcast_join()
570 ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n", in ipoib_mcast_join_task()
688 ipoib_warn(priv, "ipoib_mcast_leave on an in-flight join\n"); in ipoib_mcast_leave()
[all …]

12345678910>>...17