Searched refs:access (Results 51 - 75 of 592) sorted by relevance

1234567891011>>

/linux-master/fs/9p/
H A Dfid.c175 int i, n, l, access; local
180 access = v9ses->flags & V9FS_ACCESS_MASK;
206 if (access == V9FS_ACCESS_SINGLE)
291 int any, access; local
295 access = v9ses->flags & V9FS_ACCESS_MASK;
296 switch (access) {
/linux-master/arch/x86/kvm/
H A Dmmu.h187 * Check if a given access (described through the I/D, W/R and U/S bits of a
189 * access rights (in ACC_* format).
191 * Return zero if the access does not fault; return the page fault error code
192 * if the access faults.
196 u64 access)
199 unsigned int pfec = access;
207 * be set or not set when user access with neither has any bearing
214 u64 implicit_access = access & PFERR_IMPLICIT_ACCESS;
310 gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u64 access,
315 gpa_t gpa, u64 access,
194 permission_fault(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned pte_access, unsigned pte_pkey, u64 access) argument
313 kvm_translate_gpa(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, gpa_t gpa, u64 access, struct x86_exception *exception) argument
[all...]
/linux-master/sound/i2c/other/
H A Dak4114.c326 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
334 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
342 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
350 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
358 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
365 .access = SNDRV_CTL_ELEM_ACCESS_READ,
372 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
380 .access = SNDRV_CTL_ELEM_ACCESS_READ,
387 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
394 .access
[all...]
H A Dak4113.c356 .access = SNDRV_CTL_ELEM_ACCESS_READ |
365 .access = SNDRV_CTL_ELEM_ACCESS_READ |
374 .access = SNDRV_CTL_ELEM_ACCESS_READ |
383 .access = SNDRV_CTL_ELEM_ACCESS_READ |
392 .access = SNDRV_CTL_ELEM_ACCESS_READ |
400 .access = SNDRV_CTL_ELEM_ACCESS_READ,
407 .access = SNDRV_CTL_ELEM_ACCESS_READ |
415 .access = SNDRV_CTL_ELEM_ACCESS_READ |
423 .access = SNDRV_CTL_ELEM_ACCESS_READ |
431 .access
[all...]
H A Dak4117.c313 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
321 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
329 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
337 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
345 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
352 .access = SNDRV_CTL_ELEM_ACCESS_READ,
359 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
366 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
373 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
380 .access
[all...]
/linux-master/arch/x86/kvm/mmu/
H A Dpaging_tmpl.h19 * The MMU needs to be able to access/walk 32-bit and 64-bit guest page tables,
109 static inline void FNAME(protect_clean_gpte)(struct kvm_mmu *mmu, unsigned *access, argument
121 /* Allow write access to dirty gptes */
124 *access &= mask;
181 unsigned access; local
183 access = ((gpte & VMX_EPT_WRITABLE_MASK) ? ACC_WRITE_MASK : 0) |
189 access = gpte & (PT_WRITABLE_MASK | PT_USER_MASK | PT_PRESENT_MASK);
191 access ^= (gpte >> PT64_NX_SHIFT);
194 return access;
304 gpa_t addr, u64 access)
302 walk_addr_generic(struct guest_walker *walker, struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, gpa_t addr, u64 access) argument
525 walk_addr(struct guest_walker *walker, struct kvm_vcpu *vcpu, gpa_t addr, u64 access) argument
632 unsigned int direct_access, access; local
868 gva_to_gpa(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, gpa_t addr, u64 access, struct x86_exception *exception) argument
[all...]
H A Dmmutrace.h41 access_str[role.access], \
218 __field(unsigned, access)
225 __entry->access = spte & ACC_ALL;
229 TP_printk("sptep:%p gfn %llx access %x gen %x", __entry->sptep,
230 __entry->gfn, __entry->access, __entry->gen)
235 TP_PROTO(u64 addr, gfn_t gfn, unsigned access),
236 TP_ARGS(addr, gfn, access),
241 __field(unsigned, access)
247 __entry->access = access;
[all...]
/linux-master/drivers/clocksource/
H A Darm_arch_timer.c126 void arch_timer_reg_write(int access, enum arch_timer_reg reg, u64 val, argument
129 if (access == ARCH_TIMER_MEM_PHYS_ACCESS) {
145 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) {
159 arch_timer_reg_write_cp15(access, reg, val);
164 u32 arch_timer_reg_read(int access, enum arch_timer_reg reg, argument
169 if (access == ARCH_TIMER_MEM_PHYS_ACCESS) {
178 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) {
188 val = arch_timer_reg_read_cp15(access, reg);
233 * Default to cp15 based access because arm64 uses this function for
421 void erratum_set_next_event_generic(const int access, unsigne argument
665 timer_handler(const int access, struct clock_event_device *evt) argument
709 arch_timer_shutdown(const int access, struct clock_event_device *clk) argument
741 set_next_event(const int access, unsigned long evt, struct clock_event_device *clk) argument
787 set_next_event_mem(const int access, unsigned long evt, struct clock_event_device *clk) argument
[all...]
/linux-master/security/smack/
H A Dsmack_access.c55 * smk_access_entry - look up matching access rule
61 * access rule list and returns the access mode. If no
79 * Allowing write access implies allowing locking.
103 * smk_access - determine if a subject has a specific access to an object
106 * @request: the access requested, in "MAY" format
110 * access rule list and returns 0 if the access is permitted,
125 * A star subject can't access any object.
134 * An internet subject can access an
286 smack_str_from_perm(char *string, int access) argument
[all...]
/linux-master/drivers/infiniband/hw/erdma/
H A Derdma_verbs.h85 static inline u8 to_erdma_access_flags(int access) argument
87 return (access & IB_ACCESS_REMOTE_READ ? ERDMA_MR_ACC_RR : 0) |
88 (access & IB_ACCESS_LOCAL_WRITE ? ERDMA_MR_ACC_LW : 0) |
89 (access & IB_ACCESS_REMOTE_WRITE ? ERDMA_MR_ACC_RW : 0) |
90 (access & IB_ACCESS_REMOTE_ATOMIC ? ERDMA_MR_ACC_RA : 0);
128 u8 access; member in struct:erdma_mr
345 u64 virt, int access, struct ib_udata *udata);
/linux-master/drivers/hwmon/pmbus/
H A Dmax31785.c30 ktime_t access; /* Chip access time */ member in struct:max31785_data
49 s64 delta = ktime_us_delta(ktime_get(), data->access);
64 driver_data->access = ktime_get();
76 driver_data->access = ktime_get();
88 driver_data->access = ktime_get();
100 driver_data->access = ktime_get();
112 driver_data->access = ktime_get();
124 driver_data->access = ktime_get();
488 driver_data->access
[all...]
/linux-master/drivers/mtd/maps/
H A Dpismo.c23 __le16 access; member in struct:pismo_cs_block
38 u16 access; member in struct:pismo_mem
164 region.access = le16_to_cpu(cs->access);
178 dev_info(dev, "cs%u: %.32s: type %02x access %u00ps size %uK\n",
179 i, cs->device, region.type, region.access, region.size / 1024);
/linux-master/drivers/infiniband/sw/rxe/
H A Drxe_loc.h61 void rxe_mr_init_dma(int access, struct rxe_mr *mr);
63 int access, struct rxe_mr *mr);
68 int copy_data(struct rxe_pd *pd, int access, struct rxe_dma_info *dma,
75 struct rxe_mr *lookup_mr(struct rxe_pd *pd, int access, u32 key,
88 struct rxe_mw *rxe_lookup_mw(struct rxe_qp *qp, int access, u32 rkey);
/linux-master/drivers/iommu/iommufd/
H A Dselftest.c91 static unsigned long iommufd_test_syz_conv_iova(struct iommufd_access *access, argument
96 mutex_lock(&access->ioas_lock);
97 if (!access->ioas) {
98 mutex_unlock(&access->ioas_lock);
101 ret = __iommufd_test_syz_conv_iova(&access->ioas->iopt, iova);
102 mutex_unlock(&access->ioas_lock);
935 struct iommufd_access *access; member in struct:selftest_access
981 iommufd_access_unpin_pages(staccess->access, item->iova,
1003 iommufd_access_unpin_pages(staccess->access, item->iova,
1021 if (staccess->access) {
1070 struct iommufd_access *access; local
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dtest_bpffs.c109 err = access(TDIR "/fs1/b/1", F_OK);
110 if (!ASSERT_OK(err, "access(" TDIR "/fs1/b/1)"))
125 err = access(TDIR "/fs1/c/1", F_OK);
126 if (!ASSERT_OK(err, "access(" TDIR "/fs1/c/1)"))
135 err = access(TDIR "/fs1/b", F_OK);
136 if (!ASSERT_OK(err, "access(" TDIR "/fs1/b)"))
/linux-master/fs/nfsd/
H A Dnfs2acl.c80 /* resp->acl_{access,default} are released in nfssvc_release_getacl. */
132 /* argp->acl_{access,default} may have been allocated in
166 * Check file access
175 argp->access);
178 resp->access = argp->access;
179 resp->status = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
232 if (xdr_stream_decode_u32(xdr, &args->access) < 0)
284 if (xdr_stream_encode_u32(xdr, resp->access) < 0)
/linux-master/security/yama/
H A Dyama_lsm.c47 const char *access; member in struct:access_report_info
63 info->access, target_cmd, info->target->pid, agent_cmd,
74 /* defers execution because cmdline access can sleep */
75 static void report_access(const char *access, struct task_struct *target, argument
89 access, target->comm, target->pid,
100 info->access = access;
/linux-master/arch/powerpc/include/asm/
H A Dtrace.h273 TP_PROTO(unsigned long addr, unsigned long access, unsigned long trap),
274 TP_ARGS(addr, access, trap),
277 __field(unsigned long, access)
283 __entry->access = access;
287 TP_printk("hash fault with addr 0x%lx and access = 0x%lx trap = 0x%lx",
288 __entry->addr, __entry->access, __entry->trap)
/linux-master/drivers/infiniband/core/
H A Drdma_core.h55 * the object is from the given type. Lock it to the required access when
57 * This function could create (access == NEW), destroy (access == DESTROY)
58 * or unlock (access == READ || access == WRITE) objects if required.
63 uverbs_get_uobject_from_file(u16 object_id, enum uverbs_obj_access access,
67 enum uverbs_obj_access access, bool hw_obj_valid,
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/dma/
H A Dusernv04.c101 dmaobj->base.access = NV_MEM_ACCESS_RW;
119 switch (dmaobj->base.access) {
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/fifo/
H A Dgp100.c82 .access = gf100_fifo_mmu_fault_access,
106 info.access = (type & 0x00070000) >> 16;
/linux-master/arch/arm/mm/
H A Dabort-ev6.S44 1: uaccess_disable ip @ disable userspace access
/linux-master/tools/perf/arch/
H A Dcommon.c121 if (access(buf, F_OK) == 0) {
164 if (access(buf, F_OK) == 0)
/linux-master/drivers/misc/c2port/
H A Dcore.c347 return sprintf(buf, "%d\n", c2dev->access);
363 c2dev->access = !!status;
365 /* If access is "on" clock should be HIGH _before_ setting the line
367 if (c2dev->access)
369 ops->access(c2dev, c2dev->access);
370 if (c2dev->access)
377 static DEVICE_ATTR_RW(access);
385 /* Check the device access status */
386 if (!c2dev->access)
[all...]
/linux-master/drivers/hwtracing/coresight/
H A Dcoresight-core.c100 return csdev_access_relaxed_read32(&csdev->access, CORESIGHT_CLAIMCLR);
115 csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED,
122 csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED,
161 CS_UNLOCK(csdev->access.base);
163 CS_LOCK(csdev->access.base);
196 CS_UNLOCK(csdev->access.base);
198 CS_LOCK(csdev->access.base);
1019 * @csa: coresight device access for the device
1060 return csdev_access_relaxed_read32(&csdev->access, offset);
1065 return csdev_access_read32(&csdev->access, offse
[all...]

Completed in 214 milliseconds

1234567891011>>