Home
last modified time | relevance | path

Searched refs:commit (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/linux-6.12.1/drivers/gpu/drm/i915/display/
Dintel_global_state.c20 struct intel_global_commit *commit; in commit_new() local
22 commit = kzalloc(sizeof(*commit), GFP_KERNEL); in commit_new()
23 if (!commit) in commit_new()
26 init_completion(&commit->done); in commit_new()
27 kref_init(&commit->ref); in commit_new()
29 return commit; in commit_new()
34 struct intel_global_commit *commit = in __commit_free() local
35 container_of(kref, typeof(*commit), ref); in __commit_free()
37 kfree(commit); in __commit_free()
40 static struct intel_global_commit *commit_get(struct intel_global_commit *commit) in commit_get() argument
[all …]
Dintel_drrs.c354 struct drm_crtc_commit *commit; in intel_drrs_debugfs_ctl_set() local
367 commit = crtc_state->uapi.commit; in intel_drrs_debugfs_ctl_set()
368 if (commit) { in intel_drrs_debugfs_ctl_set()
369 ret = wait_for_completion_interruptible(&commit->hw_done); in intel_drrs_debugfs_ctl_set()
/linux-6.12.1/drivers/gpu/drm/
Ddrm_atomic_helper.c1489 else if (funcs->commit) in drm_atomic_helper_commit_modeset_enables()
1490 funcs->commit(crtc); in drm_atomic_helper_commit_modeset_enables()
1524 else if (funcs->commit) in drm_atomic_helper_commit_modeset_enables()
1525 funcs->commit(encoder); in drm_atomic_helper_commit_modeset_enables()
1712 struct drm_crtc_commit *commit = old_state->crtcs[i].commit; in drm_atomic_helper_wait_for_flip_done() local
1717 if (!crtc || !commit) in drm_atomic_helper_wait_for_flip_done()
1720 ret = wait_for_completion_timeout(&commit->flip_done, 10 * HZ); in drm_atomic_helper_wait_for_flip_done()
1923 if (old_plane_state->commit && in drm_atomic_helper_async_check()
1924 !try_wait_for_completion(&old_plane_state->commit->hw_done)) { in drm_atomic_helper_async_check()
2138 struct drm_crtc_commit *commit, *stall_commit = NULL; in stall_checks() local
[all …]
Ddrm_atomic_state_helper.c152 state->commit = NULL; in __drm_atomic_helper_crtc_duplicate_state()
195 if (state->commit) { in __drm_atomic_helper_crtc_destroy_state()
205 if (state->event && state->commit->abort_completion) in __drm_atomic_helper_crtc_destroy_state()
206 drm_crtc_commit_put(state->commit); in __drm_atomic_helper_crtc_destroy_state()
208 kfree(state->commit->event); in __drm_atomic_helper_crtc_destroy_state()
209 state->commit->event = NULL; in __drm_atomic_helper_crtc_destroy_state()
211 drm_crtc_commit_put(state->commit); in __drm_atomic_helper_crtc_destroy_state()
353 state->commit = NULL; in __drm_atomic_helper_plane_duplicate_state()
398 if (state->commit) in __drm_atomic_helper_plane_destroy_state()
399 drm_crtc_commit_put(state->commit); in __drm_atomic_helper_plane_destroy_state()
[all …]
/linux-6.12.1/scripts/
Dcheckkconfigsymbols.py87 if args.commit and args.diff:
94 if args.commit or args.diff:
103 if args.commit:
104 if args.commit.startswith('HEAD'):
125 if args.sim and not args.commit and not args.diff:
137 if args.commit or args.diff:
143 if args.commit:
144 commit_a = args.commit + "~"
145 commit_b = args.commit
199 for commit in commits:
[all …]
Dchecktransupdate.py42 def get_latest_commit_from(file_path, commit): argument
83 def pretty_output(commit): argument
91 def valid_commit(commit): argument
93 msg = pretty_output(commit)
125 for commit in commits:
126 if valid_commit(commit):
127 logging.info("commit %s", pretty_output(commit))
/linux-6.12.1/Documentation/trace/
Dring-buffer-design.rst191 It is possible that the page swapped is the commit page and the tail page,
196 reader page commit page tail page
230 commit page
233 The commit page only is updated by the outermost writer in the
235 commit page.
251 +---------+ <--- given back to writer (current commit)
257 Write commit::
264 +---------+ <--- next position for write (current commit)
274 +---------+ <-- current commit
286 +---------+ <--(last full commit)
[all …]
/linux-6.12.1/drivers/interconnect/qcom/
Dbcm-voter.c128 u32 addr, bool commit, bool wait) in tcs_cmd_gen() argument
147 cmd->data = BCM_TCS_CMD(commit, valid, vote_x, vote_y); in tcs_cmd_gen()
162 bool commit, wait; in tcs_list_gen() local
168 commit = false; in tcs_list_gen()
172 commit = true; in tcs_list_gen()
176 wait = commit && (voter->tcs_wait & BIT(bucket)); in tcs_list_gen()
179 bcm->vote_y[bucket], bcm->addr, commit, wait); in tcs_list_gen()
189 if (!commit) { in tcs_list_gen()
/linux-6.12.1/drivers/gpu/drm/xe/display/
Dxe_display.c295 struct drm_crtc_commit *commit; in xe_display_flush_cleanup_work() local
298 commit = list_first_entry_or_null(&crtc->base.commit_list, in xe_display_flush_cleanup_work()
300 if (commit) in xe_display_flush_cleanup_work()
301 drm_crtc_commit_get(commit); in xe_display_flush_cleanup_work()
304 if (commit) { in xe_display_flush_cleanup_work()
305 wait_for_completion(&commit->cleanup_done); in xe_display_flush_cleanup_work()
306 drm_crtc_commit_put(commit); in xe_display_flush_cleanup_work()
/linux-6.12.1/Documentation/filesystems/ext4/
Djournal.rst15 read-write-erases) before erasing the commit record. Should the system
17 way to the latest commit record, guaranteeing the atomicity of whatever
32 help reduce commit latency significantly. The default ``data=ordered``
33 mode works by logging metadata blocks to the journal. In fast commit
35 affected metadata in fast commit space that is shared with JBD2.
36 Once the fast commit area fills in or if fast commit is not possible
37 or if JBD2 commit timer goes off, Ext4 performs a traditional full commit.
38 A full commit invalidates all the fast commits that happened before
39 it and thus it makes the fast commit area empty for further fast
75 commit. If there is no commit record (or the checksums don't match), the
[all …]
/linux-6.12.1/Documentation/filesystems/
Djournalling.rst66 A jbd2_journal_flush() may be called at any time to commit and
107 journal commit callback for this purpose.
109 With journal commit callbacks you can ask the journalling layer to call
114 called after each transaction commit. You can also use
142 `journal->j_fc_cleanup_cb`: Cleanup function called after every full commit and
143 fast commit.
145 `journal->j_fc_replay_cb`: Replay function called for replay of fast commit
150 :c:func:`jbd2_fc_begin_commit()`. Once a fast commit is done, the client
153 commit immediately after stopping the fast commit it can do so by calling
154 :c:func:`jbd2_fc_end_commit_fallback()`. This is useful if fast commit operation
[all …]
/linux-6.12.1/tools/testing/selftests/bpf/
DREADME.rst148 __ https://github.com/llvm/llvm-project/commit/ddf1864ace484035e3cde5e83b3a31ac81e059c6
198 __ https://github.com/llvm/llvm-project/commit/3cb7e7bf959dcd3b8080986c62e10a75c7af43f0
237 __ https://github.com/llvm/llvm-project/commit/1959ead525b8830cc8a345f45e1c3ef9902d3229
254 .. _0: https://github.com/llvm/llvm-project/commit/6b01b465388b204d543da3cf49efd6080db094a9
255 .. _1: https://github.com/llvm/llvm-project/commit/072cde03aaa13a2c57acf62d79876bf79aa1919f
256 .. _2: https://github.com/llvm/llvm-project/commit/00602ee7ef0bf6c68d690a2bd729c12b95c95c99
257 .. _3: https://github.com/llvm/llvm-project/commit/6d218b4adb093ff2e9764febbbc89f429412006c
258 .. _4: https://github.com/llvm/llvm-project/commit/6d6750696400e7ce988d66a1a00e1d0cb32815f8
267 __ https://github.com/llvm/llvm-project/commit/a7137b238a07d9399d3ae96c0b461571bd5aa8b2
281 __ https://github.com/llvm/llvm-project/commit/886f9ff53155075bd5f1e994f17b85d1e1b7470c
[all …]
/linux-6.12.1/drivers/net/ethernet/meta/fbnic/
Dfbnic_devlink.c25 if (strlen(fw_ver->commit) > 0) { in fbnic_version_running_put()
30 fw_ver->commit); in fbnic_version_running_put()
50 if (strlen(fw_ver->commit) > 0) { in fbnic_version_stored_put()
55 fw_ver->commit); in fbnic_version_stored_put()
/linux-6.12.1/Documentation/arch/riscv/
Dhwprobe.rst75 defined by commit cd20cee ("FMIN/FMAX now implement
95 ratified in commit 3dd606f ("Create cmobase-v1.0.pdf") of riscv-CMOs.
167 defined in the RISC-V Vector manual starting from commit e2ccd0548d6c
171 defined in the RISC-V Vector manual starting from commit e2ccd0548d6c
175 defined in the RISC-V ISA manual starting from commit 056b6ff467c7
179 defined in the RISC-V ISA manual starting from commit 5618fb5a216b
184 from commit 5059e0ca641c ("update to ratified").
188 manual starting from commit 95cf1f9 ("Add changes requested by Ved
192 supported as defined in the RISC-V ISA manual starting from commit
211 supported as defined in the RISC-V ISA manual starting from commit
[all …]
/linux-6.12.1/drivers/gpu/drm/sun4i/
Dsunxi_engine.h63 void (*commit)(struct sunxi_engine *engine, member
158 if (engine->ops && engine->ops->commit) in sunxi_engine_commit()
159 engine->ops->commit(engine, crtc, state); in sunxi_engine_commit()
/linux-6.12.1/Documentation/driver-api/acpi/
Dlinuxized-acpica.rst127 copy the ACPICA git repository. Each commit in the monthly release is
239 1. Cherry-pick an ACPICA commit
244 Then the gen-patch.sh command can help to cherry-pick an ACPICA commit
249 $ generate/linux/gen-patch.sh -u [commit ID]
251 Here the commit ID is the ACPICA local repository commit ID you want to
252 cherry pick. It can be omitted if the commit is "HEAD".
264 $ generate/linux/make-patches.sh -u [commit ID]
266 The commit ID should be the last ACPICA commit accepted by Linux. Usually,
267 it is the commit modifying ACPI_CA_VERSION. It can be found by executing
/linux-6.12.1/drivers/gpu/drm/amd/display/amdgpu_dm/
Damdgpu_dm_crc.c258 struct drm_crtc_commit *commit; in amdgpu_dm_crtc_set_crc_source() local
278 commit = list_first_entry_or_null(&crtc->commit_list, in amdgpu_dm_crtc_set_crc_source()
280 if (commit) in amdgpu_dm_crtc_set_crc_source()
281 drm_crtc_commit_get(commit); in amdgpu_dm_crtc_set_crc_source()
284 if (commit) { in amdgpu_dm_crtc_set_crc_source()
293 &commit->hw_done, 10 * HZ); in amdgpu_dm_crtc_set_crc_source()
406 if (commit) in amdgpu_dm_crtc_set_crc_source()
407 drm_crtc_commit_put(commit); in amdgpu_dm_crtc_set_crc_source()
/linux-6.12.1/Documentation/maintainer/
Dconfigure-git.rst33 Creating commit links to lore.kernel.org
40 reference back to the lore archive so that people that browse the commit
54 test -x "$GIT_DIR/hooks/commit-msg" &&
55 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
/linux-6.12.1/kernel/trace/
Dring_buffer.c338 local_t commit; /* write committed index */ member
384 local_set(&bpage->commit, 0); in rb_init_page()
389 return local_read(&bpage->page->commit); in rb_page_commit()
585 (unsigned int)offsetof(typeof(field), commit), in ring_buffer_print_page_header()
586 (unsigned int)sizeof(field.commit), in ring_buffer_print_page_header()
591 (unsigned int)offsetof(typeof(field), commit), in ring_buffer_print_page_header()
627 long commit, write; in verify_event() local
636 commit = local_read(&page->page->commit); in verify_event()
638 if (addr >= (unsigned long)&page->page->data[commit] && in verify_event()
1462 local_set(&next_page->page->commit, 0); in rb_tail_page_update()
[all …]
Dring_buffer_benchmark.c17 local_t commit; member
110 unsigned long commit; in read_page() local
126 commit = local_read(&rpage->commit) & 0xfffff; in read_page()
127 for (i = 0; i < commit && !test_error ; i += inc) { in read_page()
/linux-6.12.1/include/soc/qcom/
Dtcs.h73 #define BCM_TCS_CMD(commit, valid, vote_x, vote_y) \ argument
74 (((commit) << BCM_TCS_CMD_COMMIT_SHFT) | \
/linux-6.12.1/Documentation/filesystems/xfs/
Dxfs-delayed-logging-design.rst60 commit boundaries, whilst "one shot" transactions are for a single atomic
198 that the common/fast path transaction will commit two linked transactions in a
259 sleep during the transaction commit process waiting for new log space to become
263 then wake up transaction commit in progress.
280 after the commit completes. Once the commit completes, we can sleep waiting for
334 implement long-running, multiple-commit permanent transactions.
457 the delayed logging tracking lock to commit the transaction. However, the
467 transaction commit while the item is locked in the transaction. Instead of
475 rewriting can all be done while the object is locked during transaction commit,
560 in transaction commit order, so when an object is relogged it is removed from
[all …]
/linux-6.12.1/drivers/tty/
Dtty_buffer.c73 bool restart = buf->head->commit != buf->head->read; in tty_buffer_unlock_exclusive()
107 p->commit = 0; in tty_buffer_reset()
237 buf->head->read = buf->head->commit; in tty_buffer_flush()
283 smp_store_release(&b->commit, b->used); in __tty_buffer_request_room()
415 count = smp_load_acquire(&head->commit) - head->lookahead; in lookahead_bufs()
486 count = smp_load_acquire(&head->commit) - head->read; in flush_to_ldisc()
516 smp_store_release(&tail->commit, tail->used); in tty_flip_buffer_commit()
/linux-6.12.1/drivers/gpu/drm/ci/xfails/
Dmsm-sdm845-skips.txt5 # https://gitlab.freedesktop.org/gfx-ci/linux/-/commit/4b49f902ec6f2bb382cbbf489870573f4b43371e
6 # https://gitlab.freedesktop.org/gfx-ci/linux/-/commit/38cdf4c5559771e2474ae0fecef8469f65147bc1
/linux-6.12.1/Documentation/doc-guide/
Dchecktransupdate.rst13 It uses ``git log`` command to track the latest English commit from the
14 translation commit (order by author date) and the latest English commits
49 commit 42fb9cfd5b18 ("Documentation: dev-tools: Add link to RV docs")

12345678910>>...13