Searched refs:failcnt (Results 1 – 10 of 10) sorted by relevance
/linux-6.12.1/Documentation/admin-guide/cgroup-v1/ |
D | hugetlb.rst | 27 …hugetlb.<hugepagesize>.rsvd.failcnt # show the number of allocation failure due … 31 …hugetlb.<hugepagesize>.failcnt # show the number of allocation failure due … 41 hugetlb.1GB.failcnt 45 hugetlb.1GB.rsvd.failcnt 50 hugetlb.64KB.failcnt 54 hugetlb.64KB.rsvd.failcnt 59 hugetlb.32MB.failcnt 63 hugetlb.32MB.rsvd.failcnt 73 hugetlb.<hugepagesize>.failcnt 92 hugetlb.<hugepagesize>.rsvd.failcnt
|
D | memory.rst | 75 memory.failcnt show the number of memory usage hits limits 76 memory.memsw.failcnt show the number of memory+Swap hits limits 109 memory.kmem.failcnt show the number of kernel memory usage 119 memory.kmem.tcp.failcnt show the number of tcp buf memory usage 462 The memory.failcnt field gives the number of times that the cgroup limit was 633 5.4 failcnt 636 A memory cgroup provides memory.failcnt and memory.memsw.failcnt files. 637 This failcnt(== failure count) shows the number of times that a usage counter 638 hit its limit. When a memory cgroup hits a limit, failcnt increases and 641 You can reset failcnt by writing 0 to failcnt file:: [all …]
|
/linux-6.12.1/include/linux/ |
D | page_counter.h | 31 unsigned long failcnt; member
|
/linux-6.12.1/mm/ |
D | hugetlb_cgroup.c | 545 return counter->failcnt; in hugetlb_cgroup_read_u64() 547 return rsvd_counter->failcnt; in hugetlb_cgroup_read_u64() 663 counter->failcnt = 0; in hugetlb_cgroup_reset() 666 rsvd_counter->failcnt = 0; in hugetlb_cgroup_reset()
|
D | page_counter.c | 149 data_race(c->failcnt++); in page_counter_try_charge()
|
D | memcontrol.c | 1530 K((u64)READ_ONCE(memcg->memory.max)), memcg->memory.failcnt); in mem_cgroup_print_oom_meminfo() 1534 K((u64)READ_ONCE(memcg->swap.max)), memcg->swap.failcnt); in mem_cgroup_print_oom_meminfo() 1539 K((u64)memcg->memsw.max), memcg->memsw.failcnt); in mem_cgroup_print_oom_meminfo() 1542 K((u64)memcg->kmem.max), memcg->kmem.failcnt); in mem_cgroup_print_oom_meminfo()
|
D | memcontrol-v1.c | 2478 return counter->failcnt; in mem_cgroup_read_u64() 2618 counter->failcnt = 0; in mem_cgroup_reset()
|
/linux-6.12.1/drivers/message/fusion/ |
D | mptbase.c | 4650 int failcnt = 0; in mpt_handshake_req_reply_wait() local 4674 failcnt++; in mpt_handshake_req_reply_wait() 4677 ioc->name, reqBytes, t, failcnt ? " - MISSING DOORBELL HANDSHAKE!" : "")); in mpt_handshake_req_reply_wait() 4689 if (!failcnt && (t = WaitForDoorbellAck(ioc, 5, sleepFlag)) < 0) in mpt_handshake_req_reply_wait() 4690 failcnt++; in mpt_handshake_req_reply_wait() 4692 if (!failcnt) { in mpt_handshake_req_reply_wait() 4700 for (ii = 0; !failcnt && ii < reqBytes/4; ii++) { in mpt_handshake_req_reply_wait() 4708 failcnt++; in mpt_handshake_req_reply_wait() 4715 ioc->name, t, failcnt ? " - MISSING DOORBELL ACK!" : "")); in mpt_handshake_req_reply_wait() 4720 if (!failcnt && (t = WaitForDoorbellReply(ioc, maxwait, sleepFlag)) < 0) in mpt_handshake_req_reply_wait() [all …]
|
/linux-6.12.1/drivers/nvme/host/ |
D | fc.c | 3767 int failcnt = 0; in nvme_fc_nvme_discovery_store() local 3787 if (failcnt++ < DISCOVERY_MAX_FAIL) in nvme_fc_nvme_discovery_store()
|
/linux-6.12.1/tools/power/pm-graph/ |
D | sleepgraph.py | 7138 failcnt, ret = 0, 0 variable 7161 failcnt = 0 if not ret else failcnt + 1 variable 7162 if sysvals.maxfail > 0 and failcnt >= sysvals.maxfail:
|