/Linux-v6.6/arch/powerpc/platforms/pseries/ |
D | vio.c | 95 struct vio_cmo_pool excess; member 160 excess_free = vio_cmo.excess.free; in vio_cmo_alloc() 169 vio_cmo.excess.free -= size; in vio_cmo_alloc() 220 vio_cmo.excess.size -= tmp; in vio_cmo_dealloc() 252 vio_cmo.excess.size -= tmp; in vio_cmo_dealloc() 260 vio_cmo.excess.free += excess_freed; in vio_cmo_dealloc() 301 vio_cmo.excess.size += delta; in vio_cmo_entitlement_update() 302 vio_cmo.excess.free += delta; in vio_cmo_entitlement_update() 309 avail = vio_cmo.excess.free; in vio_cmo_entitlement_update() 331 tmp = min(vio_cmo.excess.free, delta); in vio_cmo_entitlement_update() [all …]
|
/Linux-v6.6/drivers/crypto/bcm/ |
D | spu.c | 335 u32 excess; in spum_ns2_ctx_max_payload() local 341 excess = max_payload % blocksize; in spum_ns2_ctx_max_payload() 343 return max_payload - excess; in spum_ns2_ctx_max_payload() 364 u32 excess; in spum_nsp_ctx_max_payload() local 370 excess = max_payload % blocksize; in spum_nsp_ctx_max_payload() 372 return max_payload - excess; in spum_nsp_ctx_max_payload()
|
D | spu2.c | 789 u32 excess = SPU2_MAX_PAYLOAD % blocksize; in spu2_ctx_max_payload() local 791 return SPU2_MAX_PAYLOAD - excess; in spu2_ctx_max_payload()
|
/Linux-v6.6/Documentation/ABI/testing/ |
D | sysfs-bus-iio-humidity | 7 rid of excess condensation.
|
/Linux-v6.6/fs/ |
D | binfmt_elf_fdpic.c | 1023 unsigned long maddr, disp, excess, excess1; in elf_fdpic_map_file_by_direct_mmap() local 1117 excess = phdr->p_memsz - phdr->p_filesz; in elf_fdpic_map_file_by_direct_mmap() 1121 if (excess > excess1) { in elf_fdpic_map_file_by_direct_mmap() 1126 xmaddr = vm_mmap(NULL, xaddr, excess - excess1, in elf_fdpic_map_file_by_direct_mmap() 1131 loop, xaddr, excess - excess1, prot, flags, in elf_fdpic_map_file_by_direct_mmap() 1147 if (excess > 0) { in elf_fdpic_map_file_by_direct_mmap() 1149 loop, maddr + phdr->p_filesz, excess); in elf_fdpic_map_file_by_direct_mmap() 1150 if (clear_user((void *) maddr + phdr->p_filesz, excess)) in elf_fdpic_map_file_by_direct_mmap()
|
/Linux-v6.6/block/ |
D | blk-iocost.c | 1737 s64 excess, delta, target, new_hwi; in hweight_after_donation() local 1749 excess = now->vnow - vtime - ioc->margins.target; in hweight_after_donation() 1750 if (excess > 0) { in hweight_after_donation() 1751 atomic64_add(excess, &iocg->vtime); in hweight_after_donation() 1752 atomic64_add(excess, &iocg->done_vtime); in hweight_after_donation() 1753 vtime += excess; in hweight_after_donation() 1754 ioc->vtime_err -= div64_u64(excess * old_hwi, WEIGHT_ONE); in hweight_after_donation() 2192 s64 excess; in ioc_check_iocgs() local 2200 excess = now->vnow - vtime - ioc->margins.target; in ioc_check_iocgs() 2201 if (excess > 0) { in ioc_check_iocgs() [all …]
|
/Linux-v6.6/Documentation/hwmon/ |
D | sht3x.rst | 73 heater_enable: heater enable, heating element removes excess humidity from
|
/Linux-v6.6/Documentation/filesystems/ |
D | quota.rst | 27 the process which caused the excess. This method has the disadvantage that
|
/Linux-v6.6/mm/ |
D | memcontrol.c | 472 unsigned long excess = 0; in soft_limit_excess() local 475 excess = nr_pages - soft_limit; in soft_limit_excess() 477 return excess; in soft_limit_excess() 482 unsigned long excess; in mem_cgroup_update_tree() local 501 excess = soft_limit_excess(memcg); in mem_cgroup_update_tree() 506 if (excess || mz->on_tree) { in mem_cgroup_update_tree() 517 __mem_cgroup_insert_exceeded(mz, mctz, excess); in mem_cgroup_update_tree() 1755 unsigned long excess; in mem_cgroup_soft_reclaim() local 1761 excess = soft_limit_excess(root_memcg); in mem_cgroup_soft_reclaim() 1781 if (total >= (excess >> 2) || in mem_cgroup_soft_reclaim() [all …]
|
D | Kconfig | 778 int "Turn on mmap() excess space trimming before booting" 786 the excess and return it to the allocator. 788 If trimming is enabled, the excess is trimmed off and returned to the 792 If trimming is disabled, the excess is kept, but not used, which for 797 excess pages there must be before trimming should occur, or zero if 801 of 1 says that all excess pages should be trimmed.
|
/Linux-v6.6/drivers/nvdimm/ |
D | Kconfig | 119 the kernel will permanently reserve and strand excess
|
/Linux-v6.6/Documentation/scsi/ |
D | hpsa.rst | 12 "split-brained" design of the cciss driver is a source of excess
|
/Linux-v6.6/arch/powerpc/platforms/ps3/ |
D | Kconfig | 154 This driver allows you to use excess PS3 video RAM as volatile
|
/Linux-v6.6/Documentation/admin-guide/mm/ |
D | nommu-mmap.rst | 118 granule but will only discard the excess if appropriately configured as 278 aggressively trim allocations and discard any excess pages back in to the page
|
/Linux-v6.6/Documentation/accel/qaic/ |
D | qaic.rst | 20 workload is known to trigger this condition, and can generate in excess of 100k
|
/Linux-v6.6/drivers/usb/fotg210/ |
D | fotg210-hcd.c | 4186 u32 excess; in iso_stream_schedule() local 4202 excess = (stream->next_uframe - period - next) & (mod - 1); in iso_stream_schedule() 4203 if (excess >= mod - 2 * SCHEDULE_SLOP) in iso_stream_schedule() 4204 start = next + excess - mod + period * in iso_stream_schedule() 4205 DIV_ROUND_UP(mod - excess, period); in iso_stream_schedule() 4207 start = next + excess + period; in iso_stream_schedule()
|
/Linux-v6.6/Documentation/power/ |
D | pm_qos_interface.rst | 187 it may cause excess latencies to be visible to software, causing it to miss
|
/Linux-v6.6/Documentation/usb/ |
D | mass-storage.rst | 130 in “file” argument is greater then the value of “luns”, all excess
|
/Linux-v6.6/arch/m68k/fpsp040/ |
D | bindec.S | 69 | significant digits. The excess digits are collected
|
/Linux-v6.6/Documentation/admin-guide/device-mapper/ |
D | thin-provisioning.rst | 88 a warning will be issued and the excess space will not be used.
|
/Linux-v6.6/Documentation/admin-guide/sysctl/ |
D | vm.rst | 625 This value adjusts the excess page trimming behaviour of power-of-2 aligned 629 trims excess pages aggressively. Any value >= 1 acts as the watermark where
|
/Linux-v6.6/net/ipv4/ |
D | Kconfig | 588 to utilize only the excess network bandwidth as compared to the
|
/Linux-v6.6/Documentation/admin-guide/pm/ |
D | intel-speed-select.rst | 365 distribute all remaining (excess/deficit) budgets in proportion to a defined
|
/Linux-v6.6/Documentation/virt/uml/ |
D | user_mode_linux_howto_v2.rst | 893 master image and COW changes may cause issues like NMIs from excess of
|
/Linux-v6.6/Documentation/process/ |
D | coding-style.rst | 611 ugly), but try to avoid excess. Instead, put the comments at the head
|