[Devel] [PATCH rh7 3/5] ub: zap ub_tmpfs_respages
Vladimir Davydov
vdavydov at parallels.com
Mon Aug 31 02:17:38 PDT 2015
It is always 0 in both Vz7 and PCS6, so drop it.
Signed-off-by: Vladimir Davydov <vdavydov at parallels.com>
---
include/bc/beancounter.h | 7 -------
kernel/bc/beancounter.c | 1 -
kernel/bc/vm_pages.c | 19 -------------------
3 files changed, 27 deletions(-)
diff --git a/include/bc/beancounter.h b/include/bc/beancounter.h
index 0534c205967a..c0e88f6b6fcb 100644
--- a/include/bc/beancounter.h
+++ b/include/bc/beancounter.h
@@ -50,10 +50,6 @@
struct task_beancounter;
-struct page_private {
- unsigned long ubp_tmpfs_respages;
-};
-
struct ub_percpu_struct {
int dirty_pages;
int writeback_pages;
@@ -106,9 +102,6 @@ struct user_beancounter {
struct ratelimit_state ub_ratelimit;
- struct page_private ppriv;
-#define ub_tmpfs_respages ppriv.ubp_tmpfs_respages
-
atomic_long_t dirty_pages;
atomic_long_t writeback_pages;
atomic_long_t wb_requests;
diff --git a/kernel/bc/beancounter.c b/kernel/bc/beancounter.c
index 71d2aa5527cd..ee3a6f761965 100644
--- a/kernel/bc/beancounter.c
+++ b/kernel/bc/beancounter.c
@@ -521,7 +521,6 @@ static inline int bc_verify_held(struct user_beancounter *ub)
__ub_stat_get(ub, dirty_pages));
clean &= verify_res(ub, "writeback_pages",
__ub_stat_get(ub, writeback_pages));
- clean &= verify_res(ub, "tmpfs_respages", ub->ub_tmpfs_respages);
return clean;
}
diff --git a/kernel/bc/vm_pages.c b/kernel/bc/vm_pages.c
index 23e874237206..7529899538a9 100644
--- a/kernel/bc/vm_pages.c
+++ b/kernel/bc/vm_pages.c
@@ -119,22 +119,6 @@ void ub_lockedshm_uncharge(struct shmem_inode_info *shi, unsigned long size)
uncharge_beancounter(ub, UB_LOCKEDPAGES, size >> PAGE_SHIFT);
}
-static inline void do_ub_tmpfs_respages_sub(struct user_beancounter *ub,
- unsigned long size)
-{
- unsigned long flags;
-
- spin_lock_irqsave(&ub->ub_lock, flags);
- /* catch possible overflow */
- if (ub->ub_tmpfs_respages < size) {
- uncharge_warn(ub, "tmpfs_respages",
- size, ub->ub_tmpfs_respages);
- size = ub->ub_tmpfs_respages;
- }
- ub->ub_tmpfs_respages -= size;
- spin_unlock_irqrestore(&ub->ub_lock, flags);
-}
-
static int bc_fill_sysinfo(struct user_beancounter *ub,
unsigned long meminfo_val, struct sysinfo *si)
{
@@ -269,9 +253,6 @@ static int bc_vmaux_show(struct seq_file *f, void *v)
ub_sync_memcg(ub);
- seq_printf(f, bc_proc_lu_fmt, "tmpfs_respages",
- ub->ub_tmpfs_respages);
-
seq_printf(f, bc_proc_lu_fmt, "ram", ub->ub_parms[UB_PHYSPAGES].held);
return 0;
--
2.1.4
More information about the Devel
mailing list