Home
last modified time | relevance | path

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

/linux-6.15/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
73 hugetlb.<hugepagesize>.failcnt
92 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
108 memory.kmem.failcnt show the number of kernel memory usage
118 memory.kmem.tcp.failcnt show the number of tcp buf memory usage
457 The memory.failcnt field gives the number of times that the cgroup limit was
632 5.4 failcnt
635 A memory cgroup provides memory.failcnt and memory.memsw.failcnt files.
636 This failcnt(== failure count) shows the number of times that a usage counter
637 hit its limit. When a memory cgroup hits a limit, failcnt increases and
640 You can reset failcnt by writing 0 to failcnt file::
[all …]
/linux-6.15/include/linux/
H A Dpage_counter.h16 unsigned long failcnt; /* v1-only field */ member
/linux-6.15/mm/
H A Dhugetlb_cgroup.c541 return counter->failcnt; in hugetlb_cgroup_read_u64()
543 return rsvd_counter->failcnt; in hugetlb_cgroup_read_u64()
659 counter->failcnt = 0; in hugetlb_cgroup_reset()
662 rsvd_counter->failcnt = 0; in hugetlb_cgroup_reset()
H A Dpage_counter.c151 data_race(c->failcnt++); in page_counter_try_charge()
H A Dmemcontrol-v1.c1585 return counter->failcnt; in mem_cgroup_read_u64()
1725 counter->failcnt = 0; in mem_cgroup_reset()
H A Dmemcontrol.c1587 memory_failcnt = memcg->memory.failcnt; in mem_cgroup_print_oom_meminfo()
1601 K((u64)memcg->memsw.max), memcg->memsw.failcnt); in mem_cgroup_print_oom_meminfo()
1604 K((u64)memcg->kmem.max), memcg->kmem.failcnt); in mem_cgroup_print_oom_meminfo()
/linux-6.15/drivers/message/fusion/
H A Dmptbase.c4650 int failcnt = 0; in mpt_handshake_req_reply_wait() local
4674 failcnt++; in mpt_handshake_req_reply_wait()
4690 failcnt++; in mpt_handshake_req_reply_wait()
4692 if (!failcnt) { in mpt_handshake_req_reply_wait()
4708 failcnt++; in mpt_handshake_req_reply_wait()
4721 failcnt++; in mpt_handshake_req_reply_wait()
4868 failcnt++; in WaitForDoorbellReply()
4873 failcnt++; in WaitForDoorbellReply()
4890 failcnt++; in WaitForDoorbellReply()
4899 failcnt++; in WaitForDoorbellReply()
[all …]
/linux-6.15/drivers/nvme/host/
H A Dfc.c3726 int failcnt = 0; in nvme_fc_nvme_discovery_store() local
3746 if (failcnt++ < DISCOVERY_MAX_FAIL) in nvme_fc_nvme_discovery_store()
/linux-6.15/tools/power/pm-graph/
H A Dsleepgraph.py7167 failcnt, ret = 0, 0 variable
7190 failcnt = 0 if not ret else failcnt + 1 variable
7191 if sysvals.maxfail > 0 and failcnt >= sysvals.maxfail: