Searched refs:writes (Results 1 - 25 of 43) sorted by path

12

/linux-master/arch/m68k/fpsp040/
H A Dres_func.S177 | Inst is fmove. This code also handles all result writes.
473 | Inst is fmove. This code also handles all result writes.
/linux-master/drivers/net/wireless/broadcom/b43/
H A Dradio_2055.c1290 unsigned int i, writes = 0; local
1303 if (++writes % 4 == 0)
/linux-master/drivers/scsi/arm/
H A Dacornscsi.h306 unsigned int writes; member in struct:acornscsi_hostdata::__anon593
H A Dacornscsi.c563 * CMD_WRITE - command writes data,
751 host->stats.writes += 1;
2733 host->stats.writes, host->stats.miscs,
H A Dfas216.c207 printk(" stats={ queues=%X removes=%X fins=%X reads=%X writes=%X miscs=%X\n"
210 info->stats.reads, info->stats.writes, info->stats.miscs,
1832 info->stats.writes += 1;
2990 info->stats.writes, info->stats.miscs,
H A Dfas216.h259 unsigned int writes; member in struct:__anon2634::__anon2636
/linux-master/arch/arm/crypto/
H A Dpoly1305-armv4.pl622 @ instruction accepts 2x32-bit input and writes 2x64-bit result.
/linux-master/arch/mips/include/asm/
H A Dio.h394 static inline void writes##bwlq(volatile void __iomem *mem, \
/linux-master/arch/riscv/include/asm/
H A Dio.h48 * writes.
108 __io_writes_outs(writes, u8, b, __io_bw(), __io_aw())
109 __io_writes_outs(writes, u16, w, __io_bw(), __io_aw())
110 __io_writes_outs(writes, u32, l, __io_bw(), __io_aw())
129 __io_writes_outs(writes, u64, q, __io_bw(), __io_aw())
/linux-master/arch/sh/include/asm/
H A Dio.h92 pfx##writes##bwlq(volatile void __iomem *mem, const void *addr, \
/linux-master/drivers/block/drbd/
H A Ddrbd_int.h324 struct drbd_epoch *epoch; /* for writes */
664 unsigned current_tle_writes; /* writes seen within this tl epoch */
734 struct list_head writes; member in struct:submit_worker
H A Ddrbd_main.c180 * count writes in its epoch. */
2246 struct list_head writes; member in struct:retry_worker
2252 LIST_HEAD(writes);
2256 list_splice_init(&retry->writes, &writes);
2259 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
2285 * concurrent writes in multi-primary setup.
2306 list_move_tail(&req->tl_requests, &retry.writes);
2679 INIT_LIST_HEAD(&device->submit.writes);
2915 INIT_LIST_HEAD(&retry.writes);
[all...]
H A Ddrbd_req.c752 /* for superseded conflicting writes of multiple primaries,
1021 /* start a new epoch for non-mirrored writes */
1113 /* Need to replicate writes. Unless it is an empty flush,
1187 list_add_tail(&req->tl_requests, &device->submit.writes);
1251 * We don't want to allow writes on C_STANDALONE D_INCONSISTENT:
1520 list_splice_tail_init(&device->submit.writes, &incoming);
1560 list_splice_tail_init(&device->submit.writes, &incoming);
1588 if (list_empty(&device->submit.writes))
1592 list_splice_tail_init(&device->submit.writes, &more_incoming);
/linux-master/drivers/gpu/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_trace.h79 __field(uint32_t, writes)
87 __entry->writes = write_count;
95 TP_printk("%s:%d reads=%08ld (%08ld total), writes=%08ld (%08ld total)",
100 (unsigned long)__entry->writes)
/linux-master/drivers/md/
H A DMakefile77 obj-$(CONFIG_DM_LOG_WRITES) += dm-log-writes.o
H A Ddm-raid1.c66 struct bio_list writes; member in struct:mirror_set
132 bl = (rw == WRITE) ? &ms->writes : &ms->reads;
618 * This way we handle both writes to SYNC and NOSYNC
687 static void do_writes(struct mirror_set *ms, struct bio_list *writes) argument
696 if (!writes->head)
707 while ((bio = bio_list_pop(writes))) {
747 bio_list_merge(&ms->writes, &requeue);
754 * be written to (writes to recover regions are going to
803 * If the log has failed, unattempted writes are being
804 * put on the holds list. We can't issue those writes
864 struct bio_list reads, writes, failures; local
[all...]
H A Ddm-writecache.c210 unsigned long long writes; member in struct:dm_writecache::__anon768
1228 * advantage seen with cache-allocating-writes plus flushing.
1425 wc->stats.writes += bio->bi_iter.bi_size >> wc->block_size_bits;
1445 wc->stats.writes += bio->bi_iter.bi_size >> wc->block_size_bits;
1474 wc->stats.writes += bio->bi_iter.bi_size >> wc->block_size_bits;
1488 wc->stats.writes++;
2695 wc->stats.writes,
/linux-master/drivers/md/bcache/
H A Dbtree.c367 * flush, and writes appending to leaf nodes aren't blocking anything so
368 * just make all btree node writes FUA to keep things sane.
1609 struct closure *writes, struct gc_stat *gc)
1652 ret = btree_gc_recurse(last->b, op, writes, gc);
1665 bch_btree_node_write(last->b, writes);
1690 bch_btree_node_write(i->b, writes);
1699 struct closure *writes, struct gc_stat *gc)
1723 ret = btree_gc_recurse(b, op, writes, gc);
1827 struct closure writes; local
1834 closure_init_stack(&writes);
1608 btree_gc_recurse(struct btree *b, struct btree_op *op, struct closure *writes, struct gc_stat *gc) argument
1698 bch_btree_gc_root(struct btree *b, struct btree_op *op, struct closure *writes, struct gc_stat *gc) argument
[all...]
H A Dbtree.h72 * This is handy because btree_split() and garbage collection can issue writes
108 /* If btree_split() frees a btree node, it writes a new pointer to that
137 /* For outstanding btree writes, used as a lock - protects write_idx */
144 struct btree_write writes[2]; member in struct:btree
172 return b->writes + btree_node_write_idx(b);
177 return b->writes + (btree_node_write_idx(b) ^ 1);
/linux-master/drivers/net/phy/
H A Dmdio_bus.c294 MDIO_BUS_STATS_ATTR(writes); variable
314 MDIO_BUS_STATS_ADDR_ATTR(writes, addr); \
870 u64_stats_inc(&stats->writes);
/linux-master/drivers/perf/
H A Dqcom_l2_pmu.c692 L2CACHE_EVENT_ATTR(total-writes, L2_EVENT_TOTAL_WRITES),
/linux-master/drivers/staging/media/ipu3/
H A Dipu3-css.c176 static inline void writes(const void *mem, ssize_t count, void __iomem *addr) function
483 writes(&dmem_cfg, sizeof(dmem_cfg), base +
541 writes(&dma_cmd, sizeof(dma_cmd),
/linux-master/fs/bcachefs/
H A Dalloc_foreground.c1482 INIT_LIST_HEAD(&wp->writes);
H A Dalloc_types.h114 struct list_head writes; member in struct:write_point::__anon169
H A Dbcachefs.h140 * metadata. If it once contained dirty data, other writes might overwrite it
155 * order metadata writes so that the btree and everything else is consistent on
164 * nodes in the btree, and those writes will be mostly empty (appending at most
165 * a few keys each) - highly inefficient in terms of amount of metadata writes,
751 /* Counts outstanding writes, for clean transition to read-only */
753 atomic_long_t writes[BCH_WRITE_REF_NR]; member in struct:bch_fs
755 struct percpu_ref writes; member in struct:bch_fs
758 * Analagous to c->writes, for asynchronous ops that don't necessarily
1140 atomic_long_inc(&c->writes[ref]);
1142 percpu_ref_get(&c->writes);
[all...]

Completed in 365 milliseconds

12