Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/gpu/drm/omapdrm/
Domap_drv.c89 static void omap_atomic_complete(struct omap_atomic_state_commit *commit) in omap_atomic_complete() argument
91 struct drm_device *dev = commit->dev; in omap_atomic_complete()
93 struct drm_atomic_state *old_state = commit->state; in omap_atomic_complete()
111 spin_lock(&priv->commit.lock); in omap_atomic_complete()
112 priv->commit.pending &= ~commit->crtcs; in omap_atomic_complete()
113 spin_unlock(&priv->commit.lock); in omap_atomic_complete()
115 wake_up_all(&priv->commit.wait); in omap_atomic_complete()
117 kfree(commit); in omap_atomic_complete()
122 struct omap_atomic_state_commit *commit = in omap_atomic_work() local
125 omap_atomic_complete(commit); in omap_atomic_work()
[all …]
Domap_drv.h116 } commit; member
/linux-4.4.14/drivers/gpu/drm/rcar-du/
Drcar_du_kms.c450 static void rcar_du_atomic_complete(struct rcar_du_commit *commit) in rcar_du_atomic_complete() argument
452 struct drm_device *dev = commit->dev; in rcar_du_atomic_complete()
454 struct drm_atomic_state *old_state = commit->state; in rcar_du_atomic_complete()
468 spin_lock(&rcdu->commit.wait.lock); in rcar_du_atomic_complete()
469 rcdu->commit.pending &= ~commit->crtcs; in rcar_du_atomic_complete()
470 wake_up_all_locked(&rcdu->commit.wait); in rcar_du_atomic_complete()
471 spin_unlock(&rcdu->commit.wait.lock); in rcar_du_atomic_complete()
473 kfree(commit); in rcar_du_atomic_complete()
478 struct rcar_du_commit *commit = in rcar_du_atomic_work() local
481 rcar_du_atomic_complete(commit); in rcar_du_atomic_work()
[all …]
Drcar_du_drv.h98 } commit; member
Drcar_du_drv.c183 init_waitqueue_head(&rcdu->commit.wait); in rcar_du_load()
/linux-4.4.14/drivers/gpu/drm/exynos/
Dexynos_drm_drv.c69 static void exynos_atomic_commit_complete(struct exynos_atomic_commit *commit) in exynos_atomic_commit_complete() argument
71 struct drm_device *dev = commit->dev; in exynos_atomic_commit_complete()
73 struct drm_atomic_state *state = commit->state; in exynos_atomic_commit_complete()
117 priv->pending &= ~commit->crtcs; in exynos_atomic_commit_complete()
122 kfree(commit); in exynos_atomic_commit_complete()
127 struct exynos_atomic_commit *commit = container_of(work, in exynos_drm_atomic_work() local
130 exynos_atomic_commit_complete(commit); in exynos_drm_atomic_work()
264 struct exynos_atomic_commit *commit; in exynos_atomic_commit() local
267 commit = kzalloc(sizeof(*commit), GFP_KERNEL); in exynos_atomic_commit()
268 if (!commit) in exynos_atomic_commit()
[all …]
Dexynos_drm_crtc.c49 if (exynos_crtc->ops->commit) in exynos_drm_crtc_mode_set_nofb()
50 exynos_crtc->ops->commit(exynos_crtc); in exynos_drm_crtc_mode_set_nofb()
Dexynos_drm_drv.h108 void (*commit)(struct exynos_drm_crtc *crtc); member
Dexynos5433_drm_decon.c481 .commit = decon_commit,
Dexynos7_drm_decon.c629 .commit = decon_commit,
Dexynos_drm_fimd.c880 .commit = fimd_commit,
/linux-4.4.14/drivers/gpu/drm/sti/
Dsti_drv.c36 private->commit.state = state; in sti_atomic_schedule()
37 schedule_work(&private->commit.work); in sti_atomic_schedule()
74 struct sti_private, commit.work); in sti_atomic_work()
76 sti_atomic_complete(private, private->commit.state); in sti_atomic_work()
90 mutex_lock(&private->commit.lock); in sti_atomic_commit()
91 flush_work(&private->commit.work); in sti_atomic_commit()
106 mutex_unlock(&private->commit.lock); in sti_atomic_commit()
145 mutex_init(&private->commit.lock); in sti_load()
146 INIT_WORK(&private->commit.work, sti_atomic_work); in sti_load()
Dsti_drv.h32 } commit; member
Dsti_tvout.c492 .commit = sti_dvo_encoder_commit,
545 .commit = sti_hda_encoder_commit,
594 .commit = sti_hdmi_encoder_commit,
/linux-4.4.14/Documentation/trace/
Dring-buffer-design.txt172 It is possible that the page swapped is the commit page and the tail page,
176 reader page commit page tail page
207 commit page - the page that last finished a write.
209 The commit page only is updated by the outermost writer in the
211 commit page.
227 +---------+ <--- given back to writer (current commit)
233 Write commit:
240 +---------+ <--- next position for write (current commit)
250 +---------+ <-- current commit
262 +---------+ <--(last full commit)
[all …]
Dftrace.txt478 commit overrun: Should always be zero.
/linux-4.4.14/scripts/
Dcheckkconfigsymbols.py80 if opts.commit and opts.diff:
87 if opts.commit or opts.diff:
96 if opts.commit:
112 if opts.commit or opts.diff:
118 if opts.commit:
119 commit_a = opts.commit + "~"
120 commit_b = opts.commit
Dget_maintainer.pl1457 foreach my $commit (@commits) {
1458 $commit =~ s/^\^//g;
1846 my $commit = "";
1850 $commit = $1 if ($line =~ m/$VCS_cmds{"commit_pattern"}/);
1865 if (@{$ref}[0] eq $commit &&
1874 [ ($commit, $subject, $type) ]);
2020 my $commit = join(" -r ", @commits);
2032 foreach my $commit (@commits) {
2061 my $commit = join(" -r ", @commits);
2092 foreach my $commit (@commits) {
[all …]
Dspelling.txt229 comit||commit
235 committ||commit
Dcheckpatch.pl694 my ($commit, $id, $desc) = @_;
698 my $output = `git log --no-color --format='%H %s' -1 $commit 2>&1`;
704 if ($lines[0] =~ /^error: short SHA1 $commit is ambiguous\./) {
714 …} elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the w…
/linux-4.4.14/Documentation/filesystems/
Dxfs-delayed-logging-design.txt48 This relogging is also used to implement long-running, multiple-commit
68 asynchronous. That is, they don't commit to disk until either a log buffer is
170 the delayed logging tracking lock to commit the transaction. However, the
180 transaction commit while the item is locked in the transaction. Instead of
188 rewriting can all be done while the object is locked during transaction commit,
272 in transaction commit order, so when an object is relogged it is removed from
306 formatted log items and a commit record at the tail. From a recovery
317 the transaction commit record, but tracking this requires us to have a
332 workloads, just like the existing transaction commit code does. This, however,
333 requires that we strictly order the commit records in the log so that
[all …]
Dbtrfs.txt75 commit=<seconds>
76 Set the interval of periodic commit, 30 seconds by default. Higher
123 prior transaction to commit as part of the current commit. This makes
Dext4.txt173 commit=nrsec (*) Ext4 can be told to sync all its data and metadata
280 force a commit and then a wait for the I/O
289 the "commit time". If the time that the
291 commit time, ext4 will try sleeping for the
292 commit time to see if other operations will join
293 the transaction. The commit time is capped by
298 min_batch_time=usec This parameter sets the commit time (as
308 commit operation. This defaults to 3, which is
321 journal commit, in the default data=ordered
Dsysfs-tagging.txt5 commit msg)
Docfs2.txt67 commit=nrsec (*) Ocfs2 can be told to sync all its data and metadata
Dlogfs.txt46 for the most recent commit entry, which contains a list of pointers to
Dsharedsubtree.txt900 2. commit phases.
917 source tree. Go to the commit phase
/linux-4.4.14/kernel/trace/
Dring_buffer_benchmark.c15 local_t commit; member
107 unsigned long commit; in read_page() local
122 commit = local_read(&rpage->commit) & 0xfffff; in read_page()
123 for (i = 0; i < commit && !test_error ; i += inc) { in read_page()
Dring_buffer.c285 local_t commit; /* write committed index */ member
323 local_set(&bpage->commit, 0); in rb_init_page()
334 return local_read(&((struct buffer_data_page *)page)->commit) in ring_buffer_page_len()
374 (unsigned int)offsetof(typeof(field), commit), in ring_buffer_print_page_header()
375 (unsigned int)sizeof(field.commit), in ring_buffer_print_page_header()
380 (unsigned int)offsetof(typeof(field), commit), in ring_buffer_print_page_header()
1062 local_set(&next_page->page->commit, 0); in rb_tail_page_update()
1867 return local_read(&bpage->page->commit); in rb_page_commit()
2419 local_set(&cpu_buffer->commit_page->page->commit, in rb_set_commit_to_write()
2430 local_set(&cpu_buffer->commit_page->page->commit, in rb_set_commit_to_write()
[all …]
/linux-4.4.14/drivers/tty/
Dtty_buffer.c69 restart = buf->head->commit != buf->head->read; in tty_buffer_unlock_exclusive()
102 p->commit = 0; in tty_buffer_reset()
229 buf->head->read = buf->head->commit; in tty_buffer_flush()
274 smp_store_release(&b->commit, b->used); in __tty_buffer_request_room()
380 smp_store_release(&buf->tail->commit, buf->tail->used); in tty_schedule_flip()
481 count = smp_load_acquire(&head->commit) - head->read; in flush_to_ldisc()
/linux-4.4.14/Documentation/
Dstable_kernel_rules.txt51 stable@vger.kernel.org containing the subject of the patch, the commit ID,
58 stable@vger.kernel.org. You must note the upstream commit ID in the
72 The upstream commit ID must be specified with a separate line above the commit
75 commit <sha1> upstream.
91 git cherry-pick <this commit>
99 git cherry-pick <this commit>
DSubmittingPatches140 system, git, as a "commit log". See #15, below.
171 If you want to refer to a specific commit, don't just refer to the
172 SHA-1 ID of the commit. Please also include the oneline summary of
173 the commit, to make it easier for reviewers to know what it is about.
187 If your patch fixes a bug in a specific commit, e.g. you found an issue using
482 to insert an indication of the origin of a patch at the top of the commit
490 commit 1c40279960bcd7d52dbdf1d466b20d24b99176c8 upstream.
498 [backport of 2.6 commit b7acbdfbd1f277c1eb23f344f899cfa4cd0bf36a]
593 A Fixes: tag indicates that the patch fixes an issue in a previous commit. It
693 especially useful for people who might be searching the commit logs
[all …]
Dcoccinelle.txt85 For each semantic patch, a commit message is proposed. It gives a
136 about semantic patches displayed, and no commit message proposed.
Dadding-syscalls.txt232 To summarize, you need a commit that includes:
507 commit: https://lkml.org/lkml/2014/11/19/254
516 - commit 75069f2b5bfb ("vfs: renumber FMODE_NONOTIFY and add to uniqueness
518 - commit 12ed2e36c98a ("fanotify: FMODE_NONOTIFY and __O_SYNC in sparc
520 - commit bb458c644a59 ("Safer ABI for O_TMPFILE")
Dmd-cluster.txt21 - commit the write to all mirrors
Dvgaarbiter.txt189 [0] http://cgit.freedesktop.org/xorg/xserver/commit/?id=4b42448a2388d40f257774fbffdccaea87bd0347
Dkernel-per-CPU-kthreads.txt194 commit prevents OS jitter due to vmstat_update() on
Dmemory-barriers.txt2741 <B:modify p=&v> <D:commit p=&v>
2746 <C:commit v=2>
2754 barrier between the loads. This will force the cache to commit its coherency
2766 <B:modify p=&v> <D:commit p=&v>
2770 <C:commit v=2>
/linux-4.4.14/Documentation/vm/
Dovercommit-accounting15 2 - Don't overcommit. The total address space commit
68 o We account mprotect changes in commit
72 o We report the commit status in /proc
/linux-4.4.14/drivers/md/persistent-data/
Ddm-space-map.h47 int (*commit)(struct dm_space_map *sm); member
117 return sm->commit(sm); in dm_sm_commit()
Ddm-space-map-common.c516 r = ll->commit(ll); in sm_ll_commit()
609 ll->commit = metadata_ll_commit; in sm_ll_new_metadata()
645 ll->commit = metadata_ll_commit; in sm_ll_open_metadata()
705 ll->commit = disk_ll_commit; in sm_ll_new_disk()
741 ll->commit = disk_ll_commit; in sm_ll_open_disk()
Ddm-space-map-common.h80 commit_fn commit; member
Ddm-space-map-metadata.c558 .commit = sm_metadata_commit,
685 .commit = sm_bootstrap_commit,
Ddm-space-map-disk.c235 .commit = sm_disk_commit,
/linux-4.4.14/drivers/gpu/drm/tegra/
Ddrm.c33 tegra->commit.state = state; in tegra_atomic_schedule()
34 schedule_work(&tegra->commit.work); in tegra_atomic_schedule()
71 commit.work); in tegra_atomic_work()
73 tegra_atomic_complete(tegra, tegra->commit.state); in tegra_atomic_work()
87 mutex_lock(&tegra->commit.lock); in tegra_atomic_commit()
88 flush_work(&tegra->commit.work); in tegra_atomic_commit()
103 mutex_unlock(&tegra->commit.lock); in tegra_atomic_commit()
148 mutex_init(&tegra->commit.lock); in tegra_drm_load()
149 INIT_WORK(&tegra->commit.work, tegra_atomic_work); in tegra_drm_load()
Ddrm.h59 } commit; member
/linux-4.4.14/fs/jbd2/
DMakefile7 jbd2-objs := transaction.o commit.o recovery.o checkpoint.o revoke.o journal.o
/linux-4.4.14/include/drm/
Ddrm_crtc_helper.h82 void (*commit)(struct drm_crtc *crtc); member
150 void (*commit)(struct drm_encoder *encoder); member
/linux-4.4.14/firmware/
DREADME.AddingFirmware27 Your commit should include an update to the WHENCE file clearly
34 Ideally, your commit should contain a Signed-Off-By: from someone
/linux-4.4.14/scripts/dtc/
Dupdate-dtc-source.sh63 git commit -e -v -m "scripts/dtc: Update to upstream version [CHANGEME]"
/linux-4.4.14/fs/ubifs/
DMakefile4 ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
/linux-4.4.14/Documentation/networking/
Dnetdev-FAQ.txt129 to simply clone the repo, and then git grep the mainline commit ID, e.g.
143 the upstream commit ID and why you think it should be a stable candidate.
153 to request a commit be added the day after it appears should be avoided.
160 stable, then ensure you write a decent commit log that describes who
162 bug was introduced. If you do that properly, then the commit will
167 stable that does _not_ belong in the commit log, then use the three
215 doing so. If your change is a bug-fix, make sure your commit log
Dswitchdev.txt383 to fail here. The second phase is to "commit" the actual changes.
390 During the "commit" phase, the driver gets the object by:
Dnetlink_mmap.txt204 See commit 4682a0358639b29cf ("netlink: Always copy on mmap TX.").
DLICENSE.qlcnic26 Foundation's software and to any other program whose authors commit to
DLICENSE.qlge26 Foundation's software and to any other program whose authors commit to
/linux-4.4.14/drivers/gpu/drm/i915/
Ddvo.h87 void (*commit)(struct intel_dvo_device *dvo); member
/linux-4.4.14/drivers/gpu/drm/udl/
Dudl_encoder.c60 .commit = udl_encoder_commit,
Dudl_modeset.c408 .commit = udl_crtc_commit,
/linux-4.4.14/drivers/staging/wilc1000/
Dwilc_wlan.h307 int commit, u32 drvHandler);
308 int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler);
Dwilc_wlan.c1758 int commit, u32 drvHandler) in wilc_wlan_cfg_set() argument
1777 if (commit) { in wilc_wlan_cfg_set()
1798 int wilc_wlan_cfg_get(int start, u32 wid, int commit, u32 drvHandler) in wilc_wlan_cfg_get() argument
1816 if (commit) { in wilc_wlan_cfg_get()
/linux-4.4.14/Documentation/laptops/
Dlaptop-mode.txt96 is not done anymore. Combined with a higher commit value (also 10 minutes) for
155 with appropriate commit interval options. When this option is set to 0, this
252 # Shall we remount journaled fs. with appropriate commit interval? (1=yes)
360 # Shall we remount journaled fs. with appropriate commit interval? (1=yes)
496 # Find out the state of a numbered option (e.g. "commit=NNN") in
504 # parse_mount_opts_wfstab /dev/hda1 commit defaults,commit=7
506 # If fstab contains, say, "commit=3,rw" for this filesystem, then the
507 # result will be "rw,commit=3".
514 # Watch for a default commit in fstab
600 PARSEDOPTS="$(parse_mount_opts commit "$OPTS")"
[all …]
/linux-4.4.14/fs/reiserfs/
Djournal.c1995 struct reiserfs_journal_commit *commit) in journal_compare_desc_commit() argument
1997 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) || in journal_compare_desc_commit()
1998 get_commit_trans_len(commit) != get_desc_trans_len(desc) || in journal_compare_desc_commit()
1999 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max || in journal_compare_desc_commit()
2000 get_commit_trans_len(commit) <= 0) { in journal_compare_desc_commit()
2018 struct reiserfs_journal_commit *commit; in journal_transaction_is_valid() local
2068 commit = (struct reiserfs_journal_commit *)c_bh->b_data; in journal_transaction_is_valid()
2069 if (journal_compare_desc_commit(sb, desc, commit)) { in journal_transaction_is_valid()
2075 get_commit_trans_id(commit), in journal_transaction_is_valid()
2076 get_commit_trans_len(commit)); in journal_transaction_is_valid()
[all …]
/linux-4.4.14/include/linux/netfilter/
Dnfnetlink.h29 int (*commit)(struct sk_buff *skb); member
/linux-4.4.14/drivers/gpu/drm/bochs/
Dbochs_kms.c142 .commit = bochs_crtc_commit,
185 .commit = bochs_encoder_commit,
/linux-4.4.14/net/openvswitch/
Dconntrack.c50 u8 commit : 1; member
512 if (info->commit) in ovs_ct_execute()
597 info->commit = true; in parse_ct()
731 if (ct_info->commit && nla_put_flag(skb, OVS_CT_ATTR_COMMIT)) in ovs_ct_action_to_attr()
/linux-4.4.14/scripts/coccinelle/misc/
Dirqf_oneshot.cocci1 /// Since commit 1c6c69525b40 ("genirq: Reject bogus threaded irq requests")
/linux-4.4.14/drivers/gpu/drm/gma500/
Dmdfld_tpo_vid.c111 .commit = mdfld_dsi_dpi_commit,
Dmdfld_tmd_vid.c186 .commit = mdfld_dsi_dpi_commit,
Dcdv_intel_crt.c222 .commit = gma_encoder_commit,
Dcdv_intel_hdmi.c261 .commit = gma_encoder_commit,
Doaktrail_lvds.c218 .commit = oaktrail_lvds_commit,
Dpsb_intel_display.c437 .commit = gma_crtc_commit,
Dcdv_intel_lvds.c521 .commit = cdv_intel_lvds_commit,
Dtc35876x-dsi-lvds.c784 .commit = mdfld_dsi_dpi_commit,
Doaktrail_crtc.c664 .commit = gma_crtc_commit,
Dpsb_intel_lvds.c644 .commit = psb_intel_lvds_commit,
Doaktrail_hdmi.c607 .commit = gma_encoder_commit,
Dmdfld_intel_display.c1033 .commit = gma_crtc_commit,
Dcdv_intel_display.c981 .commit = gma_crtc_commit,
Dcdv_intel_dp.c1925 .commit = cdv_intel_dp_commit,
Dpsb_intel_sdvo.c1835 .commit = gma_encoder_commit,
/linux-4.4.14/Documentation/cpu-freq/
Dindex.txt36 There is a CPU frequency changing CVS commit and general list where
/linux-4.4.14/arch/arm/mach-omap2/
Dsram242x.S68 str r10, [r11] @ commit to DLLA_CTRL
193 str r1, [r2] @ commit to SDRC_DLLB_CTRL
306 str r10, [r11] @ commit to DLLA_CTRL
Dsram243x.S68 str r10, [r11] @ commit to DLLA_CTRL
193 str r1, [r2] @ commit to SDRC_DLLB_CTRL
306 str r10, [r11] @ commit to DLLA_CTRL
/linux-4.4.14/Documentation/DocBook/
Dgpu.xml.db135 API-drm-atomic-commit
136 API-drm-atomic-async-commit
255 API-drm-atomic-helper-commit-modeset-disables
256 API-drm-atomic-helper-commit-modeset-enables
258 API-drm-atomic-helper-commit
260 API-drm-atomic-helper-commit-planes
261 API-drm-atomic-helper-commit-planes-on-crtc
453 API-drm-flip-work-commit
Dfilesystems.xml.db239 API-jbd2-journal-force-commit-nested
240 API-jbd2-journal-force-commit
Dnetworking.xml.db193 API-xdr-commit-encode
368 API-eth-commit-mac-addr-change
/linux-4.4.14/Documentation/video4linux/
Domap4_camera.txt45 Tag: v3.3 (commit c16fa4f2ad19908a47c63d8fa436a1178438c7e7)
/linux-4.4.14/fs/jfs/
Djfs_txnmgr.h273 struct commit { struct
Djfs_txnmgr.c165 struct tlock * tlck, struct commit * cd);
176 struct commit * cd);
1141 struct commit cd; in txCommit()
1381 static int txLog(struct jfs_log * log, struct tblock * tblk, struct commit * cd) in txLog()
1439 struct tlock * tlck, struct commit * cd) in diLog()
Djfs_logmgr.c206 uint commit; /* # of commit */ member
517 INCREMENT(lmStat.commit); /* # of commit */ in lmWriteRecord()
2507 lmStat.commit, in jfs_lmstats_proc_show()
/linux-4.4.14/drivers/gpu/drm/imx/
Ddw_hdmi-imx.c144 .commit = dw_hdmi_imx_encoder_commit,
Dparallel-display.c171 .commit = imx_pd_encoder_commit,
Dipuv3-crtc.c278 .commit = ipu_crtc_commit,
Dimx-tve.c385 .commit = imx_tve_encoder_commit,
Dimx-ldb.c381 .commit = imx_ldb_encoder_commit,
/linux-4.4.14/Documentation/ja_JP/
DSubmittingPatches375 commit 4cf1043593db6a337f10e006c23c69e5fc93e722 upstream
383 [backport of 2.6 commit b7acbdfbd1f277c1eb23f344f899cfa4cd0bf36a]
/linux-4.4.14/drivers/gpu/drm/cirrus/
Dcirrus_mode.c379 .commit = cirrus_crtc_commit,
472 .commit = cirrus_encoder_commit,
/linux-4.4.14/drivers/usb/host/
Dpci-quirks.c189 goto commit; in usb_amd_find_chipset_info()
203 goto commit; in usb_amd_find_chipset_info()
224 commit: in usb_amd_find_chipset_info()
/linux-4.4.14/drivers/gpu/drm/rockchip/
Ddw_hdmi-rockchip.c225 .commit = dw_hdmi_rockchip_encoder_commit,
Drockchip_drm_vop.c1256 .commit = vop_crtc_commit,
/linux-4.4.14/net/netfilter/
Dnfnetlink.c317 if (!ss->commit || !ss->abort) { in nfnetlink_rcv_batch()
432 ss->commit(oskb); in nfnetlink_rcv_batch()
Dnf_tables_api.c4118 .commit = nf_tables_commit,
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/
Ddac.c511 .commit = nv04_dac_commit,
522 .commit = nv04_dac_commit,
Dtvnv04.c199 .commit = nv04_tv_commit,
Ddfp.c659 .commit = nv04_dfp_commit,
670 .commit = nv04_dfp_commit,
Dtvnv17.c778 .commit = nv17_tv_commit,
Dcrtc.c1097 .commit = nv_crtc_commit,
/linux-4.4.14/Documentation/devicetree/bindings/
Dsubmitting-patches.txt26 followed as of commit bff5da4335256513497cc8c79f9a9d1665e09864
/linux-4.4.14/drivers/gpu/drm/radeon/
Dradeon_legacy_encoders.c268 .commit = radeon_legacy_lvds_commit,
714 .commit = radeon_legacy_primary_dac_commit,
879 .commit = radeon_legacy_tmds_int_commit,
1022 .commit = radeon_legacy_tmds_ext_commit,
1680 .commit = radeon_legacy_tv_dac_commit,
Dradeon_dp_mst.c592 .commit = radeon_mst_encoder_commit,
Datombios_encoders.c2644 .commit = radeon_atom_ext_commit,
2654 .commit = radeon_atom_encoder_commit,
2664 .commit = radeon_atom_encoder_commit,
Dradeon_legacy_crtc.c1115 .commit = radeon_crtc_commit,
Datombios_crtc.c2212 .commit = atombios_crtc_commit,
/linux-4.4.14/Documentation/device-mapper/
Dpersistent-data.txt47 the same transaction so performance is reasonable. The commit method
Ddm-raid.txt252 1.4.1 RAID10 fix redundancy validation checks (commit 55ebbb5).
/linux-4.4.14/Documentation/cgroups/
Dmemcg_test.txt39 3. charge-commit-cancel
47 At commit(), the page is associated with the memcg.
/linux-4.4.14/drivers/gpu/drm/shmobile/
Dshmob_drm_crtc.c436 .commit = shmob_drm_crtc_mode_commit,
593 .commit = shmob_drm_encoder_mode_commit,
/linux-4.4.14/drivers/net/bonding/
Dbond_main.c1987 int link_state, commit = 0; in bond_miimon_inspect() local
2030 commit++; in bond_miimon_inspect()
2069 commit++; in bond_miimon_inspect()
2079 return commit; in bond_miimon_inspect()
2650 int commit = 0; in bond_ab_arp_inspect() local
2659 commit++; in bond_ab_arp_inspect()
2687 commit++; in bond_ab_arp_inspect()
2700 commit++; in bond_ab_arp_inspect()
2704 return commit; in bond_ab_arp_inspect()
/linux-4.4.14/drivers/net/ethernet/intel/e1000e/
Dphy.c756 ret_val = phy->ops.commit(hw); in e1000e_copper_link_setup_m88()
811 if (phy->ops.commit) { in e1000e_copper_link_setup_m88()
812 ret_val = phy->ops.commit(hw); in e1000e_copper_link_setup_m88()
1295 if (hw->phy.ops.commit) { in e1000e_phy_force_speed_duplex_m88()
1296 ret_val = hw->phy.ops.commit(hw); in e1000e_phy_force_speed_duplex_m88()
D82571.c1902 .commit = NULL,
1920 .commit = e1000e_phy_sw_reset,
1938 .commit = e1000e_phy_sw_reset,
D80003es2lan.c945 ret_val = hw->phy.ops.commit(hw); in e1000_copper_link_setup_gg82563_80003es2lan()
1375 .commit = e1000e_phy_sw_reset,
Dhw.h502 s32 (*commit)(struct e1000_hw *); member
Dethtool.c1361 hw->phy.ops.commit(hw); in e1000_integrated_phy_loopback()
1598 if (hw->phy.ops.commit) in e1000_loopback_cleanup()
1599 hw->phy.ops.commit(hw); in e1000_loopback_cleanup()
Dich8lan.c499 phy->ops.commit = e1000e_phy_sw_reset; in e1000_init_phy_params_pchlan()
581 phy->ops.commit = e1000e_phy_sw_reset; in e1000_init_phy_params_ich8lan()
5708 .commit = NULL,
/linux-4.4.14/drivers/gpu/drm/tilcdc/
Dtilcdc_tfp410.c117 .commit = tfp410_encoder_commit,
Dtilcdc_panel.c108 .commit = panel_encoder_commit,
Dtilcdc_crtc.c448 .commit = tilcdc_crtc_commit,
/linux-4.4.14/drivers/gpu/drm/
Ddrm_crtc_helper.c377 crtc_funcs->commit(crtc); in drm_crtc_helper_set_mode()
387 encoder_funcs->commit(encoder); in drm_crtc_helper_set_mode()
Ddrm_atomic_helper.c860 funcs->commit(crtc); in drm_atomic_helper_commit_modeset_enables()
890 funcs->commit(encoder); in drm_atomic_helper_commit_modeset_enables()
1779 goto commit; in __drm_atomic_helper_set_config()
1812 commit: in __drm_atomic_helper_set_config()
/linux-4.4.14/drivers/md/
Ddm-thin.c1322 static int commit(struct pool *pool) in commit() function
1374 r = commit(pool); in alloc_data_block()
2198 if (commit(pool)) { in process_deferred_bios()
3375 (void) commit(pool); in pool_preresume()
3459 (void) commit(pool); in pool_postsuspend()
3593 (void) commit(pool); in process_reserve_metadata_snap_mesg()
3660 (void) commit(pool); in pool_message()
3720 (void) commit(pool); in pool_status()
Ddm-cache-target.c1923 static int commit(struct cache *cache, bool clean_shutdown) in commit() function
1944 r = commit(cache, false); in commit_if_needed()
3261 r4 = commit(cache, !r1 && !r2 && !r3); in sync_metadata()
3532 (void) commit(cache, false); in cache_status()
/linux-4.4.14/drivers/net/wireless/ath/ath5k/
Dreset.c549 goto commit; in ath5k_hw_set_power_mode()
588 commit: in ath5k_hw_set_power_mode()
/linux-4.4.14/drivers/media/usb/uvc/
Duvc_v4l2.c1006 bool commit) in uvc_ioctl_s_try_ext_ctrls() argument
1021 ctrls->error_idx = commit ? ctrls->count : i; in uvc_ioctl_s_try_ext_ctrls()
1028 if (commit) in uvc_ioctl_s_try_ext_ctrls()
/linux-4.4.14/fs/nfsd/
Dnfs4proc.c591 struct nfsd4_commit *commit) in nfsd4_commit() argument
593 gen_boot_verifier(&commit->co_verf, SVC_NET(rqstp)); in nfsd4_commit()
594 return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset, in nfsd4_commit()
595 commit->co_count); in nfsd4_commit()
Dxdr4.h511 struct nfsd4_commit commit; member
Dnfs4xdr.c589 nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit) in nfsd4_decode_commit() argument
594 p = xdr_decode_hyper(p, &commit->co_offset); in nfsd4_decode_commit()
595 commit->co_count = be32_to_cpup(p++); in nfsd4_decode_commit()
3065 nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit) in nfsd4_encode_commit() argument
3074 p = xdr_encode_opaque_fixed(p, commit->co_verf.data, in nfsd4_encode_commit()
/linux-4.4.14/tools/testing/ktest/
Dktest.pl1903 my ($commit) = @_;
1905 doprint "git rev-list --max-count=1 $commit ... ";
1906 my $sha1 = `git rev-list --max-count=1 $commit`;
1913 dodie "Failed to get git $commit";
/linux-4.4.14/arch/mips/include/asm/octeon/
Dcvmx-agl-defs.h1391 uint64_t commit:2; member
1393 uint64_t commit:2;
1406 uint64_t commit:1; member
1408 uint64_t commit:1;
Dcvmx-gmxx-defs.h4742 uint64_t commit:16; member
4744 uint64_t commit:16;
4754 uint64_t commit:3; member
4756 uint64_t commit:3;
4770 uint64_t commit:4; member
4772 uint64_t commit:4;
4794 uint64_t commit:2; member
4796 uint64_t commit:2;
/linux-4.4.14/drivers/gpu/drm/qxl/
Dqxl_display.c719 .commit = qxl_crtc_commit,
875 .commit = qxl_enc_commit,
/linux-4.4.14/drivers/scsi/esas2r/
Desas2r_flash.c145 goto commit; in esas2r_fmapi_callback()
152 commit: in esas2r_fmapi_callback()
/linux-4.4.14/drivers/gpu/drm/ast/
Dast_mode.c626 .commit = ast_crtc_commit,
741 .commit = ast_encoder_commit,
/linux-4.4.14/fs/btrfs/
Dtransaction.c689 struct btrfs_transaction *commit) in wait_for_commit() argument
691 wait_event(commit->commit_wait, commit->state == TRANS_STATE_COMPLETED); in wait_for_commit()
Dextent-tree.c4655 goto commit; in may_commit_transaction()
4660 goto commit; in may_commit_transaction()
4677 commit: in may_commit_transaction()
/linux-4.4.14/drivers/gpu/drm/nouveau/
Dnv50_display.c1409 .commit = nv50_crtc_commit,
1686 .commit = nv50_dac_commit,
2076 .commit = nv50_sor_commit,
2260 .commit = nv50_pior_commit,
/linux-4.4.14/include/linux/
Dtty.h63 int commit; member
/linux-4.4.14/Documentation/development-process/
D5.Posting167 needed additional information. If the patch fixes a bug, cite the commit
168 which introduced the bug if possible (and please provide both the commit ID
D7.AdvancedTopics37 of the mainline repository, explore the revision history, commit changes to
/linux-4.4.14/drivers/gpu/drm/mgag200/
Dmgag200_mode.c1417 .commit = mga_crtc_commit,
1521 .commit = mga_encoder_commit,
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
Ddce_v8_0.c2793 .commit = dce_v8_0_crtc_commit,
3569 .commit = dce_v8_0_ext_commit,
3579 .commit = dce_v8_0_encoder_commit,
3589 .commit = dce_v8_0_encoder_commit,
Ddce_v11_0.c2863 .commit = dce_v11_0_crtc_commit,
3632 .commit = dce_v11_0_ext_commit,
3642 .commit = dce_v11_0_encoder_commit,
3652 .commit = dce_v11_0_encoder_commit,
Ddce_v10_0.c2874 .commit = dce_v10_0_crtc_commit,
3639 .commit = dce_v10_0_ext_commit,
3649 .commit = dce_v10_0_encoder_commit,
3659 .commit = dce_v10_0_encoder_commit,
/linux-4.4.14/Documentation/input/
Dxpad.txt32 dpad_to_buttons has no effect for known pads. A erroneous commit message
/linux-4.4.14/Documentation/dvb/
DREADME.dvb-usb57 …2005-03-30 - first commit of the dvb-usb-module based on the dibusb-source. First device is a new …
/linux-4.4.14/fs/nfs/
Dnfs3xdr.c2528 PROC(COMMIT, commit, commit, 5),
/linux-4.4.14/Documentation/networking/dsa/
Ddsa.txt336 prepare/abort/commit phases are often simplified into a prepare phase which
337 checks whether the operation is supporte by the DSA switch driver, and a commit
/linux-4.4.14/drivers/gpu/drm/armada/
Darmada_crtc.c747 .commit = armada_drm_crtc_commit,
/linux-4.4.14/arch/x86/kernel/cpu/
Dperf_event_intel.c3198 EVENT_ATTR_STR(tx-commit, tx_commit, "event=0xc9,umask=0x2");
3203 EVENT_ATTR_STR(el-commit, el_commit, "event=0xc8,umask=0x2");
/linux-4.4.14/Documentation/scsi/
DLICENSE.qla4xxx27 Foundation's software and to any other program whose authors commit to
DLICENSE.qla2xxx28 Foundation's software and to any other program whose authors commit to
/linux-4.4.14/drivers/gpu/drm/i2c/
Dtda998x_drv.c1358 .commit = tda998x_encoder_commit,
/linux-4.4.14/drivers/scsi/aacraid/
Daachba.c255 module_param_named(commit, aac_commit, int, S_IRUGO|S_IWUSR);
256 MODULE_PARM_DESC(commit, "Control whether a COMMIT_CONFIG is issued to the"
/linux-4.4.14/drivers/staging/rtl8192u/
Dcopying16 Foundation's software and to any other program whose authors commit to
/linux-4.4.14/tools/usb/usbip/
DCOPYING16 Foundation's software and to any other program whose authors commit to
/linux-4.4.14/drivers/staging/rtl8192e/
Dlicense23 whose authors commit to using it. (Some other Free Software Foundation
/linux-4.4.14/
DCOPYING32 Foundation's software and to any other program whose authors commit to
DMAINTAINERS103 to also notify the people that have git commit signatures.
/linux-4.4.14/Documentation/security/
Dcredentials.txt487 commit the new credentials to current->cred, it will release
/linux-4.4.14/Documentation/kbuild/
Dkconfig-language.txt456 commit fix
/linux-4.4.14/net/sched/
DKconfig335 functionality (aka output commit), wherein upon arrival of a dequeue
/linux-4.4.14/tools/perf/Documentation/
Dintel-pt.txt684 tranasaction start, commit or abort.
/linux-4.4.14/Documentation/filesystems/cifs/
DCHANGES856 Finish fixes to commit write for caching/readahead consistency. fsx