/linux-4.4.14/security/ |
D | device_cgroup.c | 43 short access; member 112 walk->access |= ex->access; in dev_exception_add() 140 walk->access &= ~ex->access; in dev_exception_rm() 141 if (!walk->access) { in dev_exception_rm() 244 static void set_access(char *acc, short access) in set_access() argument 248 if (access & ACC_READ) in set_access() 250 if (access & ACC_WRITE) in set_access() 252 if (access & ACC_MKNOD) in set_access() 296 set_access(acc, ex->access); in devcgroup_seq_show() 322 u32 major, u32 minor, short access) in match_exception() argument [all …]
|
D | Kconfig | 10 bool "Restrict unprivileged access to the kernel syslog" 49 implement socket and networking access controls. 58 implement per-packet access controls based on labels 66 bool "Security hooks for pathname based access control" 69 This enables the security hooks for pathname based access control. 71 implement pathname based access controls.
|
/linux-4.4.14/Documentation/security/ |
D | Smack.txt | 7 Smack is a kernel based implementation of mandatory access 29 access to systems that use them as Smack does. 43 smackctl - load the Smack access rules 44 smackaccess - report if a process with one label has access 73 Used to make access control decisions. In almost all cases 81 label does not allow all of the access permitted to a process 87 the Smack rule (more below) that permitted the write access 94 Use the Smack label in this attribute for access control 98 Use the Smack label in this attribute for access control 114 access [all …]
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | arch_timer.h | 36 void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u32 val) in arch_timer_reg_write_cp15() argument 38 if (access == ARCH_TIMER_PHYS_ACCESS) { in arch_timer_reg_write_cp15() 47 } else if (access == ARCH_TIMER_VIRT_ACCESS) { in arch_timer_reg_write_cp15() 62 u32 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg) in arch_timer_reg_read_cp15() argument 66 if (access == ARCH_TIMER_PHYS_ACCESS) { in arch_timer_reg_read_cp15() 75 } else if (access == ARCH_TIMER_VIRT_ACCESS) { in arch_timer_reg_read_cp15()
|
/linux-4.4.14/arch/arm/include/asm/ |
D | arch_timer.h | 21 void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u32 val) in arch_timer_reg_write_cp15() argument 23 if (access == ARCH_TIMER_PHYS_ACCESS) { in arch_timer_reg_write_cp15() 32 } else if (access == ARCH_TIMER_VIRT_ACCESS) { in arch_timer_reg_write_cp15() 47 u32 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg) in arch_timer_reg_read_cp15() argument 51 if (access == ARCH_TIMER_PHYS_ACCESS) { in arch_timer_reg_read_cp15() 60 } else if (access == ARCH_TIMER_VIRT_ACCESS) { in arch_timer_reg_read_cp15()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/dma/ |
D | user.c | 83 args->v0.version, args->v0.target, args->v0.access, in nvkm_dmaobj_ctor() 86 dmaobj->access = args->v0.access; in nvkm_dmaobj_ctor() 126 switch (dmaobj->access) { in nvkm_dmaobj_ctor() 128 dmaobj->access = NV_MEM_ACCESS_VM; in nvkm_dmaobj_ctor() 131 dmaobj->access = NV_MEM_ACCESS_RO; in nvkm_dmaobj_ctor() 134 dmaobj->access = NV_MEM_ACCESS_WO; in nvkm_dmaobj_ctor() 137 dmaobj->access = NV_MEM_ACCESS_RW; in nvkm_dmaobj_ctor()
|
D | usernv04.c | 101 dmaobj->base.access = NV_MEM_ACCESS_RW; in nv04_dmaobj_new() 119 switch (dmaobj->base.access) { in nv04_dmaobj_new()
|
/linux-4.4.14/arch/tile/gxio/ |
D | Kconfig | 1 # Support direct access to TILE-Gx hardware from user space, via the 7 # Support direct access to the common I/O DMA facility within the 13 # Support direct access to the TILE-Gx mPIPE hardware from kernel space. 19 # Support direct access to the TILE-Gx TRIO hardware from kernel space. 25 # Support direct access to the TILE-Gx USB hardware from kernel space. 30 # Support direct access to the TILE-Gx UART hardware from kernel space.
|
/linux-4.4.14/arch/x86/kvm/ |
D | mmutrace.h | 39 access_str[role.access], \ 202 TP_PROTO(u64 *sptep, gfn_t gfn, unsigned access, unsigned int gen), 203 TP_ARGS(sptep, gfn, access, gen), 208 __field(unsigned, access) 215 __entry->access = access; 220 __entry->gfn, __entry->access, __entry->gen) 225 TP_PROTO(u64 addr, gfn_t gfn, unsigned access), 226 TP_ARGS(addr, gfn, access), 231 __field(unsigned, access) 237 __entry->access = access; [all …]
|
D | paging_tmpl.h | 114 static inline void FNAME(protect_clean_gpte)(unsigned *access, unsigned gpte) in FNAME() 128 *access &= mask; in FNAME() 186 unsigned access; in FNAME() local 188 access = ((gpte & VMX_EPT_WRITABLE_MASK) ? ACC_WRITE_MASK : 0) | in FNAME() 192 access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK; in FNAME() 193 access &= ~(gpte >> PT64_NX_SHIFT); in FNAME() 196 return access; in FNAME() 262 gva_t addr, u32 access) in FNAME() 271 const int write_fault = access & PFERR_WRITE_MASK; in FNAME() 272 const int user_fault = access & PFERR_USER_MASK; in FNAME() [all …]
|
D | x86.h | 88 gva_t gva, gfn_t gfn, unsigned access) in vcpu_cache_mmio_info() argument 91 vcpu->arch.access = access; in vcpu_cache_mmio_info()
|
/linux-4.4.14/Documentation/ |
D | unaligned-memory-access.txt | 5 when it comes to memory access. This document presents some details about 10 The definition of an unaligned access 17 access. 19 The above may seem a little vague, as memory access can happen in different 23 which will compile to multiple-byte memory access instructions, namely when 38 of memory access. However, we must consider ALL supported architectures; 43 Why unaligned access is bad 46 The effects of performing an unaligned memory access vary from architecture 53 happen. The exception handler is able to correct the unaligned access, 57 unaligned access to be corrected. [all …]
|
D | dma-buf-sharing.txt | 28 - needs a mechanism to get access to the scatterlist that makes up this buffer 29 in memory, mapped into its own address space, so it can access the same area 41 4. When needed, buffer-user requests access to the buffer from exporter 115 4. When needed, buffer-user requests access to the buffer 118 access to the buffer using dma_buf_map_attachment API. At least one attach to 202 Bracketing of DMA access with {map,unmap}_dma_buf operations is essential 216 map_dma_buf until all outstanding access is completed (as signalled by 231 Kernel cpu access to a dma-buf buffer object 234 The motivation to allow cpu access from the kernel to a dma-buf object from the 246 1. Prepare access, which invalidate any necessary caches and make the object [all …]
|
D | kasan.txt | 11 KASAN uses compile-time instrumentation for checking every memory access, 45 A typical out of bounds access report looks like this: 48 BUG: AddressSanitizer: out of bounds access in kmalloc_oob_right+0x65/0x75 [test_kasan] at addr fff… 121 access caused it. It's followed by the description of the accessed slub object 146 to access, and use compile-time instrumentation to check shadow memory on each 147 memory access. 166 access of size 1, 2, 4, 8 or 16. These functions check whether memory access is
|
D | this_cpu_ops.txt | 4 this_cpu operations are a way of optimizing access to per cpu 138 access local per cpu data in a critical section. When preemption 263 Remote access to per cpu data 268 be "atomic" as no other CPU has access to these data structures. 270 There are special cases where you might need to access per cpu data 271 structures remotely. It is usually safe to do a remote read access 272 and that is frequently done to summarize counters. Remote write access 281 To access per-cpu data structure remotely, typically the per_cpu_ptr() 289 This makes it explicit that we are getting ready to access a percpu 299 Remote access are typically only for reading the status of another cpus [all …]
|
D | Intel-IOMMU.txt | 32 devices that need to access these regions. OS is expected to setup 33 unity mappings for these regions for these devices to access these regions. 102 DMAR:[fault reason 05] PTE Write access is not set 104 DMAR:[fault reason 05] PTE Write access is not set
|
D | vfio.txt | 8 agnostic framework for exposing direct device access to userspace, in 13 access ("device assignment") when configured for the highest possible 20 field, also benefit from low-overhead, direct device access from 26 and requires root privileges to access things like PCI configuration 37 create a programming interface made up of I/O access, interrupts, 40 as allowing a device read-write access to system memory imposes the 47 from each other and from arbitrary memory access, thus allowing 72 ensure secure user access, it's not necessarily the preferred 107 ioctls become available, enabling access to the VFIO IOMMU interfaces. 119 Assume user wants to access PCI device 0000:06:0d.0 [all …]
|
D | bt8xxgpio.txt | 21 == How to physically access the GPIO pins == 24 The are several ways to access these pins. One might unsolder the whole chip
|
D | volatile-considered-harmful.txt | 14 unwanted concurrent access, which is very much a different task. The 18 Like volatile, the kernel primitives which make concurrent access to data 43 necessary. But the compiler would also be prevented from optimizing access 74 architectures where direct I/O memory access does work. Essentially, 76 ensures that the access happens as expected by the programmer.
|
/linux-4.4.14/Documentation/arm/ |
D | mem_alignment | 1 Too many problems poped up because of unnoticed misaligned memory access in 10 unaligned memory access in general. If those access are predictable, you 12 alignment trap can fixup misaligned access for the exception cases, but at 16 trap to SIGBUS any code performing unaligned access (good for debugging bad 17 code), or even fixup the access by software like for kernel code. The later 32 0 A user process performing an unaligned memory access 38 performing the unaligned access. This is of course 43 performing the unaligned access. 54 information on unaligned access occurrences plus the current mode of
|
D | IXP4xx | 32 - Flash access (MTD/JFFS) 35 See arch/arm/mach-ixp4xx/include/mach/platform.h for access functions. 79 To access PCI via this space, we simply ioremap() the BAR 86 configured to use indirect registers to access PCI This allows 88 The disadvantage of this is that every PCI access requires
|
/linux-4.4.14/fs/ncpfs/ |
D | file.c | 35 int access; in ncp_make_open() local 54 finfo.access = O_RDWR; in ncp_make_open() 63 finfo.access = O_RDONLY; in ncp_make_open() 69 finfo.access = O_WRONLY; in ncp_make_open() 87 access = NCP_FINFO(inode)->access; in ncp_make_open() 88 ncp_vdbg("file open, access=%x\n", access); in ncp_make_open() 89 if (access == right || access == O_RDWR) { in ncp_make_open()
|
D | ncp_fs_i.h | 22 int access; member
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | trace.h | 149 TP_PROTO(unsigned long addr, unsigned long access, unsigned long trap), 150 TP_ARGS(addr, access, trap), 153 __field(unsigned long, access) 159 __entry->access = access; 164 __entry->addr, __entry->access, __entry->trap)
|
D | mmu-hash64.h | 324 extern int __hash_page_4K(unsigned long ea, unsigned long access, 327 extern int __hash_page_64K(unsigned long ea, unsigned long access, 333 unsigned long access, unsigned long trap, 335 extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap, 337 int __hash_page_huge(unsigned long ea, unsigned long access, unsigned long vsid, 341 extern int __hash_page_thp(unsigned long ea, unsigned long access, 345 static inline int __hash_page_thp(unsigned long ea, unsigned long access, in __hash_page_thp() argument 354 extern void hash_failure_debug(unsigned long ea, unsigned long access,
|
/linux-4.4.14/arch/s390/ |
D | Kconfig.debug | 10 prompt "Filter access to /dev/mem" 12 This option restricts access to /dev/mem. If this option is 13 disabled, you allow userspace access to all memory, including 14 kernel and userspace memory. Accidental memory access is likely 16 Memory access is required for experts who want to debug the kernel.
|
/linux-4.4.14/security/smack/ |
D | Kconfig | 16 bool "Reporting on access granted by Smack rules" 20 Enable the bring-up ("b") access mode in Smack rules. 21 When access is granted by a rule with the "b" mode a 22 message about the access requested is generated. The 24 of access initially with the bringup mode set on the 28 access rule set once the behavior is well understood.
|
D | smack_access.c | 296 static inline void smack_str_from_perm(char *string, int access) in smack_str_from_perm() argument 300 if (access & MAY_READ) in smack_str_from_perm() 302 if (access & MAY_WRITE) in smack_str_from_perm() 304 if (access & MAY_EXEC) in smack_str_from_perm() 306 if (access & MAY_APPEND) in smack_str_from_perm() 308 if (access & MAY_TRANSMUTE) in smack_str_from_perm() 310 if (access & MAY_LOCK) in smack_str_from_perm()
|
/linux-4.4.14/drivers/clocksource/ |
D | arm_arch_timer.c | 79 void arch_timer_reg_write(int access, enum arch_timer_reg reg, u32 val, in arch_timer_reg_write() argument 82 if (access == ARCH_TIMER_MEM_PHYS_ACCESS) { in arch_timer_reg_write() 92 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) { in arch_timer_reg_write() 103 arch_timer_reg_write_cp15(access, reg, val); in arch_timer_reg_write() 108 u32 arch_timer_reg_read(int access, enum arch_timer_reg reg, in arch_timer_reg_read() argument 113 if (access == ARCH_TIMER_MEM_PHYS_ACCESS) { in arch_timer_reg_read() 123 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) { in arch_timer_reg_read() 134 val = arch_timer_reg_read_cp15(access, reg); in arch_timer_reg_read() 140 static __always_inline irqreturn_t timer_handler(const int access, in timer_handler() argument 145 ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, evt); in timer_handler() [all …]
|
/linux-4.4.14/fs/afs/ |
D | security.c | 291 afs_access_t uninitialized_var(access); in afs_permission() 317 ret = afs_check_permit(vnode, key, &access); in afs_permission() 323 mask, access, S_ISDIR(inode->i_mode) ? "dir" : "file"); in afs_permission() 327 if (!(access & AFS_ACE_LOOKUP)) in afs_permission() 330 if (!(access & AFS_ACE_READ)) in afs_permission() 333 if (!(access & (AFS_ACE_DELETE | /* rmdir, unlink, rename from */ in afs_permission() 341 if (!(access & AFS_ACE_LOOKUP)) in afs_permission() 344 if (!(access & AFS_ACE_READ)) in afs_permission() 347 if (!(access & AFS_ACE_WRITE)) in afs_permission()
|
/linux-4.4.14/Documentation/mmc/ |
D | mmc-dev-parts.txt | 14 Read and write access is provided to the two MMC boot partitions. Due to 17 platform, write access is disabled by default to reduce the chance of 20 To enable write access to /dev/mmcblkXbootY, disable the forced read-only 21 access with: 25 To re-enable read-only access:
|
/linux-4.4.14/sound/core/ |
D | control.c | 208 unsigned int access, struct snd_ctl_file *file) in snd_ctl_new() argument 224 (*kctl)->vd[idx].access = access; in snd_ctl_new() 248 unsigned int access; in snd_ctl_new1() local 258 access = ncontrol->access; in snd_ctl_new1() 259 if (access == 0) in snd_ctl_new1() 260 access = SNDRV_CTL_ELEM_ACCESS_READWRITE; in snd_ctl_new1() 261 access &= (SNDRV_CTL_ELEM_ACCESS_READWRITE | in snd_ctl_new1() 268 err = snd_ctl_new(&kctl, count, access, NULL); in snd_ctl_new1() 555 if (!(kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_USER)) { in snd_ctl_remove_user_ctl() 603 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE)) in snd_ctl_activate_id() [all …]
|
/linux-4.4.14/arch/unicore32/ |
D | Kconfig.debug | 6 bool "Filter access to /dev/mem" 9 If this option is disabled, you allow userspace (root) access to all 11 access to this is obviously disastrous, but specific access can 15 userspace access to memory mapped peripherals.
|
/linux-4.4.14/sound/core/oss/ |
D | io.c | 46 if (plugin->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) { in io_playback_transfer() 72 if (plugin->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) { in io_capture_transfer() 101 if (plugin->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) { in io_src_channels() 130 plugin->access = params_access(params); in snd_pcm_plugin_build_io() 133 if (plugin->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) in snd_pcm_plugin_build_io()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-event_source-devices-hv_gpci | 5 '0' if the hypervisor is configured to forbid access to event 8 '1' if that access is allowed. 14 0 or 1. Indicates whether we have access to "GA" events (listed 21 0 or 1. Indicates whether we have access to "EXPANDED" events (listed 28 0 or 1. Indicates whether we have access to "LAB" events (listed
|
D | sysfs-c2port | 17 What: /sys/class/c2port/c2portX/access 21 The /sys/class/c2port/c2portX/access file enable the access 37 access to the on-board flash of the connected micro.
|
D | sysfs-bus-coresight-devices-etm3x | 24 for example the access type, the kind of instruction to trace, 26 the access type register may vary on the version of the trace 35 in the corresponding access type register. 43 options of the corresponding access type register. 51 configuration options of the corresponding access type register. 59 configuration options of the corresponding access type register. 71 Description: (RW) Used in conjunction with cntr_idx, give access to the 78 Description: (RW) Used in conjunction with cntr_idx, give access to the 85 Description: (RW) Used in conjunction with cntr_idx, give access to the 92 Description: (RW) Used in conjunction with cntr_idx, give access to the [all …]
|
/linux-4.4.14/fs/nfsd/ |
D | nfs2acl.c | 168 argp->access); in nfsacld_proc_access() 171 resp->access = argp->access; in nfsacld_proc_access() 172 nfserr = nfsd_access(rqstp, &resp->fh, &resp->access, NULL); in nfsacld_proc_access() 235 argp->access = ntohl(*p++); in nfsaclsvc_decode_accessargs() 311 *p++ = htonl(resp->access); in nfsaclsvc_encode_accessres() 370 PROC(access, access, access, access, RC_NOCACHE, ST+AT+1),
|
D | nfsfh.c | 304 fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type, int access) in fh_verify() argument 352 if (access & NFSD_MAY_LOCK || access & NFSD_MAY_BYPASS_GSS) in fh_verify() 359 if (access & NFSD_MAY_BYPASS_GSS_ON_ROOT in fh_verify() 369 error = nfsd_permission(rqstp, exp, dentry, access); in fh_verify() 375 access, ntohl(error)); in fh_verify()
|
/linux-4.4.14/arch/powerpc/mm/ |
D | hugetlbpage-hash64.c | 21 int __hash_page_huge(unsigned long ea, unsigned long access, unsigned long vsid, in __hash_page_huge() argument 53 if (unlikely(access & ~old_pte)) in __hash_page_huge() 58 if (access & _PAGE_RW) in __hash_page_huge() 116 hash_failure_debug(ea, access, vsid, trap, ssize, in __hash_page_huge()
|
D | hash_utils_64.c | 959 void hash_failure_debug(unsigned long ea, unsigned long access, in hash_failure_debug() argument 966 ea, access, current->comm); in hash_failure_debug() 994 unsigned long access, unsigned long trap, in hash_page_mm() argument 1008 ea, access, trap); in hash_page_mm() 1009 trace_hash_fault(ea, access, trap); in hash_page_mm() 1080 access |= _PAGE_PRESENT; in hash_page_mm() 1085 if (access & ~pte_val(*ptep)) { in hash_page_mm() 1093 rc = __hash_page_thp(ea, access, vsid, (pmd_t *)ptep, in hash_page_mm() 1097 rc = __hash_page_huge(ea, access, vsid, ptep, trap, in hash_page_mm() 1157 rc = __hash_page_64K(ea, access, vsid, ptep, trap, in hash_page_mm() [all …]
|
D | hugepage-hash64.c | 21 int __hash_page_thp(unsigned long ea, unsigned long access, unsigned long vsid, in __hash_page_thp() argument 46 if (unlikely(access & ~old_pmd)) in __hash_page_thp() 53 if (access & _PAGE_RW) in __hash_page_thp() 171 hash_failure_debug(ea, access, vsid, trap, ssize, in __hash_page_thp()
|
/linux-4.4.14/drivers/hwmon/pmbus/ |
D | zl6100.c | 38 ktime_t access; /* chip access time */ member 135 s64 delta = ktime_us_delta(ktime_get(), data->access); in zl6100_wait() 184 data->access = ktime_get(); in zl6100_read_word_data() 233 data->access = ktime_get(); in zl6100_read_byte_data() 275 data->access = ktime_get(); in zl6100_write_word_data() 291 data->access = ktime_get(); in zl6100_write_byte() 371 data->access = ktime_get(); in zl6100_probe() 396 data->access = ktime_get(); in zl6100_probe()
|
/linux-4.4.14/drivers/misc/c2port/ |
D | core.c | 351 return sprintf(buf, "%d\n", c2dev->access); in access_show() 367 c2dev->access = !!status; in access_store() 371 if (c2dev->access) in access_store() 373 ops->access(c2dev, c2dev->access); in access_store() 374 if (c2dev->access) in access_store() 381 static DEVICE_ATTR_RW(access); 390 if (!c2dev->access) in c2port_store_reset() 427 if (!c2dev->access) in c2port_show_dev_id() 464 if (!c2dev->access) in c2port_show_rev_id() 492 if (!dev->access) in __c2port_store_flash_access() [all …]
|
/linux-4.4.14/sound/i2c/other/ |
D | ak4117.c | 328 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 336 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 344 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 352 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 360 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 367 .access = SNDRV_CTL_ELEM_ACCESS_READ, 374 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 381 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 388 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 395 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, [all …]
|
D | ak4114.c | 341 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 349 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 357 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 365 .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 = SNDRV_CTL_ELEM_ACCESS_READ, 387 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 395 .access = SNDRV_CTL_ELEM_ACCESS_READ, 402 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, 409 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, [all …]
|
D | ak4113.c | 372 .access = SNDRV_CTL_ELEM_ACCESS_READ | 381 .access = SNDRV_CTL_ELEM_ACCESS_READ | 390 .access = SNDRV_CTL_ELEM_ACCESS_READ | 399 .access = SNDRV_CTL_ELEM_ACCESS_READ | 408 .access = SNDRV_CTL_ELEM_ACCESS_READ | 416 .access = SNDRV_CTL_ELEM_ACCESS_READ, 423 .access = SNDRV_CTL_ELEM_ACCESS_READ | 431 .access = SNDRV_CTL_ELEM_ACCESS_READ | 439 .access = SNDRV_CTL_ELEM_ACCESS_READ | 447 .access = SNDRV_CTL_ELEM_ACCESS_READ | [all …]
|
/linux-4.4.14/fs/9p/ |
D | fid.c | 121 int i, n, l, clone, access; in v9fs_fid_lookup_with_uid() local 126 access = v9ses->flags & V9FS_ACCESS_MASK; in v9fs_fid_lookup_with_uid() 149 if (access == V9FS_ACCESS_SINGLE) in v9fs_fid_lookup_with_uid() 234 int any, access; in v9fs_fid_lookup() local 238 access = v9ses->flags & V9FS_ACCESS_MASK; in v9fs_fid_lookup() 239 switch (access) { in v9fs_fid_lookup()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_chan.c | 139 args.access = NV_DMA_V0_ACCESS_VM; in nouveau_channel_prep() 150 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_prep() 156 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_prep() 163 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_prep() 169 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_prep() 307 args.access = NV_DMA_V0_ACCESS_VM; in nouveau_channel_init() 312 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_init() 324 args.access = NV_DMA_V0_ACCESS_VM; in nouveau_channel_init() 330 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_init() 336 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_init()
|
D | nv50_fence.c | 57 .access = NV_DMA_V0_ACCESS_RDWR, in nv50_fence_context_new() 72 .access = NV_DMA_V0_ACCESS_RDWR, in nv50_fence_context_new()
|
/linux-4.4.14/drivers/target/ |
D | Kconfig | 11 subsystem logic for virtual LUN 0 access 20 access to Linux/Block devices using BIO 26 access to Linux/VFS struct file or struct block_device 32 passthrough access to Linux/SCSI device
|
/linux-4.4.14/arch/powerpc/platforms/cell/spufs/ |
D | fault.c | 112 u64 ea, dsisr, access; in spufs_handle_class1() local 144 access = (_PAGE_PRESENT | _PAGE_USER); in spufs_handle_class1() 145 access |= (dsisr & MFC_DSISR_ACCESS_PUT) ? _PAGE_RW : 0UL; in spufs_handle_class1() 147 ret = hash_page(ea, access, 0x300, dsisr); in spufs_handle_class1()
|
/linux-4.4.14/Documentation/powerpc/ |
D | cxlflash.txt | 23 user space application direct access to Flash storage. 29 special path for user space access, and performing error recovery. It 42 either raw access to the entire LUN (referred to as direct 43 or physical LUN access) or access to a kernel/AFU-mediated 44 partition of the LUN (referred to as virtual LUN access). The 86 access to the Flash from user space (without requiring a system call). 89 block library to enable this user space access. The driver supports 111 Applications intending to get access to the CXL Flash from user 117 specifically for devices (LUNs) operating in user space access 131 device (LUN) via user space access need to use the services provided [all …]
|
/linux-4.4.14/fs/notify/fanotify/ |
D | Kconfig | 2 bool "Filesystem wide access notification" 7 Say Y here to enable fanotify support. fanotify is a file access 22 listeners which need to scan files before allowing the system access to
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
D | ctxgm107.c | 870 const u32 access = NV_MEM_ACCESS_RW | NV_MEM_ACCESS_SYS; in gm107_grctx_generate_bundle() local 872 const int b = mmio_vram(info, grctx->bundle_size, (1 << s), access); in gm107_grctx_generate_bundle() 884 const u32 access = NV_MEM_ACCESS_RW | NV_MEM_ACCESS_SYS; in gm107_grctx_generate_pagepool() local 886 const int b = mmio_vram(info, grctx->pagepool_size, (1 << s), access); in gm107_grctx_generate_pagepool() 903 const u32 access = NV_MEM_ACCESS_RW; in gm107_grctx_generate_attrib() local 905 const int b = mmio_vram(info, size * gr->tpc_total, (1 << s), access); in gm107_grctx_generate_attrib()
|
D | ctxgf100.c | 989 gf100_grctx_mmio_data(struct gf100_grctx *info, u32 size, u32 align, u32 access) in gf100_grctx_mmio_data() argument 996 info->data->access = access; in gf100_grctx_mmio_data() 1031 const u32 access = NV_MEM_ACCESS_RW | NV_MEM_ACCESS_SYS; in gf100_grctx_generate_bundle() local 1033 const int b = mmio_vram(info, grctx->bundle_size, (1 << s), access); in gf100_grctx_generate_bundle() 1044 const u32 access = NV_MEM_ACCESS_RW | NV_MEM_ACCESS_SYS; in gf100_grctx_generate_pagepool() local 1046 const int b = mmio_vram(info, grctx->pagepool_size, (1 << s), access); in gf100_grctx_generate_pagepool() 1060 const u32 access = NV_MEM_ACCESS_RW; in gf100_grctx_generate_attrib() local 1062 const int b = mmio_vram(info, size * gr->tpc_total, (1 << s), access); in gf100_grctx_generate_attrib()
|
D | ctxgk104.c | 850 const u32 access = NV_MEM_ACCESS_RW | NV_MEM_ACCESS_SYS; in gk104_grctx_generate_bundle() local 852 const int b = mmio_vram(info, grctx->bundle_size, (1 << s), access); in gk104_grctx_generate_bundle() 864 const u32 access = NV_MEM_ACCESS_RW | NV_MEM_ACCESS_SYS; in gk104_grctx_generate_pagepool() local 866 const int b = mmio_vram(info, grctx->pagepool_size, (1 << s), access); in gk104_grctx_generate_pagepool()
|
D | ctxgf108.c | 738 const u32 access = NV_MEM_ACCESS_RW; in gf108_grctx_generate_attrib() local 740 const int b = mmio_vram(info, size * gr->tpc_total, (1 << s), access); in gf108_grctx_generate_attrib()
|
D | ctxgf117.c | 190 const u32 access = NV_MEM_ACCESS_RW; in gf117_grctx_generate_attrib() local 192 const int b = mmio_vram(info, size * gr->tpc_total, (1 << s), access); in gf117_grctx_generate_attrib()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | omap3430-sdp.dts | 78 gpmc,access-ns = <114>; 79 gpmc,page-burst-access-ns = <6>; 83 gpmc,wr-access-ns = <186>; 124 gpmc,access-ns = <54>; 125 gpmc,wr-access-ns = <30>; 169 gpmc,access-ns = <78>;
|
D | omap-gpmc-smsc911x.dtsi | 41 gpmc,access-ns = <120>; 42 gpmc,page-burst-access-ns = <20>; 48 gpmc,wr-access-ns = <0>;
|
D | omap-gpmc-smsc9221.dtsi | 44 gpmc,access-ns = <36>; 45 gpmc,page-burst-access-ns = <0>; 49 gpmc,wr-access-ns = <42>;
|
D | omap3-overo-tobiduo-common.dtsi | 44 gpmc,access-ns = <36>; 45 gpmc,page-burst-access-ns = <0>; 49 gpmc,wr-access-ns = <42>;
|
D | omap2430-sdp.dts | 63 gpmc,access-ns = <187>; 64 gpmc,page-burst-access-ns = <24>; 70 gpmc,wr-access-ns = <0>;
|
D | omap-zoom-common.dtsi | 43 gpmc,access-ns = <145>; 44 gpmc,page-burst-access-ns = <20>; 50 gpmc,wr-access-ns = <145>;
|
D | omap3-sb-t35.dtsi | 125 gpmc,access-ns = <120>; 126 gpmc,page-burst-access-ns = <20>; 132 gpmc,wr-access-ns = <0>;
|
D | omap2420-h4.dts | 46 gpmc,access-ns = <150>; 47 gpmc,page-burst-access-ns = <10>;
|
D | omap3-devkit8000-common.dtsi | 221 gpmc,access-ns = <64>; 224 gpmc,wr-access-ns = <40>; 287 gpmc,access-ns = <144>; 288 gpmc,page-burst-access-ns = <24>; 294 gpmc,wr-access-ns = <0>;
|
D | omap3-n950-n9.dtsi | 150 gpmc,access-ns = <81>; 151 gpmc,page-burst-access-ns = <15>; 157 gpmc,wr-access-ns = <81>;
|
D | omap4-duovero-parlor.dts | 159 gpmc,access-ns = <50>; 160 gpmc,page-burst-access-ns = <0>; 164 gpmc,wr-access-ns = <50>;
|
D | omap2420-n8x0-common.dtsi | 70 gpmc,access-ns = <118>; 71 gpmc,page-burst-access-ns = <27>;
|
D | omap3-lilly-a83x.dtsi | 387 gpmc,access-ns = <60>; 388 gpmc,page-burst-access-ns = <5>; 393 gpmc,wr-access-ns = <155>; 440 gpmc,access-ns = <50>; 441 gpmc,page-burst-access-ns = <5>; 445 gpmc,wr-access-ns = <75>;
|
D | omap3-lilly-dbb056.dts | 151 gpmc,access-ns = <60>; 152 gpmc,page-burst-access-ns = <5>; 156 gpmc,wr-access-ns = <75>;
|
/linux-4.4.14/sound/usb/6fire/ |
D | control.c | 410 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | 422 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | 434 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | 450 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 460 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 470 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 483 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 492 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 501 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 510 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
|
/linux-4.4.14/drivers/s390/block/ |
D | Kconfig | 11 want to access more than 2G of memory when running in 31 bit mode. 28 Enable this option if you want to access DASDs directly utilizing 53 Select this option to be able to access FBA devices. It is safe to 58 prompt "Support for DIAG access to Disks" 61 Select this option if you want to use Diagnose250 command to access
|
/linux-4.4.14/drivers/staging/iio/cdc/ |
D | Kconfig | 11 (ad7150, ad7151, ad7156) Provides direct access via sysfs. 21 (ad7152, ad7153) Provides direct access via sysfs. 31 (AD7745, AD7746, AD7747) Provides direct access via sysfs.
|
/linux-4.4.14/drivers/staging/iio/resolver/ |
D | Kconfig | 11 to digital converters, ad2s90, provides direct access via sysfs. 22 to digital converters, ad2s1200 and ad2s1205, provides direct access 34 to digital converters, ad2s1210, provides direct access via sysfs.
|
/linux-4.4.14/Documentation/block/ |
D | pr.txt | 8 access to block devices to specific initiators in a shared storage 32 Only the initiator that owns the reservation can access the 42 Only initiators with a registered key can access the device. 55 Only initiators with a registered key can access the device. 78 This ioctl command reserves the device and thus restricts access for other 87 and thus removes any access restriction implied by it.
|
D | request.txt | 25 Unless an entry contains a D classification, a device driver must not access 27 access through certain macros or functions (eg ->flags).
|
/linux-4.4.14/drivers/mtd/maps/ |
D | pismo.c | 26 __le16 access; member 41 u16 access; member 167 region.access = le16_to_cpu(cs->access); in pismo_add_one() 182 i, cs->device, region.type, region.access, region.size / 1024); in pismo_add_one()
|
/linux-4.4.14/Documentation/misc-devices/ |
D | c2port.txt | 53 access flash_block_size flash_erase rev_id 57 Initially the C2port access is disabled since you hardware may have 58 such lines multiplexed with other devices so, to get access to the 61 # echo 1 > /sys/class/c2port/c2port0/access 71 However, for security reasons, the in-system flash access in not
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | gpmc-nor.txt | 21 - gpmc,access-ns: Start cycle to first data capture (read access) 72 gpmc,access-ns = <114>; 73 gpmc,page-burst-access-ns = <6>; 77 gpmc,wr-access-ns = <186>;
|
/linux-4.4.14/drivers/thermal/st/ |
D | Kconfig | 8 tristate "STi series syscfg register access based thermal sensors" 12 tristate "STi series memory mapped access based thermal sensors"
|
/linux-4.4.14/include/linux/ |
D | c2port.h | 26 unsigned int access:1; member 47 void (*access)(struct c2port_device *dev, int status); member
|
/linux-4.4.14/drivers/nvmem/ |
D | mxs-ocotp.c | 182 const struct regmap_access_table *access; in mxs_ocotp_probe() local 208 access = match->data; in mxs_ocotp_probe() 209 mxs_ocotp_config.rd_table = access; in mxs_ocotp_probe() 210 mxs_ocotp_config.max_register = access->yes_ranges[0].range_max; in mxs_ocotp_probe()
|
D | Kconfig | 22 i.MX6 SoCs, providing access to 4 Kbits of one-time programmable 32 If you say Y here, you will get readonly access to the 44 Say y here to enable QFPROM support. The QFPROM provides access
|
/linux-4.4.14/drivers/nvdimm/ |
D | Kconfig | 14 region which exposes an mmio register set for windowed access 33 capable of DAX (direct-access) file system mappings. See 44 access capability. BLK-mode access uses memory-mapped-i/o 45 apertures to access persistent media.
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | currituck.dts | 41 dcr-access-method = "native"; 55 dcr-access-method = "native"; 133 reg = <0x00000101 0x00000000 0x0 0x10000000 /* Config space access */ 134 0x00000100 0x00000000 0x0 0x00001000>; /* UTL Registers space access */ 171 reg = <0x00000301 0x00000000 0x0 0x10000000 /* Config space access */ 172 0x00000300 0x00000000 0x0 0x00001000>; /* UTL Registers space access */ 208 reg = <0x00000381 0x00000000 0x0 0x10000000 /* Config space access */ 209 0x00000380 0x00000000 0x0 0x00001000>; /* UTL Registers space access */
|
D | akebono.dts | 42 dcr-access-method = "native"; 56 dcr-access-method = "native"; 259 reg = <0x00000101 0x00000000 0x0 0x10000000 /* Config space access */ 260 0x00000100 0x00000000 0x0 0x00001000>; /* UTL Registers space access */ 299 reg = <0x00000201 0x00000000 0x0 0x10000000 /* Config space access */ 300 0x00000200 0x00000000 0x0 0x00001000>; /* UTL Registers space access */ 339 reg = <0x00000181 0x00000000 0x0 0x10000000 /* Config space access */ 340 0x00000180 0x00000000 0x0 0x00001000>; /* UTL Registers space access */ 379 reg = <0x00000281 0x00000000 0x0 0x10000000 /* Config space access */ 380 0x00000280 0x00000000 0x0 0x00001000>; /* UTL Registers space access */
|
D | iss4xx-mpic.dts | 45 dcr-access-method = "native"; 59 dcr-access-method = "native"; 75 dcr-access-method = "native"; 91 dcr-access-method = "native";
|
/linux-4.4.14/drivers/misc/cxl/ |
D | fault.c | 139 unsigned long access, flags, inv_flags = 0; in cxl_handle_page_fault() local 152 access = _PAGE_PRESENT; in cxl_handle_page_fault() 154 access |= _PAGE_RW; in cxl_handle_page_fault() 156 access |= _PAGE_USER; in cxl_handle_page_fault() 162 hash_page_mm(mm, dar, access, 0x300, inv_flags); in cxl_handle_page_fault()
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | omap-mcpdm.txt | 6 <MPU access base address, size>, 16 reg = <0x40132000 0x7f>, /* MPU private access */
|
D | omap-dmic.txt | 6 <MPU access base address, size>, 16 reg = <0x4012e000 0x7f>, /* MPU private access */
|
D | fsl,asrc.txt | 25 "mem" Peripheral access clock to access registers.
|
/linux-4.4.14/arch/arm/mach-iop32x/include/mach/ |
D | entry-macro.S | 15 mcr p15, 0, \tmp, c15, c1, 0 @ Enable cp6 access 32 mcrne p15, 0, \tmp1, c15, c1, 0 @ Disable cp6 access
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mcm.txt | 8 The LAW node represents the region of CCSR space where local access 11 number of local access windows as specified by fsl,num-laws. 30 Definition: The value specifies the number of local access
|
D | ecm.txt | 8 The LAW node represents the region of CCSR space where local access 11 number of local access windows as specified by fsl,num-laws. 30 Definition: The value specifies the number of local access
|
/linux-4.4.14/arch/arm/mach-iop13xx/include/mach/ |
D | entry-macro.S | 22 mcr p15, 0, \tmp, c15, c1, 0 @ Enable cp6 access 41 mcrne p15, 0, \tmp1, c15, c1, 0 @ Disable cp6 access
|
/linux-4.4.14/Documentation/locking/ |
D | lglock.txt | 1 lglock - local/global locks for mostly local access patterns 20 global write access. 24 - very fast access to the local per_cpu data 25 - reasonably fast access to specific per_cpu data on a different 28 - by expensive access to all CPUs locks - effectively 105 access to protected per_cpu object on this CPU 109 access to protected per_cpu object on other CPU cpu 113 access all protected per_cpu objects on all CPUs
|
/linux-4.4.14/arch/arm64/ |
D | Kconfig.debug | 18 bool "Filter access to /dev/mem" 21 If this option is disabled, you allow userspace (root) access to all 23 access to this is obviously disastrous, but specific access can 27 userspace access to memory mapped peripherals.
|
/linux-4.4.14/Documentation/vm/ |
D | split_page_table_lock | 10 access to the table. At the moment we use split lock for PTE and PMD 78 page->ptl is used to access split page table lock, where 'page' is struct 85 can avoid indirect access and save a cache line. 89 one more cache line for indirect access; 94 Please, never access page->ptl directly -- use appropriate helper.
|
D | numa | 28 Memory access time and effective memory bandwidth varies depending on how far 29 away the cell containing the CPU or IO bus making the memory access is from the 30 cell containing the target memory. For example, access to memory by CPUs 31 attached to the same cell will experience faster access times and higher 50 faster access times and higher effective bandwidth than accesses to more 57 a given node will see the same local memory access times and bandwidth. 70 statistics and locks to mediate access. In addition, Linux constructs for 96 Local allocation will tend to keep subsequent access to the allocated memory
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | gpmc-eth.txt | 36 - gpmc,access-ns: Start cycle to first data capture (read access) 80 gpmc,access-ns = <114>; 81 gpmc,page-burst-access-ns = <6>; 85 gpmc,wr-access-ns = <186>;
|
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/ |
D | arm,pl172.txt | 73 - mpmc,write-access-delay: Delay from chip select assertion to write 74 access in nano seconds. 76 - mpmc,read-access-delay: Delay from chip select assertion to read 77 access in nano seconds. 82 - mpmc,turn-round-delay: Delay between access to memory banks in nano
|
/linux-4.4.14/arch/arm/mach-iop33x/include/mach/ |
D | entry-macro.S | 15 mcr p15, 0, \tmp, c15, c1, 0 @ Enable cp6 access 33 mcrne p15, 0, \tmp1, c15, c1, 0 @ Disable cp6 access
|
/linux-4.4.14/tools/perf/util/ |
D | pager.c | 55 if (!(pager || access("/usr/bin/pager", X_OK))) in setup_pager() 57 if (!(pager || access("/usr/bin/less", X_OK))) in setup_pager()
|
D | llvm-utils.c | 62 if (access(def, F_OK) == 0) { in search_program() 81 if (access(buf, F_OK) == 0) { in search_program() 240 if (access(autoconf_path, R_OK) == 0) { in detect_kbuild_dir()
|
/linux-4.4.14/drivers/net/ethernet/ti/ |
D | davinci_mdio.c | 75 u32 access; member 179 reg = __raw_readl(®s->user[0].access); in wait_for_user_access() 197 reg = __raw_readl(®s->user[0].access); in wait_for_user_access() 245 __raw_writel(reg, &data->regs->user[0].access); in davinci_mdio_read() 253 reg = __raw_readl(&data->regs->user[0].access); in davinci_mdio_read() 290 __raw_writel(reg, &data->regs->user[0].access); in davinci_mdio_write()
|
/linux-4.4.14/Documentation/cgroups/ |
D | devices.txt | 6 on device files. A device cgroup associates a device access 16 never receive a device access which is denied by its parent. 55 access permissions than its parent. Every time an entry is written to 59 more access than the cgroup's parent, it'll be removed from the whitelist. 113 implementation. Removal or addition of exceptions that will reduce the access 116 on current parent's access rules.
|
/linux-4.4.14/drivers/staging/iio/frequency/ |
D | Kconfig | 11 AD9832 and AD9835, provides direct access via sysfs. 21 AD9833, AD9834, AD9837 and AD9838, provides direct access via sysfs.
|
/linux-4.4.14/arch/avr32/mach-at32ap/ |
D | Kconfig | 12 when doing little-endian port access. 16 raw access and is thus not affected by any of this.)
|
/linux-4.4.14/Documentation/devicetree/bindings/phy/ |
D | dm816x-phy.txt | 10 - syscon: phandle for the syscon node to access misc registers 12 - syscon: phandle for the syscon node to access misc registers
|
/linux-4.4.14/drivers/staging/most/Documentation/ |
D | driver_usage.txt | 5 access a MOST network: The Automotive Information Backbone and the de-facto 37 AIM (application interfacing module). The modules of this layer give access 41 To physically access MOST, an Intelligent Network Interface Controller 81 and provides access to user space or other kernel subsystems. 85 Applications can access the driver by means of character devices. 88 Standard networking applications (e.g. iperf) can by used to access 92 Standard video applications (e.g. VLC) can by used to access the 97 used to access the driver via the ALSA subsystem.
|
/linux-4.4.14/Documentation/filesystems/ |
D | 9p.txt | 68 aname=name aname specifies the file tree to access when the server is 120 access there are four access modes. 121 user = if a user tries to access a file on v9fs 125 <uid> = allows only user with uid=<uid> to access 129 client = ACL based access check on the 9p client 130 side for access validation
|
D | sysfs-pci.txt | 4 sysfs, usually mounted at /sys, provides access to PCI resources on platforms 66 resources, which also provide read/write access. 74 The 'rom' file is special in that it provides read-only access to the device's 77 call, and disable it following the access by writing "0" to the file. Note 108 to access legacy memory space. 110 Supporting PCI access on new platforms
|
D | fuse.txt | 93 By default FUSE doesn't check file access permissions, the 94 filesystem is free to implement its access policy or leave it to 95 the underlying file access mechanism (e.g. in case of network 97 access based on file mode. It is usually useful together with the 102 This option overrides the security measure restricting file access 231 B) mount owner should not get illegitimate access to information from 268 This is solved in fusermount, by checking the access 271 access to the mountpoint, and mountpoint is not a "sticky" 290 to access the filesystem, which could otherwise not be 294 ptrace can be used to check if a process is allowed to access
|
/linux-4.4.14/drivers/block/ |
D | cpqarray.h | 72 struct access_method *access; member 102 struct access_method access; member
|
D | cpqarray.c | 407 hba[i]->access.set_intr_mask(hba[i], 0); in cpqarray_register_ctlr() 462 hba[i]->access.set_intr_mask(hba[i], FIFO_NOT_EMPTY); in cpqarray_register_ctlr() 697 c->access = *(products[i].access); in cpqarray_pci_init() 795 hba[ctlr]->access = *(products[j].access); in cpqarray_eisa_detect() 981 if (h->access.fifo_full(h) == 0) in start_io() 989 h->access.submit_command(h, c); in start_io() 1051 istat = h->access.intr_pending(h); in do_ida_intr() 1062 while((a = h->access.command_completed(h))) { in do_ida_intr() 1451 info_p->access.set_intr_mask(info_p, 0); in sendcmd() 1455 temp = info_p->access.fifo_full(info_p); in sendcmd() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/power/reset/ |
D | syscon-reboot.txt | 12 - mask: the reset value written to the reboot register (32 bit access) 14 Default will be little endian mode, 32 bit access only.
|
D | syscon-poweroff.txt | 12 - mask: the poweroff value written to the poweroff register (32 bit access) 14 Default will be little endian mode, 32 bit access only.
|
/linux-4.4.14/include/rdma/ |
D | ib_umem.h | 86 size_t size, int access, int dmasync); 98 int access, int dmasync) { in ib_umem_get() argument
|
/linux-4.4.14/security/keys/ |
D | Kconfig | 6 bool "Enable access key retention support" 10 access keys in the kernel. 17 a searchable sequence of keys. Each process is equipped with access 34 LSMs gets to rule on which admin-level processes get to access the
|
/linux-4.4.14/Documentation/parisc/ |
D | debugging | 16 When real-mode code tries to access non-existent memory, you'll get 21 code tried to access. 26 access it.
|
/linux-4.4.14/arch/cris/arch-v32/lib/ |
D | checksumcopy.S | 30 1: ;; A failing userspace access (the read) will have this as PC. 71 2: ;; A failing userspace access for the read below will have this as PC. 87 3: ;; A failing userspace access for the read below will have this as PC.
|
/linux-4.4.14/sound/pci/ice1712/ |
D | aureon.c | 1416 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1434 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1453 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1472 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1491 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1510 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1531 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1548 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1598 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 1617 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | [all …]
|
D | phase.c | 772 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 790 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 809 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 828 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 847 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 866 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 887 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
|
D | prodigy_hifi.c | 304 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 780 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 790 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 800 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 811 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 822 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 833 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 844 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
|
/linux-4.4.14/Documentation/devicetree/bindings/bus/ |
D | ti-gpmc.txt | 60 - gpmc,page-burst-access-ns: Multiple access word delay 61 - gpmc,access-ns: Start-cycle to first data valid delay 80 - gpmc,time-para-granularity: Multiply all access times by 2 83 - gpmc,wr-access-ns: In synchronous write mode, for single or 85 GPMC_FCLK cycles from start access time
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
D | mmu.h | 24 u32 access; member 46 int nvkm_vm_get(struct nvkm_vm *, u64 size, u32 page_shift, u32 access,
|
/linux-4.4.14/drivers/memstick/host/ |
D | Kconfig | 12 Say Y here if you want to be able to access MemoryStick cards with 28 Say Y here if you want to be able to access MemoryStick cards with 39 Say Y here if you want to be able to access MemoryStick cards with
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-mux-gpio.txt | 35 Whenever an access is made to a device on a child bus, the value set 40 whenever an access is not being made to a device on a child bus, the 44 left programmed into hardware whenever no access is being made to a
|
D | i2c-mux-pinctrl.txt | 47 Whenever an access is made to a device on a child bus, the relevant pinctrl 50 If an idle state is defined, whenever an access is not being made to a device 54 left programmed into hardware whenever no access is being made of a device on
|
/linux-4.4.14/drivers/infiniband/ |
D | Kconfig | 25 tristate "InfiniBand userspace access (verbs and CM)" 28 Userspace InfiniBand access support. This enables the 31 to set up connections and directly access InfiniBand
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | u_uac1.c | 107 snd->access = SNDRV_PCM_ACCESS_RW_INTERLEAVED; in playback_default_hw_params() 118 snd->access, 0); in playback_default_hw_params() 138 snd->access = params_access(params); in playback_default_hw_params() 147 snd->access, snd->format, snd->channels, snd->rate); in playback_default_hw_params()
|
/linux-4.4.14/Documentation/networking/mac80211_hwsim/ |
D | README | 29 configuration of both very simply setups (e.g., just a single access 30 point and a station) or large scale tests (multiple access points with 48 one to act as an access point and the other as a station that 51 processing access point side of association.
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | README.quirks | 27 bus access. This is desirable since the video will request the bus more 28 often. However, the audio will have highest bus access priority. Thus 29 the audio will have first access to the bus even when issuing a request 31 access to the Bt879. Neither function can preempt the other once on the 33 very short compared to the bus access latency the audio PCI FIFO can
|
/linux-4.4.14/Documentation/x86/ |
D | exception-tables.txt | 4 When a process runs in kernel mode, it often has to access user 26 Whenever the kernel tries to access an address that is currently not 54 to executable code. This code is hidden inside the user access macros. 138 > 1: movb (%ebx),%dl /* this is the actual user access */ 153 understand. Can we? The actual user access is quite obvious. Thanks 154 to the unified address space we can just access the address in user 199 The whole user memory access is reduced to 10 x86 machine instructions. 263 1.) access to invalid address: 277 instruction immediately after the faulting user access). 283 get_user macro actually returns a value: 0, if the user access was
|
D | pat.txt | 151 For ioremap and pci access through /sys or /proc - The actual type returned 162 Drivers should use ioremap_[uc|wc] to access PCI BARs with [uc|wc] access 165 Drivers should use set_memory_[uc|wc|wt] to set access type for RAM ranges. 193 access those physical address ranges.
|
/linux-4.4.14/drivers/iio/ |
D | industrialio-buffer.c | 42 return buf->access->data_available(buf); in iio_buffer_data_available() 117 if (!rb || !rb->access->read_first_n) in iio_buffer_read_first_n_outer() 143 ret = rb->access->read_first_n(rb, n, buf); in iio_buffer_read_first_n_outer() 493 buffer->access->set_length(buffer, val); in iio_buffer_write_length() 575 if (!buffer->access->set_bytes_per_datum) in iio_buffer_update_bytes_per_datum() 581 buffer->access->set_bytes_per_datum(buffer, bytes); in iio_buffer_update_bytes_per_datum() 590 if (buffer->access->request_update) { in iio_buffer_request_update() 591 ret = buffer->access->request_update(buffer); in iio_buffer_request_update() 644 modes &= buffer->access->modes; in iio_verify_update() 648 modes &= insert_buffer->access->modes; in iio_verify_update() [all …]
|
/linux-4.4.14/sound/pci/oxygen/ |
D | oxygen_mixer.c | 753 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ 770 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 811 .access = SNDRV_CTL_ELEM_ACCESS_READ, 819 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | 832 .access = SNDRV_CTL_ELEM_ACCESS_READ, 840 .access = SNDRV_CTL_ELEM_ACCESS_READ, 880 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | 905 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | 932 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | 959 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | [all …]
|
/linux-4.4.14/drivers/mtd/devices/ |
D | Kconfig | 57 This enables access to AT45xxx DataFlash chips, using SPI. 85 This enables access to most modern SPI flash chips, used for 109 This enables access to the non JEDEC SST25L SPI flash chips, used 135 Use this driver to access physical memory that the kernel proper 136 doesn't have access to, memory beyond the mem=xxx limit, nvram, 202 This provides an MTD device to access flash on powernv OPAL 204 firmware interface for flash access. 217 The driver provides access to G3 DiskOnChip, distributed by 219 and doesn't give access to any write operations.
|
/linux-4.4.14/arch/mips/kernel/ |
D | smp-cps.c | 193 u32 access, stat, seq_state; in boot_core() local 206 access = read_gcr_access(); in boot_core() 207 access |= 1 << (CM_GCR_ACCESS_ACCESSEN_SHF + core); in boot_core() 208 write_gcr_access(access); in boot_core()
|
/linux-4.4.14/drivers/iio/frequency/ |
D | Kconfig | 18 Clock Generator. The driver provides direct access via sysfs. 36 Wideband Synthesizers. The driver provides direct access via sysfs.
|
/linux-4.4.14/Documentation/scsi/ |
D | ufs.txt | 71 service access points for higher layers. 72 * UDM_SAP: Device manager service access point is exposed to device 75 * UTP_CMD_SAP: Command service access point is exposed to UFS command 77 * UTP_TM_SAP: Task management service access point is exposed to task 85 MIPI UniPro and MIPI M-PHY. UIC provides 2 service access points
|
/linux-4.4.14/sound/soc/ |
D | soc-topology.c | 523 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE in soc_tplg_kcontrol_bind_io() 524 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { in soc_tplg_kcontrol_bind_io() 649 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE)) in soc_tplg_create_tlv() 652 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) { in soc_tplg_create_tlv() 709 be->hdr.name, be->hdr.access); in soc_tplg_dbytes_create() 715 kc.access = be->hdr.access; in soc_tplg_dbytes_create() 789 mc->hdr.name, mc->hdr.access); in soc_tplg_dmixer_create() 795 kc.access = mc->hdr.access; in soc_tplg_dmixer_create() 941 kc.access = ec->hdr.access; in soc_tplg_denum_create() 1155 kc[i].access = mc->hdr.access; in soc_tplg_dapm_widget_dmixer_create() [all …]
|
/linux-4.4.14/drivers/char/ |
D | Kconfig | 14 The /dev/mem device is used to access areas of physical 73 stored on the Blackfin processor. This will not get you access 142 is needed for programs that want portable access to the parallel 239 allow random users access to this device. :-) 254 you get read and write access to the extra bytes of non-volatile 287 will get access to the real time clock (or hardware clock) built 313 will get access to the real time clock (or hardware clock) built 335 will get access to the real time clock (or hardware clock) built 364 will get access to the real time clock (or hardware clock) built 422 This driver enables access to the Sony Programmable I/O Control [all …]
|
/linux-4.4.14/arch/m68k/ifpsp060/src/ |
D | isp.S | 889 # future access error; if -(a7), set mda7_flg in # 893 # future access error; if (a7)+, set mia7_flg in # 1045 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error 1056 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error 1067 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error 1078 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error 1089 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error 1100 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error 1111 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error 1130 mov.l %d0,EXC_SAVVAL(%a6) # save in case of access error [all …]
|
/linux-4.4.14/drivers/staging/vme/devices/ |
D | Kconfig | 4 tristate "VME user space access driver" 7 If you say Y here you want to be able to access a limited number of
|
/linux-4.4.14/arch/s390/mm/ |
D | fault.c | 371 static inline int do_exception(struct pt_regs *regs, int access) in do_exception() argument 411 if (access == VM_WRITE || (trans_exc_code & store_indication) == 0x400) in do_exception() 448 if (unlikely(!(vma->vm_flags & access))) in do_exception() 552 int access, fault; in do_dat_exception() local 554 access = VM_READ | VM_EXEC | VM_WRITE; in do_dat_exception() 555 fault = do_exception(regs, access); in do_dat_exception()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
D | nv50.c | 69 if (vma->access & NV_MEM_ACCESS_SYS) in vm_addr() 71 if (!(vma->access & NV_MEM_ACCESS_WO)) in vm_addr() 130 u32 target = (vma->access & NV_MEM_ACCESS_NOSNOOP) ? 3 : 2; in nv50_vm_map_sg()
|
D | gf100.c | 94 if (vma->access & NV_MEM_ACCESS_SYS) in gf100_vm_addr() 133 u32 target = (vma->access & NV_MEM_ACCESS_NOSNOOP) ? 7 : 5; in gf100_vm_map_sg()
|
/linux-4.4.14/arch/cris/arch-v10/lib/ |
D | checksumcopy.S | 40 1: ;; A failing userspace access will have this as PC. 103 2: ;; A failing userspace access will have this as PC. 122 3: ;; A failing userspace access will have this as PC.
|
/linux-4.4.14/Documentation/devicetree/bindings/pci/ |
D | 83xx-512x-pci.txt | 8 The second is for the pci config space access registers 37 0xe0008300 0x8>; /* config space access registers */
|
/linux-4.4.14/arch/s390/pci/ |
D | pci_mmio.c | 14 static long get_pfn(unsigned long user_addr, unsigned long access, in get_pfn() argument 26 if (!(vma->vm_flags & access)) in get_pfn()
|
/linux-4.4.14/Documentation/hwmon/ |
D | menf21bmc | 15 interface to the host to access the features implemented in the BMC. 17 This driver gives access to the voltage monitoring feature of the main
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | exprep.c | 228 u32 access; in acpi_ex_decode_field_access() local 234 access = (field_flags & AML_FIELD_ACCESS_TYPE_MASK); in acpi_ex_decode_field_access() 236 switch (access) { in acpi_ex_decode_field_access() 283 ACPI_ERROR((AE_INFO, "Unknown field access type 0x%X", access)); in acpi_ex_decode_field_access()
|
/linux-4.4.14/Documentation/bus-devices/ |
D | ti-gpmc.txt | 65 access: t_iaa, t_oe, t_ce, t_aa 71 access: t_iaa, t_oe, t_ce, t_aa 77 access: t_iaa, cyc_iaa, cyc_oe 83 access: t_iaa, cyc_iaa, cyc_oe
|
/linux-4.4.14/Documentation/ia64/ |
D | efirtc.txt | 12 to get access to the Time Service offered by EFI version 0.92. 21 The original ideas was to provide a very simple driver to get access to, 22 at first, the time of day service. This is required in order to access, in a 55 The part of the driver gives access to the time of day service of EFI. 96 the same ioctl()s to get access to the service. Instead we have
|
/linux-4.4.14/Documentation/i2c/ |
D | dev-interface | 2 possible to access all devices on an adapter from userspace, through 20 So let's say you want to access an i2c adapter from a C program. The 28 Now, you have to decide which adapter you want to access. You should 60 __u8 reg = 0x10; /* Device register to access */ 140 Not meant to be called directly; instead, use the access functions 145 ioctl I2C_SLAVE before you try to access the device. 188 device you want to access) and I2C_PEC (enable or disable SMBus error 201 anything special to support access from user-space.
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-sis5595 | 55 WARNING: If you are trying to access the integrated sensors on the SiS5595 58 drivers to access chips on the bus.
|
/linux-4.4.14/security/tomoyo/ |
D | Kconfig | 12 This selects TOMOYO Linux, pathname-based access control. 25 Some programs access thousands of objects, so running 46 Say Y here if you want to activate access control as soon as built-in
|
/linux-4.4.14/sound/i2c/ |
D | cs8427.c | 482 .access = (SNDRV_CTL_ELEM_ACCESS_READ | 491 .access = (SNDRV_CTL_ELEM_ACCESS_READ | 497 .access = SNDRV_CTL_ELEM_ACCESS_READ, 512 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | 525 .access = (SNDRV_CTL_ELEM_ACCESS_READ | 574 chip->playback.pcm_ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; in snd_cs8427_iec958_active()
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 95 - access to missing or protected translations 154 role.access: 155 Inherited guest access permissions in the form uwx. Note execute 278 - a true guest fault (the guest translation won't allow the access) (*) 279 - access to a missing translation 280 - access to a protected translation 283 - access to untranslatable memory (mmio) 294 - cache the information to vcpu->arch.mmio_gva, vcpu->arch.access and 304 vcpu->arch.mmio_gva, vcpu->arch.access and vcpu->arch.mmio_gfn 345 semantics require allowing any guest kernel access plus user read access). [all …]
|
/linux-4.4.14/include/sound/ |
D | soc.h | 78 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ 86 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ 98 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ 128 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ 137 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ 147 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ 156 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ 168 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ 177 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ 230 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ [all …]
|
/linux-4.4.14/drivers/vhost/ |
D | Kconfig | 27 This option is selected by any driver which needs to access 33 This option is selected by any driver which needs to access
|
/linux-4.4.14/drivers/video/backlight/ |
D | ili9320.c | 33 struct ili9320_spi *spi = &ili->access.spi; in ili9320_write_spi() 175 struct ili9320_spi *spi = &ili->access.spi; in ili9320_setup_spi() 225 ili->access.spi.id = ILI9320_SPI_IDCODE | ILI9320_SPI_ID(1); in ili9320_probe_spi()
|
/linux-4.4.14/sound/aoa/codecs/ |
D | tas.c | 277 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 320 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 376 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \ 432 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 472 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 541 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 592 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 643 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
|
/linux-4.4.14/Documentation/namespaces/ |
D | compatibility-list.txt | 31 access permissions to files, belonging to user 10 in another 35 from different user namespaces should not access the same IPC objects
|
/linux-4.4.14/tools/perf/arch/ |
D | common.c | 78 if (access(buf, F_OK) == 0) { in lookup_path() 157 if (access(buf, F_OK) == 0) in perf_env__lookup_binutils_path()
|
/linux-4.4.14/Documentation/blockdev/ |
D | cciss.txt | 94 SCSI sequential access devices and medium changer devices are supported and 117 Note also that if no sequential access devices or medium changers are 133 driver to make note of any new or removed sequential access devices 143 Note: ONLY sequential access devices and medium changers are presented 148 access these devices too, as if the array controller were merely a SCSI 149 controller in the same way that we are allowing it to access SCSI tape drives.
|
/linux-4.4.14/fs/nfs/ |
D | nfs3proc.c | 204 arg.access |= NFS3_ACCESS_READ; in nfs3_proc_access() 207 arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE; in nfs3_proc_access() 209 arg.access |= NFS3_ACCESS_LOOKUP; in nfs3_proc_access() 212 arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND; in nfs3_proc_access() 214 arg.access |= NFS3_ACCESS_EXECUTE; in nfs3_proc_access() 225 if (res.access & NFS3_ACCESS_READ) in nfs3_proc_access() 227 if (res.access & (NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE)) in nfs3_proc_access() 229 if (res.access & (NFS3_ACCESS_LOOKUP|NFS3_ACCESS_EXECUTE)) in nfs3_proc_access() 936 .access = nfs3_proc_access,
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | device.txt | 38 Raw data reading function. Used for both raw channel access 58 Specify whether direct access and / or ring buffer access is supported.
|
/linux-4.4.14/Documentation/fmc/ |
D | fmc-chardev.txt | 4 This is a simple generic driver, that allows user access by means of a 27 The example below shows raw access to a SPEC card programmed with its 44 The simple program tools/fmc-mem in this package can access an FMC char
|
/linux-4.4.14/drivers/infiniband/core/ |
D | umem.c | 84 size_t size, int access, int dmasync) in ib_umem_get() argument 132 umem->writable = !!(access & in ib_umem_get() 136 if (access & IB_ACCESS_ON_DEMAND) { in ib_umem_get()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | mr.c | 409 u32 access) in mlx4_mr_hw_change_access() argument 412 (access & MLX4_PERM_MASK); in mlx4_mr_hw_change_access() 420 u64 iova, u64 size, u32 access, int npages, in mlx4_mr_alloc_reserved() argument 426 mr->access = access; in mlx4_mr_alloc_reserved() 529 int mlx4_mr_alloc(struct mlx4_dev *dev, u32 pd, u64 iova, u64 size, u32 access, in mlx4_mr_alloc() argument 540 access, npages, page_shift, mr); in mlx4_mr_alloc() 647 mr->access); in mlx4_mr_enable() 1046 int mlx4_fmr_alloc(struct mlx4_dev *dev, u32 pd, u32 access, int max_pages, in mlx4_fmr_alloc() argument 1067 err = mlx4_mr_alloc(dev, pd, 0, 0, access, max_pages, in mlx4_fmr_alloc()
|
/linux-4.4.14/tools/hv/ |
D | hv_fcopy_daemon.c | 61 if (access((char *)smsg->path_name, F_OK)) { in hv_start_fcopy() 78 if (!access(target_fname, F_OK)) { in hv_start_fcopy()
|
/linux-4.4.14/tools/perf/trace/strace/groups/ |
D | file | 1 access
|
/linux-4.4.14/sound/pci/emu10k1/ |
D | emumixer.c | 494 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \ 555 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \ 623 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \ 671 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \ 800 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 851 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 902 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 1058 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ 1144 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 1182 .access = SNDRV_CTL_ELEM_ACCESS_READ, [all …]
|
/linux-4.4.14/arch/tile/mm/ |
D | migrate.h | 31 extern int flush_and_install_context(HV_PhysAddr page_table, HV_PTE access,
|
/linux-4.4.14/drivers/video/fbdev/omap/ |
D | sossi.c | 265 static inline void set_timing(int access) in set_timing() argument 267 if (access != sossi.last_access) { in set_timing() 268 sossi.last_access = access; in set_timing() 270 sossi.clk_tw0[access], sossi.clk_tw1[access]); in set_timing()
|
/linux-4.4.14/drivers/sh/intc/ |
D | Makefile | 1 obj-y := access.o chip.o core.o handle.o irqdomain.o virq.o
|
/linux-4.4.14/Documentation/isdn/ |
D | README.x25 | 62 - You might want to access a public X.25 data network from your Linux box. 68 access to PSPDN [packet switched public data network]). 70 NOTE: X.31 also covers a Case B (access to PSPDN via virtual 77 possible to access D-channel X.31 with active AVM cards using the 115 To access an X.25 network switch via isdn (your linux box is the DTE), use 128 probably work if you access a public X.25 network as long as the
|
/linux-4.4.14/Documentation/m68k/ |
D | README.buddha | 62 $f00 read only, Byte-access: Bit 7 shows the 67 $f40 read only, Byte-access: Bit 7 shows the 72 $f80 read only, Byte-access: Bit 7 shows the 120 access is being made. These registers should be used for a 121 command access to the harddisk/CD-Rom, since command 183 bus interface, making the whole access 497ns long. This
|
/linux-4.4.14/drivers/rapidio/ |
D | Makefile | 5 rapidio-y := rio.o rio-access.o rio-driver.o rio-sysfs.o
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/4xx/ |
D | cpm.txt | 5 - dcr-access-method : "native" 45 dcr-access-method = "native";
|
/linux-4.4.14/arch/arm/mach-ep93xx/ |
D | crunch-bits.S | 74 tst r1, #0x00800000 @ access to crunch enabled? 78 orr r1, r1, #0x00800000 @ enable access to crunch 227 ldr r5, [r4, #0x80] @ enable access to crunch 239 mov r2, #0xaa @ disable access to crunch
|
/linux-4.4.14/arch/powerpc/kvm/ |
D | Kconfig | 56 This module provides access to the hardware capabilities through 71 This module provides access to the hardware capabilities through 151 This module provides access to the hardware capabilities through 167 This module provides access to the hardware capabilities through
|
/linux-4.4.14/sound/mips/ |
D | sgio2audio.c | 237 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 249 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 260 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 271 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 282 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 294 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, 305 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
|
/linux-4.4.14/Documentation/devicetree/bindings/thermal/ |
D | exynos-thermal.txt | 26 register, also provide clock to access that base. 35 -- 2. optional clock to access the shared registers of TMU channel 39 -- "tmu_triminfo_apbif" clock to access the shared triminfo register
|
/linux-4.4.14/arch/um/ |
D | Kconfig.um | 30 booting and normal file access, this module lets the UML user 31 access files stored on the host. It does not require any 39 wishes to access.
|
/linux-4.4.14/drivers/block/paride/ |
D | pg.c | 217 unsigned long access; /* count of active opens ... */ member 252 clear_bit(0, &dev->access); in pg_init_units() 538 if (test_and_set_bit(0, &dev->access)) { in pg_open() 552 clear_bit(0, &dev->access); in pg_open() 571 clear_bit(0, &dev->access); in pg_release()
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | pnfs-block-server.txt | 5 to handling all the metadata access to the NFS export also hands out layouts 6 to the clients to directly access the underlying block devices that are
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/engine/ |
D | dma.h | 12 u32 access; member
|
/linux-4.4.14/arch/arm/mm/ |
D | abort-ev4.S | 22 uaccess_disable ip @ disable userspace access
|
/linux-4.4.14/Documentation/frv/ |
D | configuring.txt | 63 This makes the protection register governing access to the core kernel 64 image prohibit access by userspace programs. This option is available on 99 running uClinux. This will use the CB70's DM9000 for network access.
|
/linux-4.4.14/drivers/infiniband/ulp/srp/ |
D | Kconfig | 7 allows you to access storage devices that speak SRP over
|
/linux-4.4.14/drivers/vme/boards/ |
D | Kconfig | 8 chip. This driver has to be included if you want to access VME bus
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | Kconfig | 23 This gives you access to some advanced options for the PS3. The 112 This support is required to access the PS3 hard disk. 122 This support is required to access the PS3 BD/DVD/CD-ROM drive. 133 This support is required to access the PS3 FLASH ROM, which
|
/linux-4.4.14/sound/soc/codecs/ |
D | sigmadsp.c | 141 if (!(kcontrol->vd[0].access & SNDRV_CTL_ELEM_ACCESS_INACTIVE)) in sigmadsp_ctrl_put() 644 template.access = SNDRV_CTL_ELEM_ACCESS_READWRITE; in sigmadsp_alloc_control() 646 template.access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE; in sigmadsp_alloc_control() 677 if (active == (bool)(vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE)) { in sigmadsp_activate_ctrl() 678 vd->access ^= SNDRV_CTL_ELEM_ACCESS_INACTIVE; in sigmadsp_activate_ctrl()
|
/linux-4.4.14/Documentation/networking/ |
D | baycom.txt | 75 access protocol. 93 modems it should access at which ports. This can be done with the setbaycom 113 The channel access parameters can be set with sethdlc -a or kissparms. 143 for the same hardware resources. Of course only one driver can access a given 146 access a serial port. You might therefore find it necessary to release
|