Searched refs:is_write (Results 76 - 94 of 94) sorted by last modified time

1234

/linux-master/drivers/memstick/host/
H A Dr592.c223 static void r592_start_dma(struct r592_device *dev, bool is_write) argument
240 if (!is_write)
276 bool is_write; local
282 is_write = dev->req->data_dir == WRITE;
293 sg_count = dma_map_sg(&dev->pci_dev->dev, &dev->req->sg, 1, is_write ?
301 r592_start_dma(dev, is_write);
310 dma_unmap_sg(&dev->pci_dev->dev, &dev->req->sg, 1, is_write ?
414 bool is_write = dev->req->tpc >= MS_TPC_SET_RW_REG_ADRS; local
420 if (is_write) {
432 (is_write
454 bool is_write; local
[all...]
/linux-master/arch/um/kernel/
H A Dtrap.c25 int is_write, int is_user, int *code_out)
62 if (is_write) {
107 * pte_mkyoung(); if (is_write) pte_mkdirty();
114 WARN_ON(!pte_young(*pte) || (is_write && !pte_dirty(*pte)));
207 int is_write = FAULT_WRITE(fi); local
228 err = handle_page_fault(address, ip, is_write, is_user,
24 handle_page_fault(unsigned long address, unsigned long ip, int is_write, int is_user, int *code_out) argument
/linux-master/arch/powerpc/mm/
H A Dcopro_fault.c27 unsigned long is_write; local
41 is_write = dsisr & DSISR_ISSTORE;
42 if (is_write) {
59 *flt = handle_mm_fault(vma, ea, is_write ? FAULT_FLAG_WRITE : 0, NULL);
/linux-master/arch/microblaze/mm/
H A Dfault.c92 int is_write = error_code & ESR_S; local
107 is_write = 0;
160 if (unlikely(!is_write))
203 if (unlikely(is_write)) {
/linux-master/arch/csky/mm/
H A Dfault.c23 static inline bool is_write(struct pt_regs *regs) function
173 if (is_write(regs)) {
237 if (is_write(regs))
/linux-master/drivers/scsi/
H A Dhpsa.c4688 int is_write = 0; local
4696 is_write = 1;
4715 cdb[0] = is_write ? WRITE_10 : READ_10;
5109 int is_write = 0; local
5146 is_write = 1;
5157 is_write = 1;
5170 is_write = 1;
5185 is_write = 1;
5209 if (is_write && dev->raid_level != 0)
5416 cdb[0] = is_write
[all...]
/linux-master/drivers/mtd/spi-nor/
H A Dotp.c309 const u8 *buf, bool is_write)
332 if (is_write) {
362 if (is_write)
307 spi_nor_mtd_otp_read_write(struct mtd_info *mtd, loff_t ofs, size_t total_len, size_t *retlen, const u8 *buf, bool is_write) argument
/linux-master/drivers/gpu/drm/amd/display/dc/dce/
H A Ddce_aux.c191 bool is_write = local
234 if (is_write)
241 /* program action and address and payload data (if 'is_write') */
260 if (is_write) {
/linux-master/drivers/block/drbd/
H A Ddrbd_worker.c175 bool is_write = bio_data_dir(bio) == WRITE; local
181 is_write ? (is_discard ? "discard" : "write")
190 if (is_write)
/linux-master/arch/arm64/kvm/hyp/nvhe/
H A Dsys_regs.c253 if (!p->is_write)
269 if (p->is_write) {
295 if (p->is_write) {
309 if (!p->is_write)
500 if (!params.is_write)
/linux-master/drivers/gpu/drm/radeon/
H A Dradeon_dp_auxch.c69 bool is_write = false; local
77 is_write = true;
92 if (is_write)
137 if (is_write) {
195 if (is_write)
/linux-master/drivers/net/ethernet/marvell/octeontx2/af/
H A Drvu_cpt.c712 rsp->is_write = req->is_write;
717 if (req->is_write)
/linux-master/drivers/gpu/drm/vc4/
H A Dvc4_render_cl.c438 bool is_write)
461 if (is_write)
435 vc4_rcl_surface_setup(struct vc4_exec_info *exec, struct drm_gem_dma_object **obj, struct drm_vc4_submit_rcl_surface *surf, bool is_write) argument
/linux-master/arch/arm64/kvm/vgic/
H A Dvgic-mmio.h208 bool is_write, int offset, u32 *val);
H A Dvgic-mmio-v2.c539 int vgic_v2_cpuif_uaccess(struct kvm_vcpu *vcpu, bool is_write, argument
548 return vgic_uaccess(vcpu, &dev, is_write, offset, val);
551 int vgic_v2_dist_uaccess(struct kvm_vcpu *vcpu, bool is_write, argument
560 return vgic_uaccess(vcpu, &dev, is_write, offset, val);
/linux-master/arch/arm64/kvm/
H A Dvgic-sys-reg-v3.c353 bool is_write)
360 if (is_write)
351 vgic_v3_cpu_sysregs_uaccess(struct kvm_vcpu *vcpu, struct kvm_device_attr *attr, bool is_write) argument
H A Dtrace_handle_exit.h125 TP_PROTO(const char *fn, int reg, bool is_write, u64 write_value),
126 TP_ARGS(fn, reg, is_write, write_value),
131 __field(bool, is_write)
138 __entry->is_write = is_write;
142 TP_printk("%s %s reg %d (0x%016llx)", __entry->fn, __entry->is_write?"write to":"read from", __entry->reg, __entry->write_value)
166 __field(bool, is_write)
177 __entry->is_write = params->is_write;
191 __entry->is_write
[all...]
/linux-master/kernel/kcsan/
H A Dencoding.h62 encode_watchpoint(unsigned long addr, size_t size, bool is_write) argument
64 return (long)((is_write ? WATCHPOINT_WRITE_MASK : 0) |
72 bool *is_write)
80 *is_write = !!((unsigned long)watchpoint & WATCHPOINT_WRITE_MASK);
69 decode_watchpoint(long watchpoint, unsigned long *addr_masked, size_t *size, bool *is_write) argument
/linux-master/security/tomoyo/
H A Dgc.c652 bool is_write = false; local
659 is_write = head->write_buf != NULL;
668 if (is_write)

Completed in 346 milliseconds

1234