| /linux/Documentation/devicetree/bindings/riscv/ |
| H A D | extensions.yaml | 115 in-and-around commit 7a6c8ae ("Fix text that describes vfmv.v.f 128 changes to interrupts as frozen at commit ccbddab ("Merge pull 134 ratified at commit d70011dde6c2 ("Update to ratified state") 140 ratified at commit d70011dde6c2 ("Update to ratified state") 147 ratified at commit a28bfae (Ratified (#7)) of riscv-state-enable. 153 behavioural changes to interrupts as frozen at commit ccbddab 159 and mode-based filtering as ratified at commit 01d1df0 ("Add ability 165 ratified at commit d70011dde6c2 ("Update to ratified state") 171 ratified at commit 3f9ed34 ("Add ability to manually trigger 223 PTE/PMD entry as ratified at commit 28bde925e7a7 ("PTE Reserved [all …]
|
| /linux/tools/docs/ |
| H A D | checktransupdate.py | 7 commit to find the latest english commit from the translation commit 22 commit 42fb9cfd5b18 ("Documentation: dev-tools: Add link to RV docs") 43 def get_latest_commit_from(file_path, commit): argument 44 """Get the latest commit from the specified commit for the specified file""" 45 command = f"git log --pretty=format:%H%n%aD%n%cD%n%n%B {commit} -1 -- {file_path}" 64 """Get the latest origin commit from the translation commit""" 69 logging.debug("tracked origin commit id: %s", o_from_t["hash"]) 74 """Get the latest origin commit from the formatted translation commit: 75 (1) update to commit HASH (TITLE) 76 (2) Update the translation through commit HASH (TITLE) [all …]
|
| /linux/fs/ubifs/ |
| H A D | commit.c | 12 * This file implements functions that manage the running of the commit process. 14 * commit and those functions are called here. 16 * The commit is the process whereby all updates to the index and LEB properties 21 * The commit is split into two parts named "commit start" and "commit end". 22 * During commit start, the commit process has exclusive access to the journal 23 * by holding the commit semaphore down for writing. As few I/O operations as 24 * possible are performed during commit start, instead the nodes that are to be 25 * written are merely identified. During commit end, the commit semaphore is no 27 * to use the file system while the bulk of the commit I/O is performed. The 28 * purpose of this two-step approach is to prevent the commit from causing any [all …]
|
| H A D | log.c | 161 * %-EAGAIN if commit is required, and a negative error code in case of 205 dbg_log("bud bytes %lld (%lld max), require commit", in ubifs_add_bud_to_log() 213 * If the journal is full enough - start background commit. Note, it is in ubifs_add_bud_to_log() 219 dbg_log("bud bytes %lld (%lld max), initiate BG commit", in ubifs_add_bud_to_log() 331 * If the commit does not finish, the recovery will need in remove_buds() 334 * commit i.e. do not allow them to be garbage in remove_buds() 344 * ubifs_log_start_commit - start commit. 348 * The commit operation starts with writing "commit start" node to the log and 350 * the commit has been finished. The commit start and reference nodes are 351 * written in one go to the nearest empty log LEB (hence, when commit is [all …]
|
| H A D | orphan.c | 15 * (unlinked) and then a commit is run. In the normal course of events the inode 37 * the commit is run, are written to the orphan area in 1 or more orphan nodes. 177 * ubifs_orphan_start_commit - start commit of orphans. 180 * Start commit of orphans. 199 dbg_cmt("%d orphans to commit", c->cmt_orphans); in ubifs_orphan_start_commit() 331 /* Mark the last node of the commit */ in write_orph_node() 343 * write_orph_nodes - write orphan nodes until there are no more to commit. 347 * This function writes orphan nodes for all the orphans to commit. On success, 377 * to commit. The list is in the order that the orphans were added, and the 422 * commit_orphans - commit orphans. [all …]
|
| H A D | tnc_commit.c | 17 * make_idx_node - make an index node for fill-the-gaps method of TNC commit. 156 * find_old_idx - find an index node obsoleted since the last commit start. 218 * method of TNC commit. 326 * get_leb_cnt - calculate the number of empty LEBs needed to commit. 328 * @cnt: number of znodes to commit 330 * This function returns the number of empty LEBs needed to commit @cnt znodes 349 * @cnt: number of dirty znodes to commit. 352 * method of TNC commit. 387 /* Try to commit anyway */ in layout_in_gaps() 556 * layout_commit - determine positions of index nodes to commit. [all …]
|
| /linux/scripts/ |
| H A D | git-resolve.sh | 6 echo "Usage: $(basename "$0") [--selftest] [--force] <commit-id> [commit-subject]" 7 …echo "Resolves a short git commit ID to its full SHA-1 hash, particularly useful for fixing refere… 11 echo " --force Try to find commit by subject if ID lookup fails" 12 echo " commit-id Short git commit ID to resolve" 13 echo " commit-subject Optional commit subject to help resolve between multiple matches" 37 # Split input into commit ID and subject 50 # Get all possible matching commit IDs 108 '12345678' # Non-existent commit 109 '12345 ("I'\''m a dummy commit")' # Valid prefix but wrong subject 121 "" # Expect empty output for non-existent commit [all …]
|
| H A D | checkkconfigsymbols.py | 53 parser.add_argument('-c', '--commit', dest='commit', action='store', 55 help="check if the specified commit (hash) introduces " 87 if args.commit and args.diff: 94 if args.commit or args.diff: 103 if args.commit: 104 if args.commit.startswith('HEAD'): 105 sys.exit("The --commit option can't use the HEAD ref") 125 if args.sim and not args.commit and not args.diff: 137 if args.commit or args.diff: 140 # get commit range [all …]
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_atomic_helper.c | 54 * This helper library provides implementations of check and commit functions on 61 * drm_atomic_helper_check() and for the commit callback with 335 * atomic check or commit, this is racy. But that's OK: all we care in update_connector_routing() 1357 * Drivers can use this for building their own atomic commit if they don't have 1513 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs 1521 * drm_atomic_helper_commit_planes(), which is what the default commit function 1617 else if (funcs->commit) in crtc_enable() 1618 funcs->commit(crtc); in crtc_enable() 1659 else if (funcs->commit) in encoder_bridge_enable() 1660 funcs->commit(encoder); in encoder_bridge_enable() [all …]
|
| /linux/fs/jfs/ |
| H A D | jfs_txnmgr.h | 27 u16 xflag; /* tx commit type */ 28 u16 flag; /* tx commit state */ 42 /* commit management */ 43 struct list_head cqueue; /* commit queue list */ 44 s32 clsn; /* commit lsn */ 46 s32 pn; /* commit record log page number */ 47 s32 eor; /* commit record eor */ 48 wait_queue_head_t gcwait; /* group commit event list: 50 * event for group commit completion. 61 /* commit flags: tblk->xflag */ [all …]
|
| H A D | jfs_logmgr.c | 23 * group commit: 24 * transactions which wrote COMMIT records in the same in-memory 28 * TBD lazy commit: 30 * containing it COMMIT is paged out when it becomes full; 34 * . a per log lock serialize group commit. 86 * log group commit serialization (per log) 193 uint commit; /* # of commit */ member 276 * commit time to allow forwarding log syncpt past log in lmLog() 337 * PARAMETER: cd - commit descriptor 496 INCREMENT(lmStat.commit); /* # of commit */ in lmWriteRecord() [all …]
|
| /linux/tools/testing/ktest/examples/include/ |
| H A D | patchcheck.conf | 4 # commit between the two. The build test will look at what files the 5 # commit has touched, and if any of those files produce a warning, then 9 # PATCH_START is the commit to begin with and PATCH_END is the commit 11 # and then testing each commit and doing a git rebase --continue. 38 # Change PATCH_TEST to run some test for each patch. Each commit that is 52 # but you do not care about it, set IGNORE_WARNINGS to that commit(s) 59 # touched by the commit. To detect these kinds of warnings, you 73 # Checkout the commit before the patches to test, 84 # from this commit instead of the PATCH_START commit.
|
| H A D | bisect.conf | 21 # You must set the commit that was considered good (git bisect good) 23 # You must set the commit that was considered bad (git bisect bad) 35 # set to 1 will check both that the good commit works and the bad 36 # commit fails. If you only want to check one or the other, 58 # not want to continue the bisect on that commit that failed. 59 # By setting BISECT_START to a new commit. ktest.pl will checkout 60 # that commit after it has performed the 'git bisect replay' but 66 # if the commit was good or bad. Instead, it will ask you to tell 67 # it if the current commit was good. In the mean time, you could 71 # the git bisect. You can even change what commit it is currently at.
|
| /linux/fs/ext4/ |
| H A D | fast_commit.c | 25 * don't have replay code, fast commit falls back to full commits. 45 * Commit Operation 49 * to disk during the commit operation. We also maintain a list of inodes 50 * that need to be committed during a fast commit in another in memory queue of 51 * inodes. During the commit operation, we commit in the following order: 60 * [4] Mark all the fast commit eligible inodes as undergoing fast commit 65 * will block until those inodes have finished the fast commit. 66 * [6] Commit all the directory entry updates in the fast commit space. 67 * [7] Commit all the changed inodes in the fast commit space and clear 75 * Fast Commit Ineligibility [all …]
|
| H A D | fast_commit.h | 11 /* Fast commit tags */ 24 /* On disk fast commit tlv value structures */ 26 /* Fast commit on disk tag length structure */ 77 * Fast commit status codes 87 * Fast commit ineligiblity reasons: 106 * system used by fast commit code. 130 * Physical block regions added to different inodes due to fast commit 143 * Fast commit replay state.
|
| /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/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/tools/testing/selftests/tc-testing/tc-tests/actions/ |
| H A D | ct.json | 139 "name": "Try ct with zone, commit", 155 "cmdUnderTest": "$TC actions add action ct zone 404 commit index 42", 158 "matchPattern": "action order [0-9]*: ct commit zone 404 pipe.*index 42 ref", 166 "name": "Try ct with zone, commit, mark", 182 "cmdUnderTest": "$TC actions add action ct zone 404 commit mark 0x42 index 42", 185 "matchPattern": "action order [0-9]*: ct commit mark 66 zone 404 pipe.*index 42 ref", 193 "name": "Try ct with zone, commit, mark, nat", 209 …"cmdUnderTest": "$TC actions add action ct zone 404 commit mark 0x42 nat src addr 5.5.5.7 index 42… 212 …"matchPattern": "action order [0-9]*: ct commit mark 66 zone 404 nat src addr 5.5.5.7 pipe.*index … 236 …"cmdUnderTest": "$TC actions add action ct commit nat src addr 5.5.5.7-5.5.6.0 port 1000-2000 inde… [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/include/drm/ |
| H A D | drm_atomic.h | 38 * This structure is used to track pending modeset changes and atomic commit on 46 * atomic commit thread hardware 77 * DRM CRTC for this commit. 95 * commit is sent to userspace, or when an out-fence is singalled. Note 107 * Will be signalled when all hw register changes for this commit have 156 * used by the free code to remove the second reference if commit fails. 177 * Before a commit, and the call to 179 * the same state than @new_state. After a commit, it points to 198 * Before a commit, and the call to 200 * the same state than @new_state. After a commit, it points to [all …]
|
| /linux/Documentation/process/ |
| H A D | backporting.rst | 30 Sometimes the patch you are backporting already exists as a git commit, 58 knows the precise history of an existing commit, so it will know when 80 commit <upstream commit> upstream 84 [ Upstream commit <upstream commit> ] 147 It's important to always identify the commit or commits that caused the 162 the patch you are picking (``<commit>``), i.e.:: 164 git log HEAD..<commit>^ -- <path> 170 git log -L:'\<function\>':<path> HEAD..<commit>^ 185 git log -G'regex' HEAD..<commit>^ -- <path> 199 need to run it against the parent commit of the patch you are [all …]
|
| /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/fs/xfs/ |
| H A D | xfs_log_cil.c | 28 * space we require from transactions as they commit. To ensure we reserve all 31 * first transaction commit. 43 * transaction overhead reservation from the first transaction commit. in xlog_cil_ticket_alloc() 63 * the recorded commit sequence number. 67 * transaction commit process when deciding what to format into the item. 78 * li_seq is written on the first commit of a log item to record the in xlog_item_in_current_chkpt() 226 * the requirement to allocate the disposable buffer during the commit if: 234 * the CIL and we need a CIL commit to occur to free memory. 243 * process, we cannot share the buffer between the transaction commit (which 580 * commit int in xlog_cil_insert_items() [all...] |
| /linux/tools/testing/selftests/rcutorture/bin/ |
| H A D | kvm-check-branches.sh | 17 # see which commit came from which branch. 62 # Each pass through this loop tests one commit. 67 echo ' --- commit ' $i from branch $gitbr 73 # Test the specified commit. 75 echo git checkout return code: $? "(Commit $ntry: $i)" 78 echo kvm.sh return code $ret for commit $i from branch $gitbr 92 # Go back to the original commit.
|
| /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 …]
|