Home
last modified time | relevance | path

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

12345678910>>...16

/kernel/linux/linux-5.10/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()
327 struct nvkm_vmm_join *join; in nv50_vmm_part() local
329 list_for_each_entry(join, &vmm->join, head) { in nv50_vmm_part()
330 if (join->inst == inst) { in nv50_vmm_part()
331 list_del(&join->head); in nv50_vmm_part()
332 kfree(join); in nv50_vmm_part()
[all …]
Dvmmgk20a.c38 .join = gf100_vmm_join,
53 .join = gf100_vmm_join,
Dvmmgm20b.c26 .join = gm200_vmm_join,
42 .join = gm200_vmm_join,
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ni_routing/tools/
Dconvert_csv_to_c.py57 lines = '\n'.join(lines)
114 return '\n'.join(lines)
154 """.format(filename=SET_C, extern_h=os.path.join(ITEMS_DIR, EXTERN_H))
245 sheet_filename = os.path.join(self.ITEMS_DIR,'{}.c'.format(S))
262 with open(os.path.join(self.OUTPUT_DIR, sheet_filename), 'w') as f:
263 f.write('\n'.join(s_chunks))
266 with open(os.path.join(self.OUTPUT_DIR, self.MKFILE_SEGMENTS), 'w') as f:
269 f.write('\n'.join(objs))
272 EXTERN_H = os.path.join(self.ITEMS_DIR, self.EXTERN_H)
273 with open(os.path.join(self.OUTPUT_DIR, EXTERN_H), 'w') as f:
[all …]
Dconvert_py_to_csv.py35 csv_fname = path.join(CSV_DIR, name + '.csv')
55 os.makedirs(path.join(CSV_DIR,d))
60 create_csv(path.join('route_values',family), dst_src_map, iter_src_values)
63 create_csv(path.join('device_routes',device), dst_src_map, iter_src)
/kernel/linux/linux-5.10/drivers/net/wireless/ti/wl1251/
Dcmd.c277 struct cmd_join *join; in wl1251_cmd_join() local
281 join = kzalloc(sizeof(*join), GFP_KERNEL); in wl1251_cmd_join()
282 if (!join) { in wl1251_cmd_join()
287 wl1251_debug(DEBUG_CMD, "cmd join%s ch %d %d/%d", in wl1251_cmd_join()
292 bssid = (u8 *) &join->bssid_lsb; in wl1251_cmd_join()
296 join->rx_config_options = wl->rx_config; in wl1251_cmd_join()
297 join->rx_filter_options = wl->rx_filter; in wl1251_cmd_join()
299 join->basic_rate_set = RATE_MASK_1MBPS | RATE_MASK_2MBPS | in wl1251_cmd_join()
302 join->beacon_interval = beacon_interval; in wl1251_cmd_join()
303 join->dtim_interval = dtim_interval; in wl1251_cmd_join()
[all …]
/kernel/linux/linux-5.10/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 …]
/kernel/linux/linux-5.10/Documentation/sphinx/
Dkfigure.py217 src_fname = path.join(translator.builder.srcdir, img_node['uri'])
219 src_fname = path.join(translator.builder.outdir, img_node['uri'])
235 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
241 dst_fname = path.join(
245 img_node['uri'] = path.join(
248 '*': path.join(translator.builder.imgpath, fname + '.svg')}
262 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
314 "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))
331 kernellog.warn(app, "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))
439 fname = path.join('%s-%s' % (srclang, sha1(hashobj).hexdigest()))
[all …]
Dkerneldoc.py123 'calling kernel-doc \'%s\'' % (" ".join(cmd)))
134 … 'kernel-doc \'%s\' failed with return code %d' % (" ".join(cmd), p.returncode))
162 (" ".join(cmd), str(e)))
/kernel/linux/linux-5.10/scripts/kconfig/tests/
Dconftest.py18 CONF_PATH = os.path.abspath(os.path.join('scripts', 'kconfig', 'conf'))
62 shutil.copyfile(os.path.join(self._test_dir, dot_config),
63 os.path.join(temp_dir, '.config'))
90 with open(os.path.join(temp_dir, out_file)) as f:
100 print("[command]\n{}\n".format(' '.join(command)))
150 defconfig_path = os.path.join(self._test_dir, defconfig)
155 all_config_path = os.path.join(self._test_dir, all_config)
226 with open(os.path.join(self._test_dir, expected)) as f:
/kernel/linux/linux-5.10/tools/testing/kunit/
Dkunit_kernel.py102 linux_bin = os.path.join(build_dir, 'linux')
113 kconfig_path = os.path.join(build_dir, KCONFIG_PATH)
119 kunitconfig_path = os.path.join(build_dir, KUNITCONFIG_PATH)
125 outfile_path = os.path.join(build_dir, OUTFILE_PATH)
161 ', '.join([str(e) for e in invalid])
/kernel/linux/linux-5.10/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))
/kernel/linux/linux-5.10/tools/perf/scripts/python/
Dexport-to-sqlite.py397 ' FROM call_paths c INNER JOIN call_paths p ON p.id = c.parent_id')
422 ' FROM calls INNER JOIN call_paths ON call_paths.id = call_path_id')
456 ' INNER JOIN samples ON samples.id = ptwrite.id')
467 ' INNER JOIN samples ON samples.id = cbr.id')
477 ' INNER JOIN samples ON samples.id = mwait.id')
488 ' INNER JOIN samples ON samples.id = pwre.id')
497 ' INNER JOIN samples ON samples.id = exstop.id')
513 ' INNER JOIN samples ON samples.id = pwrx.id')
541 ' INNER JOIN selected_events ON selected_events.id = evsel_id'
562 ' INNER JOIN threads AS th_out ON th_out.id = context_switches.thread_out_id'
[all …]
Dexport-to-postgresql.py559 ' FROM call_paths c INNER JOIN call_paths p ON p.id = c.parent_id')
584 ' FROM calls INNER JOIN call_paths ON call_paths.id = call_path_id')
618 ' INNER JOIN samples ON samples.id = ptwrite.id')
629 ' INNER JOIN samples ON samples.id = cbr.id')
639 ' INNER JOIN samples ON samples.id = mwait.id')
650 ' INNER JOIN samples ON samples.id = pwre.id')
659 ' INNER JOIN samples ON samples.id = exstop.id')
675 ' INNER JOIN samples ON samples.id = pwrx.id')
701 ' FULL JOIN mwait ON mwait.id = cbr.id'
702 ' FULL JOIN pwre ON pwre.id = cbr.id'
[all …]
/kernel/linux/linux-5.10/fs/ocfs2/dlm/
Ddlmdomain.c7 * defines domain join / leave apis
318 /* we may still be in the list if we hit an error during join. */ in dlm_ctxt_release()
511 * state and the dlm spinlock for join state... Sorry! */ in dlm_mark_domain_leaving()
737 "node %u wanted to join with %s locking protocol " in dlm_query_join_proto_check()
747 "Node %u wanted to join with %s locking " in dlm_query_join_proto_check()
804 mlog(0, "node %u wants to join domain %s\n", query->node_idx, in dlm_query_join_handler()
830 * join request if joining node has different node map. in dlm_query_join_handler()
836 mlog(0, "disallow join as node %u does not " in dlm_query_join_handler()
857 * haven't started our join process yet, then in dlm_query_join_handler()
864 mlog(0, "node %u trying to join, but recovery " in dlm_query_join_handler()
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
Dcgroup_helpers.c168 * join_cgroup() - Join a cgroup
169 * @path: The cgroup path, relative to the workdir, to join
210 * @path: The cgroup path, relative to the workdir, to join
240 * @path: The cgroup path, relative to the workdir, to join
310 fprintf(stderr, "Failed to join cgroup\n"); in cgroup_setup_and_join()
/kernel/linux/linux-5.10/drivers/net/wireless/st/cw1200/
Dsta.c1165 pr_debug("[STA] Join complete (%d)\n", priv->join_complete_status); in cw1200_join_complete()
1210 struct wsm_join join = { in cw1200_do_join() local
1220 pr_warn("[STA] - Join request already pending, skipping..\n"); in cw1200_do_join()
1251 if (!join.basic_rate_set) in cw1200_do_join()
1252 join.basic_rate_set = 7; in cw1200_do_join()
1258 join.beacon_interval = priv->beacon_int; in cw1200_do_join()
1275 join.dtim_period = priv->join_dtim_period; in cw1200_do_join()
1277 join.channel_number = priv->channel->hw_value; in cw1200_do_join()
1278 join.band = (priv->channel->band == NL80211_BAND_5GHZ) ? in cw1200_do_join()
1281 memcpy(join.bssid, bssid, sizeof(join.bssid)); in cw1200_do_join()
[all …]
/kernel/linux/linux-5.10/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()
337 * Check if can send sendonly MCG's with sendonly-fullmember join state. in ipoib_mcast_carrier_on_task()
338 * It done here after the successfully join to the broadcast group, in ipoib_mcast_carrier_on_task()
412 ipoib_dbg_mcast(priv, "%smulticast join failed for %pI6, status %d\n", in ipoib_mcast_join_complete()
416 ipoib_warn(priv, "%smulticast join failed for %pI6, status %d\n", in ipoib_mcast_join_complete()
433 * and restart the join thread. The empty queue in ipoib_mcast_join_complete()
434 * is why the join thread ignores this group. in ipoib_mcast_join_complete()
445 /* Requeue this join task with a backoff delay */ in ipoib_mcast_join_complete()
554 /* Requeue this join task with a backoff delay */ in ipoib_mcast_join()
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/mwifiex/
Djoin.c2 * NXP Wireless LAN device driver: association and ad-hoc start/join
34 * This function is called from the network join command preparation routine.
90 * This function is called from the network join command preparation routine.
200 * target BSS and our adapter settings for use in an assoc/join command.
231 * This function appends a WPS IE. It is called from the network join command
276 * This function is called from the network join command preparation routine.
328 * It is called from the network join command preparation routine.
1104 * This function prepares command for ad-hoc join.
1199 /* Copy the adhoc join rates into Current BSS state structure */ in mwifiex_cmd_802_11_ad_hoc_join()
1261 * ad-hoc join.
[all …]
/kernel/linux/linux-5.10/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)
/kernel/linux/linux-5.10/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.
/kernel/linux/build/test/moduletest/runtest/bin/sched_rtg_t/testcases/bin/
Dsched_rtg06.sh48 tst_res TINFO "All 40 porcesss join random rtg from 2 to 20"
53 tst_res TINFO "All 40 processes join rtg from 2 to 20 one by one"
58 tst_res TINFO "All 40 processes join rtg 2"
/kernel/linux/linux-5.10/include/rdma/
Dib_sa.h74 * There are 4 types of join states:
452 * ib_sa_join_multicast - Initiates a join request to the specified multicast
462 * @callback: User callback invoked once the join operation completes.
465 * This call initiates a multicast join request with the SA for the specified
466 * multicast group. If the join operation is started successfully, it returns
469 * join operation later fails. (The callback status is non-zero.)
471 * If the join operation fails; status will be non-zero, with the following
/kernel/linux/linux-5.10/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
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
Di915_syncmap.c267 * it doesn't, we have gone past our target and need to insert a join in __sync_set()
269 * of the join, as well as the original layer. in __sync_set()
284 /* Insert a join above the current layer */ in __sync_set()
296 /* Insert the join into the parent */ in __sync_set()
309 /* Ascend to the join */ in __sync_set()

12345678910>>...16