/linux-4.1.27/fs/nilfs2/ |
D | direct.c | 30 static inline __le64 *nilfs_direct_dptrs(const struct nilfs_bmap *direct) in nilfs_direct_dptrs() argument 33 ((struct nilfs_direct_node *)direct->b_u.u_data + 1); in nilfs_direct_dptrs() 37 nilfs_direct_get_ptr(const struct nilfs_bmap *direct, __u64 key) in nilfs_direct_get_ptr() argument 39 return le64_to_cpu(*(nilfs_direct_dptrs(direct) + key)); in nilfs_direct_get_ptr() 42 static inline void nilfs_direct_set_ptr(struct nilfs_bmap *direct, in nilfs_direct_set_ptr() argument 45 *(nilfs_direct_dptrs(direct) + key) = cpu_to_le64(ptr); in nilfs_direct_set_ptr() 48 static int nilfs_direct_lookup(const struct nilfs_bmap *direct, in nilfs_direct_lookup() argument 55 ptr = nilfs_direct_get_ptr(direct, key); in nilfs_direct_lookup() 63 static int nilfs_direct_lookup_contig(const struct nilfs_bmap *direct, in nilfs_direct_lookup_contig() argument 74 ptr = nilfs_direct_get_ptr(direct, key); in nilfs_direct_lookup_contig() [all …]
|
D | Makefile | 3 btnode.o bmap.o btree.o direct.o dat.o recovery.o \
|
/linux-4.1.27/samples/seccomp/ |
D | Makefile | 4 hostprogs-$(CONFIG_SECCOMP_FILTER) := bpf-fancy dropper bpf-direct 16 HOSTCFLAGS_bpf-direct.o += -I$(objtree)/usr/include 17 HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include 18 bpf-direct-objs := bpf-direct.o 31 HOSTCFLAGS_bpf-direct.o += $(MFLAG) 35 HOSTLOADLIBES_bpf-direct += $(MFLAG)
|
D | .gitignore | 1 bpf-direct
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | pxa27x-keypad.txt | 9 is debounce interval for direct key and bit[15:0] is debounce 16 - marvell,direct-key-count : How many direct keyes are used. 17 - marvell,direct-key-mask : The mask indicates which keyes 18 are used. If bit[X] of the mask is set, the direct key X 20 - marvell,direct-key-low-active : Direct key status register 21 tells the level of pins that connects to the direct keyes. 24 - marvell,direct-key-map : It is a u16 array. Each item indicates 25 the linux key-code for the direct key. 57 marvell,direct-key-count = <1>; 58 marvell,direct-key-map = <0x001c>;
|
/linux-4.1.27/drivers/hwmon/pmbus/ |
D | max34440.c | 207 .format[PSC_VOLTAGE_IN] = direct, 208 .format[PSC_VOLTAGE_OUT] = direct, 209 .format[PSC_TEMPERATURE] = direct, 210 .format[PSC_CURRENT_OUT] = direct, 249 .format[PSC_VOLTAGE_IN] = direct, 250 .format[PSC_VOLTAGE_OUT] = direct, 251 .format[PSC_TEMPERATURE] = direct, 252 .format[PSC_CURRENT_OUT] = direct, 253 .format[PSC_FAN] = direct, 292 .format[PSC_VOLTAGE_IN] = direct, [all …]
|
D | max8688.c | 153 .format[PSC_VOLTAGE_IN] = direct, 154 .format[PSC_VOLTAGE_OUT] = direct, 155 .format[PSC_TEMPERATURE] = direct, 156 .format[PSC_CURRENT_OUT] = direct,
|
D | max16064.c | 79 .format[PSC_VOLTAGE_IN] = direct, 80 .format[PSC_VOLTAGE_OUT] = direct, 81 .format[PSC_TEMPERATURE] = direct,
|
D | adm1275.c | 290 info->format[PSC_VOLTAGE_IN] = direct; in adm1275_probe() 291 info->format[PSC_VOLTAGE_OUT] = direct; in adm1275_probe() 292 info->format[PSC_CURRENT_OUT] = direct; in adm1275_probe() 330 info->format[PSC_POWER] = direct; in adm1275_probe() 363 info->format[PSC_POWER] = direct; in adm1275_probe()
|
D | lm25066.c | 453 info->format[PSC_VOLTAGE_IN] = direct; in lm25066_probe() 454 info->format[PSC_VOLTAGE_OUT] = direct; in lm25066_probe() 455 info->format[PSC_CURRENT_IN] = direct; in lm25066_probe() 456 info->format[PSC_TEMPERATURE] = direct; in lm25066_probe() 457 info->format[PSC_POWER] = direct; in lm25066_probe()
|
D | pmbus.c | 134 info->format[PSC_VOLTAGE_OUT] = direct; in pmbus_identify() 154 if (info->format[PSC_VOLTAGE_OUT] == direct) { in pmbus_identify()
|
D | pmbus.h | 338 enum pmbus_data_format { linear = 0, direct, vid }; enumerator
|
D | pmbus_core.c | 535 case direct: in pmbus_reg2data() 669 case direct: in pmbus_data2reg() 1704 if (data->info->format[PSC_VOLTAGE_OUT] != direct) in pmbus_identify_common()
|
/linux-4.1.27/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.1.27/drivers/net/ethernet/mellanox/mlx5/core/ |
D | alloc.c | 60 buf->direct.buf = dma_zalloc_coherent(&dev->pdev->dev, in mlx5_buf_alloc() 62 if (!buf->direct.buf) in mlx5_buf_alloc() 65 buf->direct.map = t; in mlx5_buf_alloc() 74 buf->direct.buf = NULL; in mlx5_buf_alloc() 100 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx5_buf_alloc() 102 if (!buf->direct.buf) in mlx5_buf_alloc() 121 dma_free_coherent(&dev->pdev->dev, buf->size, buf->direct.buf, in mlx5_buf_free() 122 buf->direct.map); in mlx5_buf_free() 125 vunmap(buf->direct.buf); in mlx5_buf_free() 234 addr = buf->direct.map + (i << buf->page_shift); in mlx5_fill_page_array()
|
/linux-4.1.27/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.1.27/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.1.27/drivers/infiniband/hw/mthca/ |
D | mthca_allocator.c | 209 buf->direct.buf = dma_alloc_coherent(&dev->pdev->dev, in mthca_buf_alloc() 211 if (!buf->direct.buf) in mthca_buf_alloc() 214 dma_unmap_addr_set(&buf->direct, mapping, t); in mthca_buf_alloc() 216 memset(buf->direct.buf, 0, size); in mthca_buf_alloc() 291 dma_free_coherent(&dev->pdev->dev, size, buf->direct.buf, in mthca_buf_free() 292 dma_unmap_addr(&buf->direct, mapping)); in mthca_buf_free()
|
D | mthca_provider.h | 53 struct mthca_buf_list direct; member
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/ |
D | en_resources.c | 99 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_en_map_buffer() 101 if (!buf->direct.buf) in mlx4_en_map_buffer() 112 vunmap(buf->direct.buf); in mlx4_en_unmap_buffer()
|
D | alloc.c | 595 buf->direct.buf = dma_alloc_coherent(&dev->persist->pdev->dev, in mlx4_buf_alloc() 597 if (!buf->direct.buf) in mlx4_buf_alloc() 600 buf->direct.map = t; in mlx4_buf_alloc() 607 memset(buf->direct.buf, 0, size); in mlx4_buf_alloc() 611 buf->direct.buf = NULL; in mlx4_buf_alloc() 640 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_buf_alloc() 642 if (!buf->direct.buf) in mlx4_buf_alloc() 662 buf->direct.buf, in mlx4_buf_free() 663 buf->direct.map); in mlx4_buf_free() 666 vunmap(buf->direct.buf); in mlx4_buf_free()
|
D | en_cq.c | 84 cq->buf = (struct mlx4_cqe *)cq->wqres.buf.direct.buf; in mlx4_en_create_cq()
|
D | en_tx.c | 110 ring->buf = ring->wqres.buf.direct.buf; in mlx4_en_create_tx_ring() 114 (unsigned long long) ring->wqres.buf.direct.map); in mlx4_en_create_tx_ring()
|
/linux-4.1.27/drivers/platform/x86/ |
D | intel_mid_thermal.c | 94 int direct; member 135 static int adc_to_temp(int direct, uint16_t adc_val, unsigned long *tp) in adc_to_temp() argument 140 if (direct) { in adc_to_temp() 216 ret = adc_to_temp(td_info->direct, adc_val, &curr_temp); in mid_read_temp() 415 td_info->direct = 1; in initialize_sensor()
|
/linux-4.1.27/arch/x86/pci/ |
D | Makefile | 4 obj-$(CONFIG_PCI_MMCONFIG) += mmconfig_$(BITS).o direct.o mmconfig-shared.o 5 obj-$(CONFIG_PCI_DIRECT) += direct.o
|
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/mtd/ |
D | mtd-physmap.txt | 19 - no-unaligned-direct-access: boolean to disable the default direct 21 On some platforms (e.g. MPC5200) a direct 1:1 mapping may cause 24 By defining "no-unaligned-direct-access", the flash will not be
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192de/ |
D | hw.h | 59 u8 direct); 60 u32 rtl92de_read_dword_dbi(struct ieee80211_hw *hw, u16 offset, u8 direct);
|
D | rf.c | 414 u8 direct = bmac0 ? BIT(3) | BIT(2) : BIT(3); in rtl92d_phy_enable_anotherphy() local 428 rtl92de_read_dword_dbi(hw, REG_SYS_ISO_CTRL, direct) | in rtl92d_phy_enable_anotherphy() 429 BIT(29) | BIT(16) | BIT(17), direct); in rtl92d_phy_enable_anotherphy() 445 u8 direct = bmac0 ? BIT(3) | BIT(2) : BIT(3); in rtl92d_phy_powerdown_anotherphy() local 459 0x00000000, direct); in rtl92d_phy_powerdown_anotherphy()
|
D | hw.c | 46 u32 rtl92de_read_dword_dbi(struct ieee80211_hw *hw, u16 offset, u8 direct) in rtl92de_read_dword_dbi() argument 52 rtl_write_byte(rtlpriv, REG_DBI_FLAG, BIT(1) | direct); in rtl92de_read_dword_dbi() 59 u16 offset, u32 value, u8 direct) in rtl92de_write_dword_dbi() argument 65 rtl_write_byte(rtlpriv, REG_DBI_FLAG, BIT(0) | direct); in rtl92de_write_dword_dbi()
|
/linux-4.1.27/arch/x86/mm/ |
D | init_64.c | 792 bool direct) in remove_pte_table() argument 823 if (!direct) in remove_pte_table() 858 if (direct) in remove_pte_table() 864 bool direct) in remove_pmd_table() argument 881 if (!direct) in remove_pmd_table() 909 remove_pte_table(pte_base, addr, next, direct); in remove_pmd_table() 914 if (direct) in remove_pmd_table() 920 bool direct) in remove_pud_table() argument 937 if (!direct) in remove_pud_table() 965 remove_pmd_table(pmd_base, addr, next, direct); in remove_pud_table() [all …]
|
/linux-4.1.27/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.1.27/Documentation/networking/ |
D | ixgbe.txt | 35 optics and/or the direct attach cables listed below. 39 82598-based adapters support all passive direct attach cables that comply 40 with SFF-8431 v4.1 and SFF-8472 v10.4 specifications. Active direct attach 54 The following is a list of 3rd party SFP+ modules and direct attach cables that 70 82599-based adapters support all passive and active limiting direct attach 91 The following is a list of 3rd party SFP+ modules and direct attach cables that 100 82598-based adapters support all passive direct attach cables that comply 101 with SFF-8431 v4.1 and SFF-8472 v10.4 specifications. Active direct attach 124 Supports advanced filters that direct receive packets by their flows to 316 KVM Hypervisor/VMM supports direct assignment of a PCIe device to a VM. This [all …]
|
D | dns_resolver.txt | 50 /sbin/request-key can appropriately direct the upcalls. For example, to handle 58 To direct a query for query type 'foo', a line of the following should be added
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | mm.txt | 9 ffff880000000000 - ffffc7ffffffffff (=64 TB) direct mapping of all phys. memory 24 The direct mapping covers all memory in the system up to the highest
|
D | boot-options.txt | 282 Do not use GB pages for kernel direct mappings. 284 Use GB pages for kernel direct mappings.
|
/linux-4.1.27/arch/arm/ |
D | Kconfig.debug | 108 Say Y here if you want the debug print routines to direct 181 Say Y here if you want the debug print routines to direct 191 Say Y here if you want the debug print routines to direct 198 Say Y here if you want the debug print routines to direct 206 Say Y here if you want the debug print routines to direct 214 Say Y here if you want the debug print routines to direct 222 Say Y here if you want the debug print routines to direct 230 Say Y here if you want the debug print routines to direct 237 Say Y here if you want the debug print routines to direct 244 Say Y here if you want the debug print routines to direct [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-scsi_host | 25 use the direct i/o path to physical devices. A value of zero 27 the direct i/o path to physical devices. This setting is
|
/linux-4.1.27/fs/minix/ |
D | itree_common.c | 353 unsigned blocks, res, direct = DIRECT, i = DEPTH; in nblocks() local 356 while (--i && blocks > direct) { in nblocks() 357 blocks -= direct; in nblocks() 361 direct = 1; in nblocks()
|
/linux-4.1.27/sound/pci/hda/ |
D | patch_ca0132.c | 145 int direct; /* 0:output; 1:input*/ member 159 .direct = EFX_DIR_OUT, 167 .direct = EFX_DIR_OUT, 175 .direct = EFX_DIR_OUT, 183 .direct = EFX_DIR_OUT, 191 .direct = EFX_DIR_OUT, 200 .direct = EFX_DIR_OUT, 210 .direct = EFX_DIR_IN, 218 .direct = EFX_DIR_IN, 226 .direct = EFX_DIR_IN, [all …]
|
/linux-4.1.27/fs/befs/ |
D | befs_fs_types.h | 147 befs_disk_block_run direct[BEFS_NUM_DIRECT_BLOCKS]; member 157 befs_block_run direct[BEFS_NUM_DIRECT_BLOCKS]; member
|
D | endian.h | 111 data.direct[i] = fsrun_to_cpu(sb, n->direct[i]); in fsds_to_cpu()
|
D | debug.c | 111 fsrun_to_cpu(sb, inode->data.datastream.direct[i]); in befs_dump_inode()
|
D | datastream.c | 250 befs_block_run *array = data->direct; in befs_find_brun_direct()
|
/linux-4.1.27/fs/romfs/ |
D | Kconfig | 34 direct mapping of the medium. 44 also allows direct mapping of MTD devices through romfs files under
|
/linux-4.1.27/drivers/staging/emxx_udc/ |
D | emxx_udc.c | 274 _nbu2ss_endpoint_toggle_reset(udc, (ep->epnum|ep->direct)); in _nbu2ss_ep_init() 276 if (ep->direct == USB_DIR_OUT) { in _nbu2ss_ep_init() 324 if (ep->direct == USB_DIR_OUT) { in _nbu2ss_epn_exit() 364 if (ep->direct == USB_DIR_OUT) { in _nbu2ss_ep_dma_init() 410 if (ep->direct == USB_DIR_OUT) { in _nbu2ss_ep_dma_exit() 484 u8 direct in _nbu2ss_dma_map_single() argument 495 (direct == USB_DIR_IN) in _nbu2ss_dma_map_single() 505 (direct == USB_DIR_IN) in _nbu2ss_dma_map_single() 517 u8 direct in _nbu2ss_dma_unmap_single() argument 524 if (direct == USB_DIR_OUT) { in _nbu2ss_dma_unmap_single() [all …]
|
D | emxx_udc.h | 593 u8 direct; member
|
/linux-4.1.27/drivers/staging/iio/impedance-analyzer/ |
D | Kconfig | 13 Network Analyzer, AD5933/4, provides direct access via sysfs.
|
/linux-4.1.27/sound/core/seq/oss/ |
D | seq_oss_midi.h | 43 int snd_seq_oss_midi_input(struct snd_seq_event *ev, int direct, void *private);
|
D | seq_oss_event.h | 109 int snd_seq_oss_event_input(struct snd_seq_event *ev, int direct, void *private_data, int atomic, i…
|
D | seq_oss_init.c | 53 static int receive_announce(struct snd_seq_event *ev, int direct, void *private, int atomic, int ho… 136 receive_announce(struct snd_seq_event *ev, int direct, void *private, int atomic, int hop) in receive_announce() argument
|
D | seq_oss_event.c | 432 snd_seq_oss_event_input(struct snd_seq_event *ev, int direct, void *private_data, in snd_seq_oss_event_input() argument 439 return snd_seq_oss_midi_input(ev, direct, private_data); in snd_seq_oss_event_input()
|
D | seq_oss_midi.c | 517 snd_seq_oss_midi_input(struct snd_seq_event *ev, int direct, void *private_data) in snd_seq_oss_midi_input() argument
|
/linux-4.1.27/virt/kvm/ |
D | Kconfig | 28 # Toggle to switch between direct notification and batch job
|
/linux-4.1.27/include/sound/ |
D | pcm_oss.h | 28 direct:1, member
|
D | seq_kernel.h | 65 int (*event_input)(struct snd_seq_event *ev, int direct, void *private_data, int atomic, int hop);
|
/linux-4.1.27/Documentation/filesystems/ |
D | autofs4-mount-control.txt | 31 because autofs direct mounts and the implementation of "on demand mount 35 For example, there are two types of automount maps, direct (in the kernel 37 a direct mount in disguise) and indirect. 39 Here is a master map with direct and indirect map entries: 41 /- /etc/auto.direct 46 /etc/auto.direct: 63 The way that direct mounts are handled is by making an autofs mount on 69 But, each entry in direct and indirect maps can have offsets (making 81 and a similarly a direct mount map entry could also be: 102 offsets are implemented using the same mechanism as the direct mounts [all …]
|
D | f2fs.txt | 46 In LFS, when a file data is updated and written to the end of log, its direct 48 block is also updated due to the direct pointer block update. In this manner, 408 traditional file structures, F2FS has three types of node: inode, direct node, 410 indices, two direct node pointers, two indirect node pointers, and one double 411 indirect node pointer as described below. One direct node block contains 1018 419 |- direct node (2) 422 | `- direct node (1018) 426 `- direct node (1018) 534 - Hot node contains direct node blocks of directories. 535 - Warm node contains direct node blocks except hot node blocks.
|
D | sysv-fs.txt | 160 7 direct blocks 164 10 direct blocks
|
D | logfs.txt | 118 Inodes in LogFS are similar to FFS-style filesystems with direct and 126 corresponding to the 16 direct pointers in the inode. In ext2 (maybe 128 corresponds to logical block 12, skipping the 12 direct pointers.
|
D | qnx6.txt | 51 If the level value is 0, up to 16 direct blocks can be addressed by each 86 addressed with 16 direct blocks.
|
/linux-4.1.27/fs/sysv/ |
D | itree.c | 432 unsigned blocks, res, direct = DIRECT, i = DEPTH; in sysv_nblocks() local 435 while (--i && blocks > direct) { in sysv_nblocks() 436 blocks = ((blocks - direct - 1) >> ptrs_bits) + 1; in sysv_nblocks() 438 direct = 1; in sysv_nblocks()
|
/linux-4.1.27/sound/synth/emux/ |
D | emux_oss.c | 41 static int snd_emux_event_oss_input(struct snd_seq_event *ev, int direct, 302 snd_emux_event_oss_input(struct snd_seq_event *ev, int direct, void *private_data, in snd_emux_event_oss_input() argument 316 return snd_emux_event_input(ev, direct, private_data, atomic, hop); in snd_emux_event_oss_input()
|
D | emux_voice.h | 37 int snd_emux_event_input(struct snd_seq_event *ev, int direct, void *private,
|
D | emux_seq.c | 252 snd_emux_event_input(struct snd_seq_event *ev, int direct, void *private_data, in snd_emux_event_input() argument
|
/linux-4.1.27/drivers/media/pci/cx25821/ |
D | Kconfig | 18 This is a video4linux driver for direct (DMA) audio on
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-parport-light | 6 on the parport driver, and uses direct I/O access instead. This might be
|
D | i2c-nforce2 | 48 the driver to work with direct I/O access, which is different to the EC
|
/linux-4.1.27/arch/x86/kvm/ |
D | mmu.c | 756 if (!sp->role.direct) in kvm_mmu_page_get_gfn() 764 if (sp->role.direct) in kvm_mmu_page_set_gfn() 1620 if (!sp->role.direct) in kvm_mmu_free_page() 1653 u64 *parent_pte, int direct) in kvm_mmu_alloc_page() argument 1659 if (!direct) in kvm_mmu_alloc_page() 1822 if ((_sp)->role.direct || (_sp)->role.invalid) {} else 2014 int direct, in kvm_mmu_get_page() argument 2025 role.direct = direct; in kvm_mmu_get_page() 2026 if (role.direct) in kvm_mmu_get_page() 2060 sp = kvm_mmu_alloc_page(vcpu, parent_pte, direct); in kvm_mmu_get_page() [all …]
|
D | mmu.h | 71 int handle_mmio_page_fault_common(struct kvm_vcpu *vcpu, u64 addr, bool direct);
|
D | mmu_audit.c | 195 if (sp->role.direct || sp->unsync || sp->role.invalid) in audit_write_protection()
|
D | mmutrace.h | 38 role.direct ? " direct" : "", \
|
D | paging_tmpl.h | 537 if (sp->role.direct) in FNAME() 944 BUG_ON(sp->role.direct); in FNAME()
|
/linux-4.1.27/Documentation/devicetree/bindings/mips/cavium/ |
D | uctl.txt | 14 - ranges: Empty to signify direct mapping of the children.
|
/linux-4.1.27/Documentation/hwmon/ |
D | pmbus | 76 .direct[PSC_VOLTAGE_OUT] = true, 77 .direct[PSC_TEMPERATURE] = true, 78 .direct[PSC_CURRENT_OUT] = true,
|
D | pmbus-core | 184 PMBus registers. Chip drivers may also use direct I2C commands. If direct I2C
|
D | sysfs-interface | 57 Alarms are direct indications read from the chips. The drivers do NOT 259 pwm[1-*]_mode 0: DC mode (direct current) 676 Generally a direct representation of a chip's internal
|
D | nct6775 | 46 direct temperature sensor inputs, the others are special sources such as PECI,
|
/linux-4.1.27/drivers/media/pci/cx18/ |
D | Kconfig | 31 This is a video4linux driver for direct (DMA) audio on
|
/linux-4.1.27/sound/core/seq/ |
D | seq_ports.h | 72 int (*event_input)(struct snd_seq_event *ev, int direct, void *private_data,
|
D | seq_system.c | 116 static int event_input_timer(struct snd_seq_event * ev, int direct, void *private_data, int atomic,… in event_input_timer() argument
|
D | seq_dummy.c | 88 dummy_input(struct snd_seq_event *ev, int direct, void *private_data, in dummy_input() argument
|
D | seq_virmidi.c | 125 static int snd_virmidi_event_input(struct snd_seq_event *ev, int direct, in snd_virmidi_event_input() argument
|
D | seq_midi.c | 132 static int event_process_midi(struct snd_seq_event *ev, int direct, in event_process_midi() argument
|
D | seq_clientmgr.c | 604 int direct; in snd_seq_deliver_single_event() local 606 direct = snd_seq_ev_is_direct(event); in snd_seq_deliver_single_event() 634 result = dest_port->event_input(event, direct, in snd_seq_deliver_single_event() 648 if (result < 0 && !direct) { in snd_seq_deliver_single_event()
|
/linux-4.1.27/Documentation/scsi/ |
D | cxgb3i.txt | 9 as CRC computation and verification, and direct DMA to the final host memory 81 4. To direct open-iscsi traffic to go through cxgb3i's accelerated path,
|
D | st.txt | 169 direct i/o is not possible for the whole transfer, the driver buffer 183 allowed if ST_BUFFER_WRITES is non-zero and direct i/o is not used. 188 NOTE that if direct i/o is used, the small writes are not buffered. This may 197 direct i/o and not in fixed block mode. 255 try_direct_io=x try direct transfer between user buffer and 494 correct. The user can request using direct spacing to EOD by setting
|
D | dpti.txt | 11 * liable for any direct, indirect, incidental, special, exemplary or
|
/linux-4.1.27/drivers/media/usb/tm6000/ |
D | Kconfig | 22 This is a video4linux driver for direct (DMA) audio for
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-devices-system-cpu | 20 If a process ever sets the DSCR (via direct access to the
|
/linux-4.1.27/fs/nfs/ |
D | Makefile | 9 direct.o pagelist.o read.o symlink.o unlink.o \
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-cros-ec-tunnel.txt | 4 controller) but no direct connection to some devices on the other side of
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | idmapper.txt | 27 direct the upcall. The following line should be added: 33 This will direct all id_resolver requests to the program /usr/sbin/nfs.idmap.
|
/linux-4.1.27/drivers/staging/iio/adc/ |
D | Kconfig | 91 activate only one via device tree selection. Provides direct access 114 ST SPEAr SoC. Provides direct access via sysfs.
|
/linux-4.1.27/Documentation/vm/ |
D | balance | 18 That being said, the kernel should try to fulfill requests for direct 19 mapped pages from the direct mapped pool, instead of falling back on 21 or not). A similar argument applies to highmem and direct mapped pages.
|
D | highmem.txt | 53 temporary maps to access the rest of the physical memory - the actual direct
|
/linux-4.1.27/fs/xfs/ |
D | xfs_aops.c | 1352 int direct) in __xfs_get_blocks() argument 1372 if (!create && direct && offset >= i_size_read(inode)) in __xfs_get_blocks() 1382 if (create && !direct) { in __xfs_get_blocks() 1404 if (direct || xfs_get_extsz_hint(ip)) { in __xfs_get_blocks() 1448 if (direct || size > (1 << inode->i_blkbits)) in __xfs_get_blocks() 1463 if (create && direct) in __xfs_get_blocks() 1489 BUG_ON(direct); in __xfs_get_blocks()
|
/linux-4.1.27/drivers/isdn/mISDN/ |
D | Kconfig | 38 - direct tunneling of physical interface via IP
|
/linux-4.1.27/drivers/staging/iio/light/ |
D | Kconfig | 41 Provides iio_events and direct access via sysfs.
|
/linux-4.1.27/drivers/staging/slicoss/ |
D | TODO | 3 - remove direct memory access of structures
|
/linux-4.1.27/drivers/usb/usbip/ |
D | Kconfig | 6 machines direct access to USB devices. It provides the
|
/linux-4.1.27/sound/core/oss/ |
D | pcm_oss.c | 846 int direct; in snd_pcm_oss_change_params() local 866 direct = 1; in snd_pcm_oss_change_params() 868 direct = substream->oss.setup.direct; in snd_pcm_oss_change_params() 878 if (!direct) in snd_pcm_oss_change_params() 893 if (direct) in snd_pcm_oss_change_params() 917 if (direct) { in snd_pcm_oss_change_params() 942 if (!direct) { in snd_pcm_oss_change_params() 1779 int direct; in snd_pcm_oss_get_formats() local 1788 direct = 1; in snd_pcm_oss_get_formats() 1790 direct = substream->oss.setup.direct; in snd_pcm_oss_get_formats() [all …]
|
/linux-4.1.27/fs/freevxfs/ |
D | vxfs_inode.h | 76 struct direct { /* Direct extents */ struct
|
D | vxfs_bmap.c | 79 struct direct *d = vip->vii_ext4.ve4_direct + i; in vxfs_bmap_ext4()
|
/linux-4.1.27/drivers/pps/ |
D | Kconfig | 36 This option adds support for direct in-kernel time
|
/linux-4.1.27/drivers/media/platform/ti-vpe/ |
D | vpdma_priv.h | 476 static inline u32 cfd_pkt_payload_len(bool direct, int cls, int dest, in cfd_pkt_payload_len() argument 480 (direct << CFD_DIRECT_SHFT) | in cfd_pkt_payload_len()
|
/linux-4.1.27/drivers/staging/speakup/ |
D | speakup_txprt.c | 62 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_bns.c | 62 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_dummy.c | 64 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_spkout.c | 68 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_acntsa.c | 65 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_ltlk.c | 74 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_audptr.c | 69 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_apollo.c | 73 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_decext.c | 91 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_keypc.c | 73 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_acntpc.c | 80 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_dectlk.c | 90 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_soft.c | 92 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_dtlk.c | 91 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
D | speakup_decpc.c | 184 __ATTR(direct, S_IWUSR|S_IRUGO, spk_var_show, spk_var_store);
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | o2d.dtsi | 92 no-unaligned-direct-access;
|
D | b4420qds.dts | 27 * direct, indirect, incidental, special, exemplary, or consequential damages
|
D | b4qds.dtsi | 27 * direct, indirect, incidental, special, exemplary, or consequential damages
|
D | prpmc2800.dts | 61 compatible = "direct-mapped";
|
D | p5040ds.dts | 27 * direct, indirect, incidental, special, exemplary, or consequential damages
|
/linux-4.1.27/arch/unicore32/ |
D | Kconfig.debug | 44 Say Y here if you want the debug print routines to direct their
|
/linux-4.1.27/drivers/staging/ozwpan/ |
D | README | 17 Wi-Fi direct is required. A recent version (0.8.x or later) version of the
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | pamu.txt | 63 second is the number of "ways". For direct-mapped caches, 69 second is the number of "ways". For direct-mapped caches,
|
/linux-4.1.27/sound/drivers/opl4/ |
D | opl4_seq.c | 111 static int snd_opl4_seq_event_input(struct snd_seq_event *ev, int direct, in snd_opl4_seq_event_input() argument
|
/linux-4.1.27/tools/lib/traceevent/ |
D | plugin_kvm.c | 359 unsigned direct:1; member 392 role.direct ? " direct" : "", in kvm_mmu_print_role()
|
/linux-4.1.27/Documentation/ |
D | vfio.txt | 8 agnostic framework for exposing direct device access to userspace, in 12 Why do we want that? Virtual machines often make use of direct device 16 significantly reduced latency, higher bandwidth, and direct use of 20 field, also benefit from low-overhead, direct device access from 48 things like secure direct assignment of devices into virtual machines. 282 a direct pass through for VFIO_DEVICE_* ioctls. The read/write/mmap
|
D | lockup-watchdogs.txt | 35 perf subsystems, respectively. A direct consequence of this is that,
|
D | nommu-mmap.txt | 50 - If the backing device device can't or won't permit direct sharing, 102 the mmap() by providing direct access to the underlying device if it 234 direct the call to the device-specific driver. Under such circumstances, the
|
D | volatile-considered-harmful.txt | 74 architectures where direct I/O memory access does work. Essentially,
|
D | rpmsg.txt | 37 keep in mind that remote processors might have direct access to the 39 OMAP4, remote cores and hardware accelerators may have direct access to the
|
D | kasan.txt | 150 (e.g. 16TB to cover 128TB on x86_64) and uses direct mapping with a scale and
|
D | unicode.txt | 39 point since it lets the direct-mapping area start on a large power of
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/msm/ |
D | qcom,saw2.txt | 6 subsystem) into and out of low power modes via a direct connection to
|
/linux-4.1.27/drivers/media/pci/saa7134/ |
D | Kconfig | 22 This is a video4linux driver for direct (DMA) audio in
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | locking.txt | 61 For direct sp, we can easily avoid it since the spte of direct sp is fixed
|
D | mmu.txt | 73 direct mode; otherwise it operates in shadow mode (see below). 135 role.direct: 178 page, or the base page frame for linear translations. See role.direct. 191 perform a reverse map from a pte to a gfn. When role.direct is set, any 193 this case, the array of gfns is not allocated. See role.direct and gfn. 279 (*) not applicable in direct mode
|
/linux-4.1.27/arch/powerpc/boot/dts/fsl/ |
D | b4420si-pre.dtsi | 27 * direct, indirect, incidental, special, exemplary, or consequential damages
|
D | p5040si-pre.dtsi | 27 * direct, indirect, incidental, special, exemplary, or consequential damages
|
D | b4420si-post.dtsi | 27 * direct, indirect, incidental, special, exemplary, or consequential damages
|
D | b4si-post.dtsi | 27 * direct, indirect, incidental, special, exemplary, or consequential damages
|
/linux-4.1.27/drivers/net/ethernet/wiznet/ |
D | Kconfig | 55 In direct address mode host system can directly access all registers
|
/linux-4.1.27/drivers/net/wimax/i2400m/ |
D | fw.c | 648 unsigned int direct, unsigned int do_csum) in i2400m_download_chunk() argument 661 addr, direct, do_csum); in i2400m_download_chunk() 668 __chunk_len & 0xf ? 0 : direct); in i2400m_download_chunk() 677 addr, direct, do_csum, ret); in i2400m_download_chunk()
|
/linux-4.1.27/drivers/media/pci/cx88/ |
D | Kconfig | 21 This is a video4linux driver for direct (DMA) audio on
|
/linux-4.1.27/scripts/ |
D | gen_initramfs_list.sh | 29 as direct input to initramfs.
|
/linux-4.1.27/kernel/irq/ |
D | irqdomain.c | 611 bool direct; in virq_debug_show() local 623 direct = (i == hwirq) && (i < domain->revmap_direct_max_irq); in virq_debug_show() 626 direct ? "(DIRECT)" : ""); in virq_debug_show()
|
/linux-4.1.27/Documentation/arm/ |
D | IXP4xx | 78 1) A direct mapped window from 0x48000000 to 0x4bffffff (64MB). 94 By default, the direct method is used for performance reasons. If
|
D | memory.txt | 59 PAGE_OFFSET high_memory-1 Kernel direct-mapped RAM region.
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | README.maya44 | 138 These switches allow a direct digital routing from the ADCs to the DACs. 155 "Input 4" -> direct routing from ADC output of the selected input channel
|
D | OSS-Emulation.txt | 140 direct don't use plugins 149 The direct option is used, as mentioned above, to bypass the automatic 154 % echo "quake 0 0 direct" > /proc/asound/card0/pcm0p/oss
|
/linux-4.1.27/fs/ |
D | Makefile | 17 obj-y += buffer.o block_dev.o direct-io.o mpage.o
|
/linux-4.1.27/sound/drivers/opl3/ |
D | opl3_oss.c | 57 static int snd_opl3_oss_event_input(struct snd_seq_event *ev, int direct, in snd_opl3_oss_event_input() argument
|
D | opl3_seq.c | 155 static int snd_opl3_synth_event_input(struct snd_seq_event * ev, int direct, in snd_opl3_synth_event_input() argument
|
/linux-4.1.27/Documentation/block/ |
D | biodoc.txt | 182 modified to accomplish a direct page -> bus translation, without requiring 279 There are situations where high-level code needs to have direct access to 284 capabilities for certain kinds of fitness tests. Having direct interfaces at 318 handling direct requests easier for such drivers; Also for drivers that 343 in such cases (REQ_PC: direct packet command passed to driver, REQ_BLOCK_PC: 384 avoid cache related fields which are irrelevant in the direct/page i/o path, 409 bh structure for buffered i/o, and in the case of raw/direct i/o kiobufs are 485 which in turn means that only raw I/O uses it (direct i/o may not work 710 direct access requests which only specify rq->buffer without a valid rq->bio) 821 (b) Kiobuf i/o (for raw/direct i/o): [all …]
|
/linux-4.1.27/net/atm/ |
D | Kconfig | 54 bridges and ATM attached hosts establish direct ATM VCs across
|
/linux-4.1.27/arch/m68k/math-emu/ |
D | fp_move.S | 72 | addressing mode: data register direct
|
D | fp_cond.S | 113 | addressing mode: data register direct
|
D | fp_decode.h | 214 | addressing mode: data register direct
|
D | fp_scan.S | 141 | addressing mode: data register direct
|
/linux-4.1.27/drivers/staging/iio/accel/ |
D | Kconfig | 85 accelerometer. The driver supplies direct access via sysfs files
|
/linux-4.1.27/include/linux/mlx5/ |
D | driver.h | 336 struct mlx5_buf_list direct; member 590 return buf->direct.buf + offset; in mlx5_buf_offset()
|
/linux-4.1.27/arch/arm/mach-ixp4xx/ |
D | Kconfig | 205 1) A direct mapped window from 0x48000000 to 0x4BFFFFFF (64MB). 221 By default, the direct method is used. Choose this option if you
|
/linux-4.1.27/drivers/leds/ |
D | Kconfig | 220 Driver provides direct control via LED class and interface for 231 Driver provides direct control via LED class and interface for 241 Driver provides direct control via LED class and interface for 251 Driver provides direct control via LED class and interface for
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | device.txt | 58 Specify whether direct access and / or ring buffer access is supported.
|
/linux-4.1.27/Documentation/devicetree/bindings/pci/ |
D | host-generic-pci.txt | 49 accessed via an ioport) and laid out with a direct correspondence to the
|
D | ralink,rt3883-pci.txt | 111 ranges; /* direct mapping */
|
/linux-4.1.27/Documentation/infiniband/ |
D | user_verbs.txt | 4 enables direct userspace access to IB hardware via "verbs," as
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | fw-cfg.txt | 30 initrd images for direct kernel booting, virtual machine UUID, SMP information,
|
/linux-4.1.27/Documentation/device-mapper/ |
D | dm-io.txt | 38 but wants to direct different portions of the bio to different devices.
|
/linux-4.1.27/drivers/leds/trigger/ |
D | Kconfig | 108 This enables direct flash/torch on/off by the driver, kernel space.
|
/linux-4.1.27/Documentation/security/ |
D | Yama.txt | 33 parent to a child process (i.e. direct "gdb EXE" and "strace EXE" still
|
D | Smack.txt | 154 direct 155 This contains the CIPSO level used for Smack direct label 558 In addition to explicit mappings Smack supports direct CIPSO mappings. One 561 value can be read from /sys/fs/smackfs/direct and changed by writing to 562 /sys/fs/smackfs/direct.
|
D | keys-request-key.txt | 201 EACCES/EPERM are only returned on a direct search of a specific keyring where
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | Suspend.txt | 87 suspending, which means that use of printascii() or similar direct
|
D | GPIO.txt | 100 With the conversion to gpiolib, there is no longer a direct conversion
|
/linux-4.1.27/Documentation/input/ |
D | event-codes.txt | 245 transformations, such as scaling, flipping and rotating). Non-direct input 247 transformation for touchpads. Typical direct input devices: touchscreens, 248 drawing tablets; non-direct devices: touchpads, mice.
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | README.quirks | 47 Since the individual bus masters do not have direct control of REQ, a
|
D | Insmod-options | 48 hardware that doesn't support PCI2PCI direct
|
/linux-4.1.27/drivers/input/serio/ |
D | i8042.c | 55 module_param_named(direct, i8042_direct, bool, 0); 56 MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
|
/linux-4.1.27/drivers/macintosh/ |
D | Kconfig | 47 <http://www.angelfire.com/ca2/dev68k/iopdesc.html> to enable direct 157 Say Y here to include direct support for the ADB controller in the
|
/linux-4.1.27/drivers/staging/i2o/ |
D | Kconfig | 102 Allows direct SCSI access to SCSI devices on a SCSI or FibreChannel
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.devices | 39 which allows direct access to the hard drives without using
|
/linux-4.1.27/drivers/iio/adc/ |
D | Kconfig | 117 i2c analog to digital converters (ADC). Provides direct access 194 max11646, max11647) Provides direct access via sysfs and buffered
|
/linux-4.1.27/drivers/char/ |
D | Kconfig | 445 support direct attachment to public switched telephone networks (PSTNs) 559 The mmtimer device allows direct userspace access to the 567 The uv_mmtimer device allows direct userspace access to the 578 ATCA computers and allows direct userspace access to the
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | samsung-pinctrl.txt | 160 Node of every bank of pins supporting direct wake-up interrupts (without 214 /* Pin bank with external direct wake-up interrupts */
|
/linux-4.1.27/drivers/char/agp/ |
D | Kconfig | 20 direct rendering will be a lot slower but still faster than PIO.
|
/linux-4.1.27/Documentation/cgroups/ |
D | unified-hierarchy.txt | 370 into direct reclaim to work off the excess, but it never invokes the 426 aren't properly abstracted for direct consumption by regular programs. 429 based, isn't suitable for direct consumption. There's no way to
|
/linux-4.1.27/Documentation/isdn/ |
D | README.diversion | 65 direct divert or delayed divert of a call.
|
D | README.gigaset | 9 ISDN DECT bases via Gigaset M101 Data, Gigaset M105 Data or direct USB 109 - /dev/ttyGB0 for the base driver (direct USB connection)
|
/linux-4.1.27/include/linux/mlx4/ |
D | device.h | 597 struct mlx4_buf_list direct; member 1018 return buf->direct.buf + offset; in mlx4_buf_offset()
|
/linux-4.1.27/drivers/block/ |
D | floppy.c | 2645 int direct, indirect; in make_raw_rw_request() local 2665 direct = transfer_size(ssize, max_sector, max_size) - fsector_t; in make_raw_rw_request() 2673 if (!direct || in make_raw_rw_request() 2674 (indirect * 2 > direct * 3 && in make_raw_rw_request() 2685 indirect, direct, fsector_t); in make_raw_rw_request()
|
/linux-4.1.27/drivers/iio/light/ |
D | Kconfig | 216 of ambient light sensors with direct lux output.
|
/linux-4.1.27/Documentation/watchdog/ |
D | convert_drivers_to_kernel_api.txt | 121 here simply happens the direct hardware access. If you have device-specific
|
/linux-4.1.27/arch/sh/boards/ |
D | Kconfig | 342 It has an Ethernet interface (SMC9118), direct connected
|
/linux-4.1.27/Documentation/video4linux/ |
D | videobuf | 202 The poll() function can usually be implemented with a direct call to: 304 The final part of a videobuf implementation has no direct callback - it's
|