| /linux/tools/testing/selftests/mm/ |
| H A D | charge_reserved_hugetlb.sh | 437 echo Memory charged to hugtlb=$hugetlb_difference 438 echo Memory charged to reservation=$reserved_difference 442 "Reserved memory charged to hugetlb cgroup." 445 "Reserved memory charged to hugetlb cgroup." 450 "Reserved memory not charged to reservation usage." 453 "Reserved memory not charged to reservation usage." 466 echo Memory charged to hugtlb=$hugetlb_difference 467 echo Memory charged to reservation=$reserved_difference 470 "Reserved memory charged to hugetlb cgroup." 473 "Reserved memory not charged t [all...] |
| H A D | hugetlb_reparenting_test.sh | 194 echo Assert memory charged correctly for parent use. 199 echo Assert memory charged correctly for child use. 222 echo Assert memory charged correctly for child only use.
|
| /linux/tools/perf/pmu-events/arch/powerpc/power10/ |
| H A D | pmc.json | 10 …iption": "The speculative event selected for PMC3 rewinds and the counter for PMC3 is not charged." 30 …iption": "The speculative event selected for PMC4 rewinds and the counter for PMC4 is not charged." 35 …ription": "The conditions for the speculative event selected for PMC2 are met and PMC2 is charged." 120 …iption": "The speculative event selected for PMC2 rewinds and the counter for PMC2 is not charged." 125 …ription": "The conditions for the speculative event selected for PMC4 are met and PMC4 is charged." 165 …ription": "The conditions for the speculative event selected for PMC1 are met and PMC1 is charged." 170 …ription": "The conditions for the speculative event selected for PMC3 are met and PMC3 is charged." 190 …iption": "The speculative event selected for PMC1 rewinds and the counter for PMC1 is not charged."
|
| /linux/Documentation/devicetree/bindings/power/supply/ |
| H A D | adc-battery.yaml | 30 charged-gpios: 32 GPIO which signals that the battery is fully charged. The GPIO is 64 charged-gpios = <&gpio 42 GPIO_ACTIVE_HIGH>;
|
| H A D | ingenic,battery.yaml | 36 - voltage-max-design-microvolt: fully charged battery voltage.
|
| /linux/Documentation/admin-guide/cgroup-v1/ |
| H A D | memcg_test.rst | 29 occurs. swap_cgroup is used only when a charged page is swapped-out. 34 a page/swp_entry may be charged (usage += PAGE_SIZE) at 53 Memcg pages are charged in two steps: 58 At try_charge(), there are no flags to say "this page is charged". 79 charged already. 99 Page Cache is charged at 124 It's charged when...
|
| H A D | rdma.rst | 64 a process from previously charged cgroup which is migrated to new cgroup,
|
| /linux/Documentation/admin-guide/sysctl/ |
| H A D | user.rst | 24 The creation of per user per user namespace objects are charged to 28 The creation of objects is also charged to all of the users
|
| /linux/kernel/cgroup/ |
| H A D | misc.c | 139 * @cg: Misc cgroup which will be charged. 147 * * %0 - If successfully charged. 190 * @type: Misc res type which was charged. 192 * @amount: Charged amount.
|
| /linux/mm/ |
| H A D | mremap.c | 71 unsigned long charged; /* If VM_ACCOUNT, # pages to account. */ member 978 unsigned long charged; in vrm_calc_charge() local 988 charged = vrm->new_len >> PAGE_SHIFT; in vrm_calc_charge() 990 charged = vrm->delta >> PAGE_SHIFT; in vrm_calc_charge() 993 /* This accounts 'charged' pages of memory. */ in vrm_calc_charge() 994 if (security_vm_enough_memory_mm(current->mm, charged)) in vrm_calc_charge() 997 vrm->charged = charged; in vrm_calc_charge() 1002 * an error has occurred so we will not be using vrm->charged memory. Unaccount 1010 vm_unacct_memory(vrm->charged); in vrm_uncharge() 1011 vrm->charged = 0; in vrm_uncharge()
|
| H A D | mprotect.c | 703 unsigned long charged = 0; in mprotect_fixup() local 746 charged = nrpages; in mprotect_fixup() 747 if (security_vm_enough_memory_mm(mm, charged)) in mprotect_fixup() 794 vm_unacct_memory(charged); in mprotect_fixup()
|
| H A D | memcontrol.c | 155 * PAGE_SIZE bytes are charged in obj_cgroup_release() 265 * page_cgroup_ino - return inode number of the memcg a page is charged to 268 * Look up the closest online ancestor of the memory cgroup @page is charged to 269 * and return its inode number or 0 if @page is not charged to any cgroup. It 1322 * Returns the maximum amount of memory @mem can be charged with, in 2648 * Returns a pointer to the memory cgroup to which the kernel object is charged. 3133 * pre-charged bytes to satisfy the allocation. However, in obj_cgroup_charge_account() 3142 * The stock's nr_bytes may contain enough pre-charged bytes in obj_cgroup_charge_account() 3143 * to allow one less page from being charged, but we can't rely in obj_cgroup_charge_account() 3144 * on the pre-charged bytes not being changed outside of in obj_cgroup_charge_account() [all …]
|
| H A D | vma.c | 29 unsigned long charged; member 2430 map->charged = map->pglen; in __mmap_setup() 2431 map->charged -= vms->nr_accounted; in __mmap_setup() 2432 if (map->charged) { in __mmap_setup() 2433 error = security_vm_enough_memory_mm(map->mm, map->charged); in __mmap_setup() 2781 if (map.charged) in __mmap_region() 2782 vm_unacct_memory(map.charged); in __mmap_region() 3268 unsigned long charged = vma_pages(vma); in insert_vm_struct() local 3275 security_vm_enough_memory_mm(mm, charged)) in insert_vm_struct() 3297 vm_unacct_memory(charged); in insert_vm_struct()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-class-power-twl4030 | 19 be taken that battery is not over-charged.
|
| H A D | rtc-cdev | 42 replaced or charged to be able to clear the status.
|
| /linux/Documentation/admin-guide/mm/ |
| H A D | transhuge.rst | 536 allocated and charged to handle a page fault. 568 is incremented if a shmem huge page cannot be charged and instead 630 allocated and charged to handle a page fault. 678 is incremented if a shmem huge page cannot be charged and instead
|
| /linux/drivers/power/supply/ |
| H A D | intel_dc_ti_battery.c | 356 charge_finished = devm_gpiod_get_optional(dev, "charged", GPIOD_IN); in dc_ti_battery_probe() 358 return dev_err_probe(dev, PTR_ERR(charge_finished), "Getting charged GPIO\n"); in dc_ti_battery_probe()
|
| /linux/include/linux/ |
| H A D | memcontrol.h | 169 * Bucket for arbitrarily byte-sized objects charged to a memory 253 * where socket memory is accounted/charged separately. 454 * folio_memcg_charged - If a folio is charged to a memory cgroup. 457 * Returns true if folio is charged to a memory cgroup, otherwise returns false. 678 * Uncharge a folio previously charged with mem_cgroup_charge().
|
| H A D | shrinker.h | 14 * shrinkers, which have elements charged to the memcg.
|
| H A D | bpf_local_storage.h | 105 u64 mem_charge; /* Copy of mem charged to owner. Protected by "lock" */
|
| /linux/include/linux/power/ |
| H A D | charger-manager.h | 130 * Check voltage drop after the battery is fully charged.
|
| /linux/tools/testing/selftests/cgroup/ |
| H A D | test_zswap.c | 484 * charged to that cgroup. This wasn't the case before commit 490 * to zswap and verifies that the zswap pages are correctly charged.
|
| /linux/kernel/sched/ |
| H A D | core_sched.c | 268 * For larger SMT configurations, we need to scale the charged in __sched_core_account_forceidle()
|
| /linux/include/uapi/linux/ |
| H A D | taskstats.h | 130 * a tick is charged to a task's system time. So, at the end we
|
| /linux/drivers/iio/adc/ |
| H A D | ti-tsc2046.c | 305 * plates will never be completely charged. in tsc2046_adc_read_one() 374 * plates will never be completely charged. in tsc2046_adc_group_set_cmd()
|