/linux-4.4.14/include/trace/events/ |
D | sock.h | 34 TP_PROTO(struct sock *sk, struct proto *prot, long allocated), 36 TP_ARGS(sk, prot, allocated), 41 __field(long, allocated) 49 __entry->allocated = allocated; 60 __entry->allocated,
|
D | ext4.h | 1841 unsigned int allocated, ext4_fsblk_t newblock), 1843 TP_ARGS(inode, map, flags, allocated, newblock), 1852 __field( unsigned int, allocated ) 1863 __entry->allocated = allocated; 1873 (unsigned int) __entry->allocated,
|
/linux-4.4.14/sound/firewire/ |
D | iso-resources.c | 31 r->allocated = false; in fw_iso_resources_init() 43 WARN_ON(r->allocated); in fw_iso_resources_destroy() 111 if (WARN_ON(r->allocated)) in fw_iso_resources_allocate() 137 r->allocated = true; in fw_iso_resources_allocate() 171 if (!r->allocated) { in fw_iso_resources_update() 190 r->allocated = false; in fw_iso_resources_update() 218 if (r->allocated) { in fw_iso_resources_free() 226 r->allocated = false; in fw_iso_resources_free()
|
D | iso-resources.h | 26 bool allocated; member
|
/linux-4.4.14/Documentation/vm/ |
D | page_owner.txt | 1 page owner: Tracking about who allocated each page 6 page owner is for the tracking about who allocated each page. 54 memory system, so, until initialization, many pages can be allocated and 55 they would have no owner information. To fix it up, these early allocated 56 pages are investigated and marked as allocated in initialization phase. 58 at least, we can tell whether the page is allocated or not, 59 more accurately. On 2GB memory x86-64 VM box, 13343 early allocated pages 60 are catched and marked, although they are mostly allocated from struct 80 See the result about who allocated each page
|
D | zsmalloc.txt | 26 location of the allocated object. The reason for this indirection is that 56 obj_allocated: the number of objects allocated 57 obj_used: the number of objects allocated to the user 58 pages_used: the number of pages allocated for the class 63 n = number of allocated objects
|
D | hugetlbpage.txt | 40 allocated. 64 Once a number of huge pages have been pre-allocated to the kernel huge page 81 indicates the current number of pre-allocated huge pages of the default size. 110 actually allocated by checking the sysctl or meminfo. To check the per node 125 huge pages will be allocated, if necessary and if possible, to fulfill 141 no more surplus huge pages will be allowed to be allocated. 170 Whether huge pages are allocated and freed via the /proc interface or 172 nodes from which huge pages are allocated or freed are controlled by the 190 allocated nor freed on any node not included in the specified <node-list>. 290 free huge pages available, the mount will fail. As huge pages are allocated [all …]
|
D | numa_memory_policy.txt | 14 memory may be allocated by a set of processes. Memory policies are a 56 A task policy applies only to pages allocated after the policy is 58 changes its task policy remain where they were allocated based on 59 the policy at the time they were allocated. 75 allocated for anonymous segments, such as the task stack and heap, and 80 anonymous page is allocated on an attempt to write to the mapping-- 95 By default, VMA policy applies only to pages allocated after the policy 97 where they were allocated based on the policy at the time they were 98 allocated. However, since 2.6.16, Linux supports page migration via 109 object share the policy, and all pages allocated for the shared object, [all …]
|
D | numa | 96 Local allocation will tend to keep subsequent access to the allocated memory 98 as long as the task on whose behalf the kernel allocated some memory does not 144 or some subsystems would fail to initialize if they attempted to allocated
|
D | transhuge.txt | 44 regular pages should be gracefully allocated instead and mixed in 83 be allocated instead of a 4k page for no good. This is why it's 163 not already mapped) can be allocated when collapsing a group 210 allocated to handle a page fault. This applies to both the 215 successfully allocated a new huge page to store the data. 229 successfully allocated. It includes allocations which where
|
D | zswap.txt | 5 dynamically allocated RAM-based memory pool. zswap basically trades CPU cycles 77 load function to decompress the page into the page allocated by the page fault
|
D | split_page_table_lock | 91 The spinlock_t allocated in pgtable_page_ctor() for PTE table and in
|
/linux-4.4.14/drivers/staging/android/ion/ |
D | ion_chunk_heap.c | 33 unsigned long allocated; member 55 if (allocated_size > chunk_heap->size - chunk_heap->allocated) in ion_chunk_heap_allocate() 79 chunk_heap->allocated += allocated_size; in ion_chunk_heap_allocate() 115 chunk_heap->allocated -= allocated_size; in ion_chunk_heap_free() 170 chunk_heap->allocated = 0; in ion_chunk_heap_create()
|
/linux-4.4.14/scripts/coccinelle/free/ |
D | devm_free.cocci | 1 /// Find uses of standard freeing functons on values allocated using devm_ 2 /// functions. Values allocated using the devm_functions are freed when 62 msg="WARNING: invalid free of devm_ allocated data" 69 msg="WARNING: invalid free of devm_ allocated data"
|
/linux-4.4.14/drivers/misc/ |
D | atmel_tclib.c | 50 if (tc->allocated) in atmel_tc_alloc() 56 tc->allocated = true; in atmel_tc_alloc() 76 if (tc->allocated) in atmel_tc_free() 77 tc->allocated = false; in atmel_tc_free()
|
/linux-4.4.14/drivers/fmc/ |
D | fmc-match.c | 58 int ret, allocated = 0; in fmc_fill_id_info() local 65 allocated = 1; in fmc_fill_id_info() 101 if (allocated) { in fmc_fill_id_info()
|
/linux-4.4.14/drivers/powercap/ |
D | powercap_sys.c | 400 bool allocated; in powercap_release() local 406 allocated = power_zone->allocated; in powercap_release() 416 if (allocated) in powercap_release() 423 allocated = control_type->allocated; in powercap_release() 428 if (allocated) in powercap_release() 520 power_zone->allocated = true; in powercap_register_zone() 586 if (power_zone->allocated) in powercap_register_zone() 627 control_type->allocated = true; in powercap_register_control_type() 636 if (control_type->allocated) in powercap_register_control_type()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | vio.c | 156 if (viodev->cmo.entitled > viodev->cmo.allocated) in vio_cmo_alloc() 157 reserve_free = viodev->cmo.entitled - viodev->cmo.allocated; in vio_cmo_alloc() 168 viodev->cmo.allocated += size; in vio_cmo_alloc() 203 if (viodev->cmo.allocated > viodev->cmo.entitled) { in vio_cmo_dealloc() 204 excess_freed = min(reserve_freed, (viodev->cmo.allocated - in vio_cmo_dealloc() 210 viodev->cmo.allocated -= (reserve_freed + excess_freed); in vio_cmo_dealloc() 321 if ((viodev->cmo.entitled > viodev->cmo.allocated) && in vio_cmo_entitlement_update() 324 max_t(size_t, viodev->cmo.allocated, in vio_cmo_entitlement_update() 347 if ((viodev->cmo.entitled > viodev->cmo.allocated) && in vio_cmo_entitlement_update() 350 max_t(size_t, viodev->cmo.allocated, in vio_cmo_entitlement_update() [all …]
|
/linux-4.4.14/Documentation/scsi/ |
D | hptiop.txt | 85 A request packet can be allocated in either IOP or host memory. 95 Requests allocated in host memory must be aligned on 32-bytes boundary. 100 allocated in IOP memory, write the offset to inbound queue port. For 101 requests allocated in host memory, write (0x80000000|(bus_addr>>5)) 108 For requests allocated in IOP memory, the request offset is posted to 111 For requests allocated in host memory, (0x80000000|(bus_addr>>5)) 118 For requests allocated in IOP memory, the host driver free the request 135 Requests allocated in host memory must be aligned on 32-bytes boundary.
|
D | ChangeLog.sym53c8xx_2 | 72 - Set busy_itl in LCB to 1 if the LCB is allocated and a 75 has been allocated. This fixes a panic if attach failed.
|
D | ChangeLog.arcmsr | 23 ** modify PCCB POOL allocated by "dma_alloc_coherent"
|
D | 53c700.txt | 75 you allocated, call the corresponding release_*_region and free the
|
/linux-4.4.14/drivers/staging/comedi/ |
D | comedi_buf.c | 369 unsigned int allocated = comedi_buf_write_n_allocated(s); in comedi_buf_write_free() local 371 if (nbytes > allocated) in comedi_buf_write_free() 372 nbytes = allocated; in comedi_buf_write_free() 474 unsigned int allocated; in comedi_buf_read_free() local 482 allocated = comedi_buf_read_n_allocated(async); in comedi_buf_read_free() 483 if (nbytes > allocated) in comedi_buf_read_free() 484 nbytes = allocated; in comedi_buf_read_free()
|
/linux-4.4.14/drivers/gpu/drm/ |
D | drm_mm.c | 118 BUG_ON(node->allocated); in drm_mm_insert_helper() 151 node->allocated = 1; in drm_mm_insert_helper() 194 node->allocated = 1; in drm_mm_reserve_node() 263 BUG_ON(!hole_node->hole_follows || node->allocated); in drm_mm_insert_helper_range() 298 node->allocated = 1; in drm_mm_insert_helper_range() 367 if (WARN_ON(!node->allocated)) in drm_mm_remove_node() 392 node->allocated = 0; in drm_mm_remove_node() 523 old->allocated = 0; in drm_mm_replace_node() 524 new->allocated = 1; in drm_mm_replace_node()
|
/linux-4.4.14/sound/hda/ |
D | Kconfig | 19 int "Pre-allocated buffer size for HD-audio driver" 23 Specifies the default pre-allocated buffer-size in kB for the
|
/linux-4.4.14/fs/ext4/ |
D | extents.c | 3314 int allocated = map->m_len; in ext4_split_extent() local 3335 allocated = ee_len - (map->m_lblk - ee_block); in ext4_split_extent() 3369 return err ? err : allocated; in ext4_split_extent() 3406 int allocated = 0, max_zeroout = 0; in ext4_ext_convert_to_initialized() local 3492 allocated = map_len; in ext4_ext_convert_to_initialized() 3538 allocated = map_len; in ext4_ext_convert_to_initialized() 3541 if (allocated) { in ext4_ext_convert_to_initialized() 3549 allocated = ee_len - (map->m_lblk - ee_block); in ext4_ext_convert_to_initialized() 3593 if (max_zeroout && (allocated > map->m_len)) { in ext4_ext_convert_to_initialized() 3594 if (allocated <= max_zeroout) { in ext4_ext_convert_to_initialized() [all …]
|
/linux-4.4.14/Documentation/ |
D | flexible-arrays.txt | 72 defined by start and nr_elements has been allocated. Thereafter, a 81 particular element has never been allocated. 84 has never been stored in the array. Memory for array elements is allocated 89 Note that, if array elements are allocated with __GFP_ZERO, they will be 97 zero. If storage for the indicated element is not allocated for the array, 100 allocated size of an array, call: 107 if the array's pages are allocated with __GFP_ZERO.
|
D | IRQ-domain.txt | 59 be allocated. 75 hwirq number. When a hwirq is mapped, an irq_desc is allocated for 81 allocated for in-use IRQs. The disadvantage is that the table must be 90 IRQs. When an hwirq is mapped, an irq_desc is allocated and the 118 range of irq_descs allocated for the hwirqs. It is used when the 126 been allocated for the controller and that the IRQ number can be 130 allocated for every hwirq, even if it is unused. 141 descriptors will be allocated on-the-fly for it, and if no range is 143 *no* irq descriptors will be allocated. 149 used and no descriptor gets allocated it is very important to make sure [all …]
|
D | kmemleak.txt | 38 Note that the orphan objects are listed in the order they were allocated 61 Memory may be allocated or freed before kmemleak is initialised and 78 An allocated block of memory is considered orphan if no pointer to its 81 might be no way for the kernel to pass the address of the allocated 99 Some allocated memory blocks have pointers stored in the kernel's 195 members in the allocated structures. This feature would solve many of 198 The tool can report false positives. These are cases where an allocated
|
D | DMA-attributes.txt | 57 virtual mapping for the allocated buffer. On some architectures creating 60 Buffers allocated with this attribute can be only passed to user space 99 allocated by dma_alloc_attrs() function from individual pages if it can 101 specifying this attribute the allocated buffer is forced to be contiguous
|
D | unshare.txt | 92 allocated inactive task) unshare had to make minor reorganizational 185 1) clone operates on a newly allocated not-yet-active task 201 Therefore code from copy_* functions that allocated and duplicated 228 etc, had roughly two components. The first component allocated 232 These dup_* functions allocated and duplicated the appropriate
|
D | DMA-API.txt | 41 It returns a pointer to the allocated region (in the processor's virtual 69 Free a region of consistent memory you previously allocated. dev, 103 crossing restrictions, pass 0 for alloc; passing 4096 says memory allocated 131 were returned when that routine allocated the memory being freed. 137 called in a context which can sleep. Make sure you've freed all allocated 214 ensure that the memory allocated by kmalloc is within the dma_mask, 468 Free memory allocated by the nonconsistent API. All parameters must 488 Do a partial sync of memory that was allocated by 520 DMA_MEMORY_INCLUDES_CHILDREN - make the declared memory be allocated by 586 about what DMA memory was allocated for which device. If this code detects an
|
D | dell_rbu.txt | 25 If the dell_rbu driver is unloaded all the allocated memory is freed. 82 memory allocated by the driver.
|
D | remoteproc.txt | 107 - Free an rproc handle that was allocated by rproc_alloc. 115 allocated with rproc_alloc(). 251 is expected, where the firmware requests a resource, and once allocated, 252 the host should provide back its details (e.g. address of an allocated
|
D | IRQ-affinity.txt | 14 to all non-active IRQs. Once IRQ is allocated/activated its affinity bitmask
|
D | xillybus.txt | 222 * bufnum: The number of buffers allocated for this pipe. Always a power of two. 260 Each of the (possibly bidirectional) pipes presented to the user is allocated 269 sides, the implementation relies on a set of DMA buffers which is allocated 334 1. Acquire the length of the IDT, so a buffer can be allocated for it. This 353 All buffers are allocated when the driver is loaded. This is necessary,
|
D | nommu-mmap.txt | 94 truncate being called. The ramdisk driver could do this if it allocated 122 (*) The memory allocated by a request for an anonymous mapping will normally 159 allocated if mmap() chooses not to map the backing device directly. An
|
D | kmemcheck.txt | 300 of calls, we move upwards to see where "from" was allocated or initialized, 324 where the item on "list" was allocated or initialized. We move to line 410: 486 a - unallocated (memory has been allocated by the slab layer, but has not 488 f - freed (memory has been allocated by the slab layer, but has been freed 735 1. Tell kmemcheck about newly allocated pages and pages that are about to 742 There are actually a few more states, such as "not yet allocated" and
|
D | Intel-IOMMU.txt | 65 address from PCI MMIO ranges so they are not allocated for IOVA addresses.
|
D | static-keys.txt | 100 The key must be global, that is, it can't be allocated on the stack or dynamically 101 allocated at run-time.
|
D | media-framework.txt | 114 As the number of pads is known in advance, the pads array is not allocated 199 pre-allocated and grows dynamically as needed. 207 An entry in the link array of each entity is allocated and stores pointers
|
D | cputopology.txt | 96 possible: CPUs that have been allocated resources and can be
|
D | men-chameleon-bus.txt | 79 are allocated and their resources are assigned according to the resource
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | dcsr.txt | 57 This node represents the region of DCSR space allocated to the EPU 114 This node represents the region of DCSR space allocated to the NPC 151 This node represents the region of DCSR space allocated to the NXC 175 This node represents the region of DCSR space allocated to 209 This node represents the region of DCSR space allocated to 238 This node represents the region of DCSR space allocated to 266 This node represents the region of DCSR space allocated to 298 This node represents the region of DCSR space allocated to 327 This node represents the region of DCSR space allocated to 356 This node represents the region of DCSR space allocated to
|
/linux-4.4.14/Documentation/trace/ |
D | events-kmem.txt | 36 of writing, no information is available on what slab is being allocated from, 47 a simple indicator of page allocator activity. Pages may be allocated from 50 If pages are allocated directly from the buddy allocator, the 75 When a per-CPU list is empty or pages of the wrong type are allocated, 77 triggered is mm_page_alloc_zone_locked for each page allocated with the 91 can be allocated and freed on the same CPU through some algorithm change.
|
D | stm.txt | 8 these masters and channels are statically allocated to certain 47 with "user" identification string will be allocated a master and 58 automatically allocated a master/channel pair upon first write to this
|
D | intel_th.txt | 63 allocated, are accessible via /dev/intel_th0/msc{0,1}.
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_vce.c | 571 uint32_t handle, bool *allocated) in amdgpu_vce_validate_handle() argument 575 *allocated = false; in amdgpu_vce_validate_handle() 593 *allocated = true; in amdgpu_vce_validate_handle() 615 bool allocated = false; in amdgpu_vce_ring_parse_cs() local 642 &allocated); in amdgpu_vce_ring_parse_cs() 655 if (!allocated) { in amdgpu_vce_ring_parse_cs() 728 if (allocated && !created) { in amdgpu_vce_ring_parse_cs() 734 if ((!r && destroyed) || (r && allocated)) { in amdgpu_vce_ring_parse_cs()
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | radeon_vce.c | 520 uint32_t handle, bool *allocated) in radeon_vce_validate_handle() argument 524 *allocated = false; in radeon_vce_validate_handle() 542 *allocated = true; in radeon_vce_validate_handle() 560 bool destroyed = false, created = false, allocated = false; in radeon_vce_cs_parse() local 585 &allocated); in radeon_vce_cs_parse() 596 if (!allocated) { in radeon_vce_cs_parse() 668 if (allocated && !created) { in radeon_vce_cs_parse() 674 if ((!r && destroyed) || (r && allocated)) { in radeon_vce_cs_parse()
|
/linux-4.4.14/include/linux/ |
D | powercap.h | 83 bool allocated; member 163 bool allocated; member
|
D | atmel_tc.h | 72 bool allocated; member
|
/linux-4.4.14/scripts/coccinelle/misc/ |
D | badty.cocci | 4 //# in memory allocation functions by checking the type of the allocated memory 6 //# to the the memory being allocated. There are false positives in cases the
|
/linux-4.4.14/drivers/media/pci/zoran/ |
D | zoran_driver.c | 253 fh->buffers.allocated = 1; in v4l_fbuffer_alloc() 279 fh->buffers.allocated = 0; in v4l_fbuffer_free() 382 fh->buffers.allocated = 1; in jpg_fbuffer_alloc() 431 fh->buffers.allocated = 0; in jpg_fbuffer_free() 493 if (!fh->buffers.allocated) { in zoran_v4l_queue_frame() 532 zr->v4l_buffers.allocated = 0; in zoran_v4l_queue_frame() 623 zr->v4l_buffers.allocated = 0; in v4l_sync() 644 if (!fh->buffers.allocated) { in zoran_jpg_queue_frame() 713 zr->jpg_buffers.allocated = 0; in zoran_jpg_queue_frame() 744 zr->jpg_buffers.allocated = 0; in jpg_qbuf() [all …]
|
D | zoran_card.c | 918 zr->v4l_buffers.allocated = 0; in zoran_open_init_params() 924 zr->jpg_buffers.allocated = 0; in zoran_open_init_params() 990 zr->jpg_buffers.allocated = 0; in zr36057_init() 991 zr->v4l_buffers.allocated = 0; in zr36057_init()
|
D | zoran.h | 212 u8 allocated; /* Flag if buffers are allocated */ member
|
/linux-4.4.14/fs/udf/ |
D | balloc.c | 761 int allocated; in udf_prealloc_blocks() local 764 allocated = udf_bitmap_prealloc_blocks(sb, in udf_prealloc_blocks() 769 allocated = udf_table_prealloc_blocks(sb, in udf_prealloc_blocks() 774 allocated = udf_bitmap_prealloc_blocks(sb, in udf_prealloc_blocks() 779 allocated = udf_table_prealloc_blocks(sb, in udf_prealloc_blocks() 786 if (inode && allocated > 0) in udf_prealloc_blocks() 787 inode_add_bytes(inode, allocated << sb->s_blocksize_bits); in udf_prealloc_blocks() 788 return allocated; in udf_prealloc_blocks()
|
/linux-4.4.14/drivers/gpu/drm/amd/amdkfd/ |
D | kfd_packet_manager.c | 101 BUG_ON(pm->allocated == true); in pm_allocate_runlist_ib() 118 pm->allocated = true; in pm_allocate_runlist_ib() 437 pm->allocated = false; in pm_init() 534 if (pm->allocated == true) in pm_send_runlist() 667 if (pm->allocated) { in pm_release_ib() 669 pm->allocated = false; in pm_release_ib()
|
D | kfd_priv.h | 680 bool allocated; member
|
/linux-4.4.14/Documentation/devicetree/bindings/dma/ |
D | jz4780-dma.txt | 41 the allocated channel, as defined in the SoC documentation. 43 2. Channel: If set to 0xffffffff, any available channel will be allocated for
|
D | snps-dma.txt | 50 3. Source master for transfers on allocated channel 51 4. Destination master for transfers on allocated channel
|
D | ti-edma.txt | 24 - ti,edma-memcpy-channels: List of channels allocated to be used for memcpy, iow 27 the driver, they are allocated to be used by for example the 57 /* Channel 20 and 21 is allocated for memcpy */
|
/linux-4.4.14/Documentation/usb/ |
D | dwc3.txt | 13 endpoint. The interrupt numbers are allocated during probe and belong 16 - interrupts are requested / allocated on usb_ep_enable() and removed on
|
D | bulk-streams.txt | 40 host controller allocated for this endpoint. The xHCI host controller hardware 43 drivers should be able to deal with being allocated less stream IDs than they
|
D | URB.txt | 84 URBs are allocated with the following call 88 Return value is a pointer to the allocated URB, 0 if allocation failed. 155 It removes the urb from the internal list and frees all allocated 222 allocated at the end of the URB by usb_alloc_urb(n,mem_flags), for each
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | u_serial.c | 624 int *allocated) in gs_free_requests() argument 632 if (allocated) in gs_free_requests() 633 (*allocated)--; in gs_free_requests() 639 int *allocated) in gs_alloc_requests() argument 643 int n = allocated ? QUEUE_SIZE - *allocated : QUEUE_SIZE; in gs_alloc_requests() 655 if (allocated) in gs_alloc_requests() 656 (*allocated)++; in gs_alloc_requests()
|
/linux-4.4.14/drivers/dma/ |
D | moxart-dma.c | 141 bool allocated; member 354 ch->allocated = 1; in moxart_alloc_chan_resources() 367 ch->allocated = 0; in moxart_free_chan_resources() 532 if (!ch->allocated) in moxart_dma_interrupt() 603 ch->allocated = 0; in moxart_probe()
|
D | coh901318.c | 1292 int allocated; member 1962 if (!cohc->allocated) { in dma_tc_handle() 2185 cohc->allocated = 1; in coh901318_alloc_chan_resources() 2208 cohc->allocated = 0; in coh901318_free_chan_resources()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-fs-ext4 | 45 parameter will have their blocks allocated out of a 48 will have its blocks allocated out of its own unique 65 have their location in the filesystem allocated yet.
|
D | sysfs-kernel-slab | 49 allocated using the fast path. It can be written to clear the 83 be allocated from the page allocator. It can be written to 94 allocated using the slow path because of a refill or 139 new slab is allocated. 335 objects may be allocated from a single slab of the order 345 allocated. It is writable and can be changed to increase the 346 number of objects per slab. If a slab cannot be allocated 382 when a new slab is allocated.
|
D | sysfs-block-zram | 94 filled pages written to this disk. No memory is allocated for 103 pages (zero_pages) since no memory is allocated for them. 121 overhead, allocated for this disk. So, allocator space
|
D | sysfs-bus-intel_th-devices-msc | 27 of numbers of pages for each window to be allocated. Number of
|
D | configfs-stp-policy | 31 use to request a master/channel to be allocated and assigned to
|
D | sysfs-bus-fcoe | 18 FCoE devices. It will also free all kernel memory allocated
|
/linux-4.4.14/Documentation/driver-model/ |
D | driver.txt | 10 Device drivers are statically allocated structures. Though there may 27 allocated. Below is an example declaration of the eepro100 157 be allocated and initialized, and that any hardware can be initialized. 165 released all resources it allocated. 175 not. It should free any resources allocated specifically for the
|
D | devres.txt | 59 for the DMA memory allocated using it is managed and will be 205 concurrent accesses to allocated devres data is caller's 219 Each devres bookkeeping info is allocated together with requested data
|
D | overview.txt | 54 statically allocated. This means only one allocation on device discovery.
|
/linux-4.4.14/fs/f2fs/ |
D | data.c | 511 bool allocated; in __allocate_data_blocks() local 523 allocated = false; in __allocate_data_blocks() 536 allocated = true; in __allocate_data_blocks() 543 if (allocated) in __allocate_data_blocks() 552 if (allocated) in __allocate_data_blocks() 579 bool allocated = false; in f2fs_map_blocks() local 615 allocated = true; in f2fs_map_blocks() 644 if (allocated) in f2fs_map_blocks() 646 allocated = false; in f2fs_map_blocks() 672 allocated = true; in f2fs_map_blocks() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | davinci-mcasp-audio.txt | 33 - sram-size-playback : size of sram to be allocated during playback 34 - sram-size-capture : size of sram to be allocated during capture
|
/linux-4.4.14/include/drm/ |
D | drm_mm.h | 69 unsigned allocated : 1; member 109 return node->allocated; in drm_mm_node_allocated()
|
/linux-4.4.14/drivers/media/usb/uvc/ |
D | uvc_queue.c | 358 int allocated; in uvc_queue_allocated() local 361 allocated = vb2_is_busy(&queue->queue); in uvc_queue_allocated() 364 return allocated; in uvc_queue_allocated()
|
/linux-4.4.14/Documentation/sysctl/ |
D | fs.txt | 68 Dentries are dynamically allocated and deallocated, and 84 The file dquot-nr shows the number of allocated disk quota 102 file-nr denote the number of allocated file handles, the number 103 of allocated but unused file handles, and the maximum number of 106 number of allocated file handles exactly matches the number of 142 allocated, this can be slightly more than inode-max because 167 Once this limit is reached, no new pipes may be allocated until usage goes
|
D | vm.txt | 242 or not. If set to non-zero, hugepages can be allocated from ZONE_MOVABLE. 287 the kernel to allow process memory to be allocated from the "lowmem" 398 for a few types of pages, like kernel internally allocated data or 525 'where the memory is allocated from' is controlled by zonelists. 706 are allocated for each per cpu page list. The min value for this is 8. It 708 allocated in any single per_cpu_pagelist. This entry only changes the value
|
/linux-4.4.14/drivers/soc/qcom/ |
D | smem.c | 109 __le32 allocated; member 357 if (entry->allocated) in qcom_smem_alloc_global() 373 entry->allocated = cpu_to_le32(1); in qcom_smem_alloc_global() 436 if (!entry->allocated) in qcom_smem_get_global()
|
D | smd.c | 128 DECLARE_BITMAP(allocated[SMD_ALLOC_TBL_COUNT], SMD_ALLOC_TBL_SIZE); 1119 if (test_bit(i, edge->allocated[tbl])) in qcom_discover_channels() 1147 set_bit(i, edge->allocated[tbl]); in qcom_discover_channels()
|
/linux-4.4.14/Documentation/video4linux/ |
D | cafe_ccic | 23 then worst-case-sized buffers will be allocated at module load time. 29 allocated at run time, they will be sized appropriately for the current
|
D | videobuf | 29 contiguous; buffers allocated with vmalloc(), in other words. These 264 allocated. The scatter/gather case is the most complex on this front. For 266 videobuf layer; in this case, buffers will be allocated as anonymous 284 populate it with pointers to the pieces of the allocated buffer; sglen
|
/linux-4.4.14/Documentation/ABI/obsolete/ |
D | sysfs-block-zram | 60 filled pages written to this disk. No memory is allocated for 70 pages (zero_pages) since no memory is allocated for them. 90 overhead, allocated for this disk. So, allocator space
|
/linux-4.4.14/Documentation/PCI/ |
D | MSI-HOWTO.txt | 105 MSI interrupts that have been successfully allocated. In this case 110 number of successfully allocated MSI interrupts to further allocate 196 successfully allocated. 204 the previously allocated MSIs. The interrupts may subsequently be assigned 225 number of MSI interrupt vectors that could be allocated. 258 allocated. In this case the 'vector' member in entries numbered from 263 Device driver can use the returned number of successfully allocated MSI-X 284 interrupts allocated should be a multiple of four. In this case interface 391 successfully allocated. 439 It frees the previously allocated MSI-X interrupts. The interrupts may [all …]
|
/linux-4.4.14/Documentation/power/ |
D | userland-swsusp.txt | 28 allocated, and PM_HIBERNATION_PREPARE / PM_RESTORE_PREPARE chains are 54 SNAPSHOT_FREE - free memory allocated for the snapshot image 71 SNAPSHOT_FREE_SWAP_PAGES - free all swap pages allocated by 109 The release() operation frees all memory allocated for the snapshot image 110 and all swap pages allocated with SNAPSHOT_ALLOC_SWAP_PAGE (if any).
|
/linux-4.4.14/fs/xfs/libxfs/ |
D | xfs_bmap_btree.c | 428 dst->bc_private.b.allocated += src->bc_private.b.allocated; in xfs_bmbt_update_cursor() 431 src->bc_private.b.allocated = 0; in xfs_bmbt_update_cursor() 502 cur->bc_private.b.allocated++; in xfs_bmbt_alloc_block() 805 cur->bc_private.b.allocated = 0; in xfs_bmbt_init_cursor()
|
D | xfs_btree.h | 227 int allocated; /* count of alloced */ member
|
D | xfs_bmap.c | 808 cur->bc_private.b.allocated++; in xfs_bmap_extents_to_btree() 1016 cur->bc_private.b.allocated = 0; in xfs_bmap_add_attrfork_btree() 1045 cur->bc_private.b.allocated = 0; in xfs_bmap_add_attrfork_extents() 2029 (bma->cur ? bma->cur->bc_private.b.allocated : 0)); in xfs_bmap_add_extent_delay_real() 2113 (bma->cur ? bma->cur->bc_private.b.allocated : 0)); in xfs_bmap_add_extent_delay_real() 2183 (bma->cur ? bma->cur->bc_private.b.allocated : 0)); in xfs_bmap_add_extent_delay_real() 2234 temp += bma->cur->bc_private.b.allocated; in xfs_bmap_add_extent_delay_real() 2243 bma->cur->bc_private.b.allocated = 0; in xfs_bmap_add_extent_delay_real() 2767 cur->bc_private.b.allocated = 0; in xfs_bmap_add_extent_unwritten_real() 3160 bma->cur->bc_private.b.allocated = 0; in xfs_bmap_add_extent_hole_real() [all …]
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-rt-group.txt | 56 Any time not allocated to a realtime group will be used to run normal priority 57 tasks (SCHED_OTHER). Any allocated run time not used will also be picked up by 73 realtime tasks have explicitly allocated the CPU time they need to perform 174 get their allocated time.
|
D | completion.txt | 66 Initialization of dynamically allocated completions, often embedded in 98 allocated completions when intending to use the _interruptible/_killable
|
/linux-4.4.14/Documentation/networking/ |
D | mpls-sysctl.txt | 10 allocated.
|
D | netdevices.txt | 13 must be allocated with alloc_netdev_mqs() and friends. 20 separately allocated data is attached to the network device
|
D | nf_conntrack-sysctl.txt | 26 Number of currently allocated flow entries. 61 nf_conntrack_frag6_high_thresh bytes of memory is allocated for this
|
D | packet_mmap.txt | 77 mmap() ---------> mapping of the allocated buffer to the 103 allocated RX and TX buffer ring with a single mmap() call. 119 mmap() ---------> mapping of the allocated buffer to the 267 memory regions are allocated with calls to the __get_free_pages() function. As 272 region allocated by __get_free_pages is determined by the MAX_ORDER macro. More 296 Currently, this structure is a dynamically allocated vector with kmalloc 297 called pg_vec, its size limits the number of blocks that can be allocated. 364 Remember that the memory is allocated in kernel space, in the case of
|
D | igb.txt | 85 In this mode, a separate MSI-X vector is allocated for each queue and one
|
D | netlink_mmap.txt | 53 it will use an allocated socket buffer as usual and the contents will be 203 allocated buffer due to unresolved security concerns.
|
D | ixgb.txt | 132 This value is the number of receive descriptors allocated by the driver. 134 Each descriptor is 16 bytes. A receive buffer is also allocated for 155 This value is the number of transmit descriptors allocated by the driver.
|
D | tcp.txt | 38 alternatively space could be allocated elsewhere and a pointer to it could
|
D | ieee802154.txt | 94 freeing allocated device
|
D | e1000.txt | 174 This value specifies the number of receive buffer descriptors allocated 178 Each descriptor is 16 bytes. A receive buffer is also allocated for each 237 This value is the number of transmit descriptors allocated by the driver.
|
D | rds.txt | 239 The bitmaps are allocated as connections are brought up. This 294 a node, a connection is allocated and connected. That connection is
|
D | ixgbe.txt | 175 Flow Director allocated packet buffer size. 240 allocated to each of these priorities, which is enforced at the hardware
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | netfs-api.txt | 70 (3) The cookie representing the primary index will be allocated according to 369 index and an inode would be allocated that acts as a volume type and hash chain 450 (1) A page should not be re-read or re-allocated without uncaching it first. 452 (2) A read or allocated page must be uncached when the netfs page is released 455 (3) A page should only be written to the cache if previous read or allocated. 532 because the file has been extended, a block can simply be allocated instead: 539 never reads from the cache. It will return 0 if a block has been allocated, 563 The page must have first been read or allocated successfully and must not have 570 Else if space can be allocated in the cache to hold this page: 610 at once if they're being read or allocated. [all …]
|
D | backend-api.txt | 138 Structures of this type should be allocated by the cache backend and 185 A structure of this type is allocated by FS-Cache to record retrieval and 209 A structure of this type is allocated by FS-Cache to record outstanding 252 allocated and attached to the cookie. This should instantiate that object 463 if one or more pages couldn't be read or allocated, then -ENOBUFS should 469 (*) Request page be allocated in the cache [mandatory]: 482 allocated, then the netfs page should be marked and 0 returned. 485 (*) Request pages be allocated in the cache [mandatory]: 553 (*) Record that one or more pages being retrieved or allocated have been dealt 621 (*) Initialise a freshly allocated object:
|
D | fscache.txt | 215 Cookies idx=N Number of index cookies allocated 216 dat=N Number of data storage cookies allocated 217 spc=N Number of special cookies allocated 218 Objects alc=N Number of objects allocated 341 list of all the objects currently allocated and allow them to be viewed
|
/linux-4.4.14/Documentation/device-mapper/ |
D | log-writes.txt | 65 <#logged entries> <highest allocated sector> 68 highest allocated sector : Highest allocated sector
|
/linux-4.4.14/mm/ |
D | rmap.c | 177 struct anon_vma *allocated; in anon_vma_prepare() local 184 allocated = NULL; in anon_vma_prepare() 189 allocated = anon_vma; in anon_vma_prepare() 200 allocated = NULL; in anon_vma_prepare() 206 if (unlikely(allocated)) in anon_vma_prepare() 207 put_anon_vma(allocated); in anon_vma_prepare()
|
D | Kconfig | 488 be allocated from it. This way, the kernel can use the memory for 490 allocated pages are migrated away to serve the contiguous request. 541 compress them into a dynamically allocated RAM-based memory pool. 579 access the allocated space.
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | vio.h | 109 size_t allocated; member
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | resource_tracker.c | 307 int allocated, free, reserved, guaranteed, from_free; in mlx4_grant_resource() local 314 allocated = (port > 0) ? in mlx4_grant_resource() 315 res_alloc->allocated[(port - 1) * in mlx4_grant_resource() 317 res_alloc->allocated[slave]; in mlx4_grant_resource() 324 if (allocated + count > res_alloc->quota[slave]) { in mlx4_grant_resource() 327 allocated, res_alloc->quota[slave]); in mlx4_grant_resource() 331 if (allocated + count <= guaranteed) { in mlx4_grant_resource() 336 if (guaranteed - allocated > 0) in mlx4_grant_resource() 337 from_free = count - (guaranteed - allocated); in mlx4_grant_resource() 354 res_alloc->allocated[(port - 1) * in mlx4_grant_resource() [all …]
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | trigger.txt | 15 ownership of core allocated resources.
|
D | device.txt | 74 allocated prior to registering the device with the iio-core, but must
|
/linux-4.4.14/drivers/nvdimm/ |
D | dimm_devs.c | 517 resource_size_t allocated = 0; in nvdimm_allocated_dpa() local 522 allocated += resource_size(res); in nvdimm_allocated_dpa() 524 return allocated; in nvdimm_allocated_dpa()
|
D | namespace_devs.c | 849 resource_size_t allocated = 0, available = 0; in __size_store() local 898 allocated += nvdimm_allocated_dpa(ndd, &label_id); in __size_store() 902 if (val > available + allocated) in __size_store() 905 if (val == allocated) in __size_store() 909 allocated = div_u64(allocated, nd_region->ndr_mappings); in __size_store() 910 if (val < allocated) in __size_store() 912 allocated - val); in __size_store() 914 rc = grow_dpa_allocation(nd_region, &label_id, val - allocated); in __size_store()
|
/linux-4.4.14/arch/cris/arch-v10/ |
D | README.mm | 228 happens first is that a virtual address chunk is allocated to the request using 229 get_vm_area(size). After that, physical RAM pages are allocated and put into 237 allocated and the PGD entry updated. Then the alloc_area_pte function is 239 and a physical page is allocated and the table entry updated. All of this
|
/linux-4.4.14/Documentation/powerpc/ |
D | cxl.txt | 152 When all available contexts are allocated the open call will fail 155 Note: IRQs need to be allocated for each context, which may limit 160 contexts can be allocated. If 4 IRQs are needed per context, 161 then only 2037/4 = 509 contexts can be allocated. 213 AFU will be allocated. The min and max number can be
|
D | ptrace.txt | 87 can't be allocated on the registers.
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | Procfile.txt | 33 Shows the status of allocated pages via ALSA drivers. 196 Lists the currently allocated/running sequencer queues. 199 Lists the currently allocated/running sequencer timers.
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-kmem.txt | 61 default, but this option shows live (currently allocated) pages
|
/linux-4.4.14/arch/arm/nwfpe/ |
D | ChangeLog | 65 when the task structure is initially allocated. In any case 67 zero when allocated and recycled. See alloc_task_struct() and
|
/linux-4.4.14/Documentation/filesystems/ |
D | fiemap.txt | 70 allocated is less than would be required to map the requested range, 124 been allocated for the file yet. 129 physical location has not been allocated yet. 162 Unwritten extent - the extent is allocated but its data has not been
|
D | exofs.txt | 129 - The next inode number to be allocated 137 IDs correspond to the files' inode numbers and will be allocated according to 138 a bitmap (stored in a separate object). Now they are allocated using a
|
D | devpts.txt | 3 such that indices of ptys allocated in one instance are independent of indices 4 allocated in other instances of devpts.
|
D | ext4.txt | 270 nodelalloc Disable delayed allocation. Blocks are allocated 320 blocks are allocated such that at the next 452 filesystem allocated yet. 493 parameter will have their blocks allocated out 496 Each large file will have its blocks allocated 592 EXT4_IOC_ALLOC_DA_BLKS Force all of the delay allocated blocks to be 593 allocated to preserve application-expected ext3
|
D | omfs.txt | 99 Each extent holds the block offset followed by number of blocks allocated to
|
D | seq_file.txt | 125 course, is to clean up. If dynamic memory is allocated for the iterator, 254 identical except that, if successful, it returns the pointer to the allocated 273 frees the memory allocated in the corresponding open.
|
D | files.txt | 29 expansion of fdtable, a new fdtable structure is allocated
|
/linux-4.4.14/Documentation/blockdev/ |
D | cciss.txt | 182 (6) are allocated for tape drives because tape drives are slow and 185 are allocated for disk devices. However, if you have more than a few tape 189 parameter allows more commands (up to 16 more) to be allocated for use by
|
D | zram.txt | 177 mem_used_total RO the amount of memory allocated for this disk 240 This frees all the memory allocated for the given device and
|
/linux-4.4.14/sound/soc/intel/haswell/ |
D | sst-haswell-pcm.c | 123 bool allocated; member 492 if (pcm_data->allocated) { in hsw_pcm_hw_params() 504 pcm_data->allocated = false; in hsw_pcm_hw_params() 652 if (!pcm_data->allocated) { in hsw_pcm_hw_params() 658 pcm_data->allocated = true; in hsw_pcm_hw_params() 865 pcm_data->allocated = 0; in hsw_pcm_close()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | i915_vgpu.c | 112 if (bl_info.space[i].allocated) in intel_vgt_deballoon()
|
/linux-4.4.14/drivers/lguest/ |
D | page_tables.c | 1076 int allocated = 0; in init_guest_pagetable() local 1079 cpu->cpu_pgd = new_pgdir(cpu, 0, &allocated); in init_guest_pagetable() 1080 if (!allocated) in init_guest_pagetable()
|
/linux-4.4.14/Documentation/isdn/ |
D | README.hysdn | 67 subdir need to be closed and all ethernet interfaces allocated by this 111 to tell that no net device has been allocated up to now. Once a net device 112 has been allocated it remains assigned to this card, even if a card is
|
D | INTERFACE.fax | 9 This struct is allocated in the LL.
|
/linux-4.4.14/Documentation/watchdog/ |
D | wdt.txt | 47 Minor numbers are however allocated for it.
|
D | watchdog-kernel-api.txt | 113 If the watchdog_device struct is dynamically allocated, just locking the module 168 allocated watchdog_device struct. 170 allocated watchdog_device struct.
|
/linux-4.4.14/Documentation/block/ |
D | queue-sysfs.txt | 95 This controls how many requests may be allocated in the block layer for 96 read or write requests. Note that the total allocated number may be twice
|
D | null_blk.txt | 33 Selects what CPU node the data structures are allocated from.
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | msgbuf.c | 270 atomic_t allocated; member 335 if (array[*idx].allocated.counter == 0) in brcmf_msgbuf_alloc_pktid() 336 if (atomic_cmpxchg(&array[*idx].allocated, 0, 1) == 0) in brcmf_msgbuf_alloc_pktid() 366 if (pktids->array[idx].allocated.counter) { in brcmf_msgbuf_get_pktid() 372 pktid->allocated.counter = 0; in brcmf_msgbuf_get_pktid() 393 if (array[count].allocated.counter) { in brcmf_msgbuf_release_array()
|
/linux-4.4.14/lib/xz/ |
D | xz_dec_lzma2.c | 88 uint32_t allocated; member 1126 s->dict.allocated = 0; in xz_dec_lzma2_create() 1148 if (s->dict.allocated < s->dict.size) { in xz_dec_lzma2_reset() 1152 s->dict.allocated = 0; in xz_dec_lzma2_reset()
|
/linux-4.4.14/Documentation/x86/ |
D | intel_mpx.txt | 95 * new bounds tables (BT) need to be allocated to save bounds. 144 allocated which might contain pointers that might eventually need 153 Q: Could a bounds fault be handed to userspace and the tables allocated 199 Since the kernel allocated those tables on-demand without userspace
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | pio.h | 145 u16 allocated; /* has this been allocated? */ member
|
D | pio.c | 486 if (sci->type == type && sci->allocated == 0) { in sc_hw_alloc() 487 sci->allocated = 1; in sc_hw_alloc() 510 if (!sci->allocated) { in sc_hw_free() 514 sci->allocated = 0; in sc_hw_free()
|
/linux-4.4.14/arch/m68k/include/asm/ |
D | dvma.h | 117 int allocated; /* Are we "owned" by anyone yet? */ member
|
/linux-4.4.14/fs/affs/ |
D | Changes | 26 last allocated block is not cleared. Well, 148 when it allocated a new block. 262 - Extension block caches are now allocated on
|
/linux-4.4.14/drivers/md/ |
D | dm-cache-policy-smq.c | 43 bool allocated:1; member 702 e->allocated = true; in init_entry() 726 BUG_ON(e->allocated); in alloc_particular_entry() 738 BUG_ON(!e->allocated); in free_entry() 741 e->allocated = false; in free_entry() 1440 if (!e || !e->allocated) in __remove_cblock()
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/ |
D | cpm.txt | 29 should be dynamically allocated. If zero, the
|
D | qe.txt | 57 bus that can be allocated as data/parameter
|
/linux-4.4.14/Documentation/console/ |
D | console.txt | 118 2. All resources allocated during con->con_init() must be released in 121 3. All resources allocated in con->con_startup() must be released when the
|
/linux-4.4.14/Documentation/fmc/ |
D | API.txt | 26 allocated by the caller, but must not be released after unregistering.
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/ti/ |
D | keystone-navigator-qmss.txt | 56 range can only be allocated by queue id. 86 descriptors will be allocated by the driver.
|
/linux-4.4.14/drivers/scsi/ |
D | NCR5380.h | 251 DECLARE_BITMAP(allocated, MAX_TAGS);
|
D | atari_NCR5380.c | 285 bitmap_zero(ta->allocated, MAX_TAGS); in init_tags() 348 cmd->tag = find_first_zero_bit(ta->allocated, MAX_TAGS); in cmd_get_tag() 349 set_bit(cmd->tag, ta->allocated); in cmd_get_tag() 377 clear_bit(cmd->tag, ta->allocated); in cmd_free_tag() 396 bitmap_zero(ta->allocated, MAX_TAGS); in free_all_tags()
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | Exporting | 72 DCACHE_DISCONNECTED) dentry is allocated and attached. 127 the parent. Quite possibly the parent dentry will have been allocated
|
D | nfs41-server.txt | 25 resources allocated for each client.
|
/linux-4.4.14/drivers/staging/most/Documentation/ |
D | driver_usage.txt | 114 When transmitting synchronous data the allocated channel width needs to be 124 allocated within one MOST frame, is calculated that fit into _one_ 512 byte
|
/linux-4.4.14/drivers/infiniband/hw/mlx4/ |
D | main.c | 1260 if (counter->allocated) in mlx4_ib_delete_counters_table() 2150 int allocated; in mlx4_ib_add() local 2332 allocated = 0; in mlx4_ib_add() 2342 allocated = 1; in mlx4_ib_add() 2350 if (allocated) in mlx4_ib_add() 2355 new_counter_index->allocated = allocated; in mlx4_ib_add() 2360 counter_index, i + 1, allocated); in mlx4_ib_add() 2370 new_counter_index->allocated = 0; in mlx4_ib_add()
|
/linux-4.4.14/drivers/staging/unisys/visorbus/ |
D | controlvmchannel.h | 64 u16 allocated:1; /* Bit 4: memory (device/port number) member
|
/linux-4.4.14/lib/ |
D | Kconfig.kmemcheck | 17 This option enables tracing of dynamically allocated kernel memory
|
/linux-4.4.14/Documentation/leds/ |
D | leds-lp5562.txt | 19 3 Engines are allocated in LP5562, but the number of channel is 4.
|
/linux-4.4.14/net/sctp/ |
D | Kconfig | 57 type of objects that are currently allocated. This is useful for
|
/linux-4.4.14/Documentation/devicetree/bindings/bus/ |
D | mvebu-mbus.txt | 37 size for the address decoding windows allocated for 105 (S = 0x0), an address decoding window is allocated. On the other side,
|
/linux-4.4.14/fs/ext2/ |
D | balloc.c | 1303 goto allocated; in ext2_new_blocks() 1346 goto allocated; in ext2_new_blocks() 1365 allocated: in ext2_new_blocks()
|
/linux-4.4.14/fs/ubifs/ |
D | journal.c | 701 int dlen = COMPRESSED_DATA_NODE_BUF_SZ, allocated = 1; in ubifs_jnl_write_data() local 717 allocated = 0; in ubifs_jnl_write_data() 756 if (!allocated) in ubifs_jnl_write_data() 768 if (!allocated) in ubifs_jnl_write_data()
|
D | file.c | 828 int err = 0, allocated = 0; in ubifs_bulk_read() local 869 allocated = 1; in ubifs_bulk_read() 877 if (!allocated) in ubifs_bulk_read()
|
/linux-4.4.14/Documentation/fb/ |
D | sh7760fb.txt | 11 * Framebuffer memory must be a large chunk allocated at the top
|
D | intelfb.txt | 36 if not enough RAM was already allocated by the BIOS.
|
D | ep93xx-fb.txt | 127 By default the EP93xx framebuffer driver checks if the allocated physical
|
D | pxafb.txt | 78 2. overlay framebuffer is allocated dynamically according to specified
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/fsl/ |
D | bman.txt | 68 for BMan Free Buffer Proxy Records (FBPR). This memory is reserved/allocated as a
|
D | qman.txt | 77 This memory is reserved/allocated as a nodes under the /reserved-memory node
|
/linux-4.4.14/Documentation/cgroups/ |
D | memcg_test.txt | 54 Anonymous page is newly allocated at 61 (a) If the SwapCache is newly allocated and read, it has no charges.
|
D | cpusets.txt | 325 pages are allocated on the node local to where the task is running, 628 Normally, once a page is allocated (given a physical page 630 was allocated, so long as it remains allocated, even if the 634 allocated to it on nodes in its previous cpuset are migrated 641 'cpuset.mems' file is modified, pages allocated to tasks in that
|
/linux-4.4.14/Documentation/crypto/ |
D | async-tx-api.txt | 199 be the return value from dma_request_channel. A channel allocated via 210 1/ Once a channel has been privately allocated it will no longer be
|
/linux-4.4.14/drivers/pci/ |
D | Kconfig | 48 been allocated by the BIOS.
|
/linux-4.4.14/Documentation/RCU/ |
D | torture.txt | 230 o "rta": Number of structures allocated from the torture freelist. 268 you notice. The age of a newly allocated structure is zero, 286 should closely correspond to the number of structures allocated,
|
D | rculist_nulls.txt | 10 allocated with SLAB_DESTROY_BY_RCU kmem_cache can
|
/linux-4.4.14/net/core/ |
D | sock.c | 2071 long allocated; in __sk_mem_schedule() local 2076 allocated = sk_memory_allocated_add(sk, amt, &parent_status); in __sk_mem_schedule() 2080 allocated <= sk_prot_mem_limits(sk, 0)) { in __sk_mem_schedule() 2087 allocated > sk_prot_mem_limits(sk, 1)) in __sk_mem_schedule() 2092 (allocated > sk_prot_mem_limits(sk, 2))) in __sk_mem_schedule() 2134 trace_sock_exceed_buf_limit(sk, prot, allocated); in __sk_mem_schedule()
|
/linux-4.4.14/Documentation/cpu-freq/ |
D | core.txt | 120 dev_pm_opp_free_cpufreq_table - Free up the table allocated by dev_pm_opp_init_cpufreq_table
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-dma.txt | 62 The scatter-gather array is a contiguously allocated block of memory that
|
/linux-4.4.14/Documentation/frv/ |
D | configuring.txt | 51 megabyte will be allocated in this way, possibly more. Any memory so
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | msi.txt | 67 This property is unordered, and MSIs may be allocated from any combination of
|
/linux-4.4.14/drivers/block/ |
D | Kconfig | 175 The umem driver has not yet been allocated a MAJOR number, so 267 dynamically allocated with the /dev/loop-control interface. 394 allocated from highmem (only a problem for highmem systems). 423 of non-swappable kernel memory, memory which will be allocated when
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | info.txt | 41 the number of pages, allocated for crypto processing (each crypto thread has
|
/linux-4.4.14/drivers/gpu/drm/msm/ |
D | NOTES | 64 which blocks need to be allocated to the active pipes based on fetch
|
/linux-4.4.14/drivers/video/console/ |
D | Kconfig | 33 System RAM which is dynamically allocated during initialization.
|
/linux-4.4.14/Documentation/devicetree/bindings/reserved-memory/ |
D | reserved-memory.txt | 24 optional constraints to request a dynamically allocated block of memory.
|
/linux-4.4.14/Documentation/security/ |
D | IMA-templates.txt | 45 (pointer to allocated data and data length) in the measurement entry structure.
|
/linux-4.4.14/Documentation/hwmon/ |
D | hwmon-kernel-api.txt | 53 to the newly allocated hwmon device. The pointer can be retrieved by the driver
|
/linux-4.4.14/block/ |
D | cfq-iosched.c | 124 int allocated[2]; member 3027 io_refs = cfqq->allocated[READ] + cfqq->allocated[WRITE]; in cfqq_process_refs() 3559 BUG_ON(cfqq->allocated[READ] + cfqq->allocated[WRITE]); in cfq_put_queue() 4302 BUG_ON(!cfqq->allocated[rw]); in cfq_put_request() 4303 cfqq->allocated[rw]--; in cfq_put_request() 4391 cfqq->allocated[rw]++; in cfq_set_request()
|
/linux-4.4.14/drivers/staging/slicoss/ |
D | slic.h | 412 uint allocated; member
|
/linux-4.4.14/sound/core/oss/ |
D | mixer_oss.c | 498 unsigned int allocated: 1; member 944 if (p->allocated && p->assigned) { in snd_mixer_oss_slot_free() 1091 pslot->allocated = ptr_allocated; in snd_mixer_oss_build_input()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_main.c | 4453 int i, want, need, allocated; in enable_msix() local 4480 allocated = pci_enable_msix_range(adap->pdev, entries, need, want); in enable_msix() 4481 if (allocated < 0) { in enable_msix() 4485 return allocated; in enable_msix() 4492 i = allocated - EXTRA_VECS - ofld_need; in enable_msix() 4499 if (allocated < want) { in enable_msix() 4505 i = allocated - EXTRA_VECS - s->max_ethqsets - in enable_msix() 4509 for (i = 0; i < allocated; ++i) in enable_msix() 4513 allocated, s->max_ethqsets, s->ofldqsets, s->rdmaqs, in enable_msix()
|
/linux-4.4.14/Documentation/sound/oss/ |
D | README.modules | 100 the sound modules loaded and the DMA buffers allocated when they are not
|
/linux-4.4.14/Documentation/arm/ |
D | tcm.txt | 68 - Tag data and constants to be allocated to DTCM and ITCM.
|
/linux-4.4.14/Documentation/input/ |
D | gameport-programming.txt | 177 Close() should free the resources allocated by open, possibly disabling the
|