Home
last modified time | relevance | path

Searched refs:failcnt (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/Documentation/admin-guide/cgroup-v1/
H A Dhugetlb.rst27 …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
71 hugetlb.<hugepagesize>.failcnt
88 hugetlb.<hugepagesize>.rsvd.failcnt
H A Dmemory.rst75 memory.failcnt show the number of memory usage hits limits
76 memory.memsw.failcnt show the number of memory+Swap hits limits
103 memory.kmem.failcnt show the number of kernel memory usage
109 memory.kmem.tcp.failcnt show the number of tcp buf memory usage
448 The memory.failcnt field gives the number of times that the cgroup limit was
618 5.4 failcnt
621 A memory cgroup provides memory.failcnt and memory.memsw.failcnt files.
622 This failcnt(== failure count) shows the number of times that a usage counter
623 hit its limit. When a memory cgroup hits a limit, failcnt increases and
626 You can reset failcnt by writing 0 to failcnt file::
[all …]
/openbmc/linux/include/linux/
H A Dpage_counter.h29 unsigned long failcnt; member
/openbmc/linux/mm/
H A Dhugetlb_cgroup.c544 return counter->failcnt; in hugetlb_cgroup_read_u64()
546 return rsvd_counter->failcnt; in hugetlb_cgroup_read_u64()
662 counter->failcnt = 0; in hugetlb_cgroup_reset()
665 rsvd_counter->failcnt = 0; in hugetlb_cgroup_reset()
H A Dpage_counter.c127 data_race(c->failcnt++); in page_counter_try_charge()
H A Dmemcontrol.c1669 K((u64)READ_ONCE(memcg->memory.max)), memcg->memory.failcnt); in mem_cgroup_print_oom_meminfo()
1673 K((u64)READ_ONCE(memcg->swap.max)), memcg->swap.failcnt); in mem_cgroup_print_oom_meminfo()
1677 K((u64)memcg->memsw.max), memcg->memsw.failcnt); in mem_cgroup_print_oom_meminfo()
1680 K((u64)memcg->kmem.max), memcg->kmem.failcnt); in mem_cgroup_print_oom_meminfo()
3730 return counter->failcnt; in mem_cgroup_read_u64()
3923 counter->failcnt = 0; in mem_cgroup_reset()
/openbmc/linux/drivers/message/fusion/
H A Dmptbase.c4654 int failcnt = 0; in mpt_handshake_req_reply_wait() local
4678 failcnt++; in mpt_handshake_req_reply_wait()
4681 ioc->name, reqBytes, t, failcnt ? " - MISSING DOORBELL HANDSHAKE!" : "")); in mpt_handshake_req_reply_wait()
4693 if (!failcnt && (t = WaitForDoorbellAck(ioc, 5, sleepFlag)) < 0) in mpt_handshake_req_reply_wait()
4694 failcnt++; in mpt_handshake_req_reply_wait()
4696 if (!failcnt) { in mpt_handshake_req_reply_wait()
4704 for (ii = 0; !failcnt && ii < reqBytes/4; ii++) { in mpt_handshake_req_reply_wait()
4712 failcnt++; in mpt_handshake_req_reply_wait()
4719 ioc->name, t, failcnt ? " - MISSING DOORBELL ACK!" : "")); in mpt_handshake_req_reply_wait()
4724 if (!failcnt && (t = WaitForDoorbellReply(ioc, maxwait, sleepFlag)) < 0) in mpt_handshake_req_reply_wait()
[all …]
/openbmc/linux/drivers/nvme/host/
H A Dfc.c3749 int failcnt = 0; in nvme_fc_nvme_discovery_store() local
3769 if (failcnt++ < DISCOVERY_MAX_FAIL) in nvme_fc_nvme_discovery_store()
/openbmc/linux/tools/power/pm-graph/
H A Dsleepgraph.py7110 failcnt, ret = 0, 0 variable
7133 failcnt = 0 if not ret else failcnt + 1 variable
7134 if sysvals.maxfail > 0 and failcnt >= sysvals.maxfail: