| /linux/drivers/gpu/drm/i915/display/ |
| H A D | intel_global_state.c | 53 struct intel_global_commit *commit; in commit_new() local 55 commit = kzalloc_obj(*commit); in commit_new() 56 if (!commit) in commit_new() 59 init_completion(&commit->done); in commit_new() 60 kref_init(&commit->ref); in commit_new() 62 return commit; in commit_new() 67 struct intel_global_commit *commit = in __commit_free() local 68 container_of(kref, typeof(*commit), ref); in __commit_free() 70 kfree(commit); in __commit_free() 73 static struct intel_global_commit *commit_get(struct intel_global_commit *commit) in commit_get() argument [all …]
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_atomic_helper.c | 1684 else if (funcs->commit) in drm_atomic_helper_commit_crtc_enable() 1685 funcs->commit(crtc); in drm_atomic_helper_commit_crtc_enable() 1735 else if (funcs->commit) in drm_atomic_helper_commit_encoder_bridge_enable() 1736 funcs->commit(encoder); in drm_atomic_helper_commit_encoder_bridge_enable() 1951 struct drm_crtc_commit *commit = state->crtcs[i].commit; in drm_atomic_helper_wait_for_flip_done() local 1956 if (!crtc || !commit) in drm_atomic_helper_wait_for_flip_done() 1959 ret = wait_for_completion_timeout(&commit->flip_done, 10 * HZ); in drm_atomic_helper_wait_for_flip_done() 2162 if (old_plane_state->commit && in drm_atomic_helper_async_check() 2163 !try_wait_for_completion(&old_plane_state->commit->hw_done)) { in drm_atomic_helper_async_check() 2377 struct drm_crtc_commit *commit, *stall_commit = NULL; in stall_checks() local [all …]
|
| /linux/scripts/ |
| H A D | checkkconfigsymbols.py | 87 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 …]
|
| H A D | git-resolve.sh | 109 '12345 ("I'\''m a dummy commit")' # Valid prefix but wrong subject 195 echo "Error: '$1' does not match any git commit"
|
| /linux/Documentation/trace/ |
| H A D | ring-buffer-design.rst | 191 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/Documentation/arch/riscv/ |
| H A D | hwprobe.rst | 75 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"). 191 manual starting from commit 95cf1f9 ("Add changes requested by Ved 195 supported as defined in the RISC-V ISA manual starting from commit 217 supported as defined in the RISC-V ISA manual starting from commit [all …]
|
| /linux/tools/docs/ |
| H A D | checktransupdate.py | 7 commit to find the latest english commit from the translation commit 24 commit 42fb9cfd5b18 ("Documentation: dev-tools: Add link to RV docs") 45 def get_latest_commit_from(file_path, commit): 46 """Get the latest commit from the specified commit for the specified file""" 47 command = f"git log --pretty=format:%H%n%aD%n%cD%n%n%B {commit} -1 -- {file_path}" 66 """Get the latest origin commit from the translation commit""" 43 get_latest_commit_from(file_path, commit) global() argument 116 pretty_output(commit) global() argument 124 valid_commit(commit) global() argument [all...] |
| /linux/drivers/interconnect/qcom/ |
| H A D | bcm-voter.c | 128 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/Documentation/filesystems/ext4/ |
| H A D | journal.rst | 15 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/Documentation/filesystems/ |
| H A D | journalling.rst | 66 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. 140 `journal->j_fc_cleanup_cb`: Cleanup function called after every full commit and 141 fast commit. 143 `journal->j_fc_replay_cb`: Replay function called for replay of fast commit 148 :c:func:`jbd2_fc_begin_commit()`. Once a fast commit is done, the client 151 commit immediately after stopping the fast commit it can do so by calling 152 :c:func:`jbd2_fc_end_commit_fallback()`. This is useful if fast commit operation [all …]
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | README.rst | 148 __ 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/Documentation/driver-api/acpi/ |
| H A D | linuxized-acpica.rst | 127 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/kernel/trace/ |
| H A D | ring_buffer_benchmark.c | 17 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()
|
| H A D | ring_buffer.c | 365 local_set(&bpage->commit, 0); in rb_init_page() 370 return local_read(&bpage->page->commit); in rb_page_commit() 599 (unsigned int)offsetof(typeof(field), commit), in ring_buffer_print_page_header() 600 (unsigned int)sizeof(field.commit), in ring_buffer_print_page_header() 605 (unsigned int)offsetof(typeof(field), commit), in ring_buffer_print_page_header() 642 long commit, write; in verify_event() local 651 commit = local_read(&page->page->commit); in verify_event() 653 if (addr >= (unsigned long)&page->page->data[commit] && in verify_event() 1484 local_set(&next_page->page->commit, 0); in rb_tail_page_update() 1801 if ((unsigned)local_read(&subbuf->commit) > subbuf_size) { in rb_cpu_meta_valid() [all …]
|
| /linux/tools/testing/selftests/coredump/ |
| H A D | README.rst | 26 * commit 0a1eb2d474ed ("fs/proc: Stop reporting eip and esp in /proc/PID/stat") changed kstkesp to 29 * commit fd7d56270b52 ("fs/proc: Report eip/esp in /prod/PID/stat for coredumping") fixed it for the 32 * commit cb8f381f1613 ("fs/proc/array.c: allow reporting eip/esp for all coredumping threads") fixed 35 * commit 92307383082d ("coredump: Don't perform any cleanups before dumping core") broke it again
|
| /linux/Documentation/doc-guide/ |
| H A D | checktransupdate.rst | 13 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")
|
| /linux/include/drm/ |
| H A D | drm_atomic.h | 214 struct drm_crtc_commit *commit; member 662 static inline struct drm_crtc_commit *drm_crtc_commit_get(struct drm_crtc_commit *commit) in drm_crtc_commit_get() argument 664 kref_get(&commit->ref); in drm_crtc_commit_get() 665 return commit; in drm_crtc_commit_get() 675 static inline void drm_crtc_commit_put(struct drm_crtc_commit *commit) in drm_crtc_commit_put() argument 677 kref_put(&commit->ref, __drm_crtc_commit_free); in drm_crtc_commit_put() 680 int drm_crtc_commit_wait(struct drm_crtc_commit *commit);
|
| /linux/Documentation/translations/zh_CN/maintainer/ |
| H A D | modifying-patches.rst | 40 commit 1c40279960bcd7d52dbdf1d466b20d24b99176c8 upstream. 48 [backport of 2.6 commit b7acbdfbd1f277c1eb23f344f899cfa4cd0bf36a]
|
| H A D | configure-git.rst | 58 test -x "$GIT_DIR/hooks/commit-msg" && 59 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
|
| /linux/drivers/pwm/ |
| H A D | pwm-mtk-disp.c | 37 unsigned int commit; member 157 mtk_disp_pwm_update_bits(mdp, mdp->data->commit, in mtk_disp_pwm_apply() 160 mtk_disp_pwm_update_bits(mdp, mdp->data->commit, in mtk_disp_pwm_apply() 283 .commit = 0x8,
|
| /linux/Documentation/translations/zh_CN/admin-guide/ |
| H A D | bug-bisect.rst | 45 $ git bisect bad [commit] 49 $ git bisect good [commit]
|
| /linux/Documentation/maintainer/ |
| H A D | modifying-patches.rst | 30 to insert an indication of the origin of a patch at the top of the commit 38 commit 1c40279960bcd7d52dbdf1d466b20d24b99176c8 upstream. 46 [backport of 2.6 commit b7acbdfbd1f277c1eb23f344f899cfa4cd0bf36a]
|
| H A D | rebasing-and-merging.rst | 30 - Changing the parent (starting) commit upon which a series of patches is 37 commits, adding patches, adding tags to commit changelogs, or changing 64 exceptions, for example, a broken commit in a tree like this should be 71 - If you must reparent a repository, do not pick some random kernel commit 85 patch series that has clearly been reparented, often to a random commit, 118 on such a pull request will almost certainly generate a merge commit; that 120 the --no-ff flag to force the addition of a merge commit in the rare cases 158 sure to document *why* it was required in the commit message. As always, 159 merge to a well-known stable point, rather than to some random commit. 190 as always, in such situations, the merge commit should explain why the
|
| /linux/Documentation/translations/zh_TW/admin-guide/ |
| H A D | bug-bisect.rst | 48 $ git bisect bad [commit] 52 $ git bisect good [commit]
|
| /linux/Documentation/process/ |
| H A D | stable-kernel-rules.rst | 98 git cherry-pick <this commit> 117 git cherry-pick <this commit> 144 stable@vger.kernel.org containing the subject of the patch, the commit ID, 155 to. When doing so, you must note the upstream commit ID in the changelog of your 156 submission with a separate line above the commit text, like this:: 158 commit <sha1> upstream. 162 [ Upstream commit <sha1> ] 199 tags will be collected and added to the release commit.
|