Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72788c38 authored by David Rientjes's avatar David Rientjes Committed by Linus Torvalds
Browse files

oom: replace PF_OOM_ORIGIN with toggling oom_score_adj



There's a kernel-wide shortage of per-process flags, so it's always
helpful to trim one when possible without incurring a significant penalty.
 It's even more important when you're planning on adding a per- process
flag yourself, which I plan to do shortly for transparent hugepages.

PF_OOM_ORIGIN is used by ksm and swapoff to prefer current since it has a
tendency to allocate large amounts of memory and should be preferred for
killing over other tasks.  We'd rather immediately kill the task making
the errant syscall rather than penalizing an innocent task.

This patch removes PF_OOM_ORIGIN since its behavior is equivalent to
setting the process's oom_score_adj to OOM_SCORE_ADJ_MAX.

The process's old oom_score_adj is stored and then set to
OOM_SCORE_ADJ_MAX during the time it used to have PF_OOM_ORIGIN.  The old
value is then reinstated when the process should no longer be considered a
high priority for oom killing.

Signed-off-by: default avatarDavid Rientjes <rientjes@google.com>
Reviewed-by: default avatarKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Reviewed-by: default avatarMinchan Kim <minchan.kim@gmail.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Izik Eidus <ieidus@redhat.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c6a140bf
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -40,6 +40,8 @@ enum oom_constraint {
	CONSTRAINT_MEMCG,
	CONSTRAINT_MEMCG,
};
};


extern int test_set_oom_score_adj(int new_val);

extern unsigned int oom_badness(struct task_struct *p, struct mem_cgroup *mem,
extern unsigned int oom_badness(struct task_struct *p, struct mem_cgroup *mem,
			const nodemask_t *nodemask, unsigned long totalpages);
			const nodemask_t *nodemask, unsigned long totalpages);
extern int try_set_zonelist_oom(struct zonelist *zonelist, gfp_t gfp_flags);
extern int try_set_zonelist_oom(struct zonelist *zonelist, gfp_t gfp_flags);
+0 −1
Original line number Original line Diff line number Diff line
@@ -1753,7 +1753,6 @@ extern void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *
#define PF_FROZEN	0x00010000	/* frozen for system suspend */
#define PF_FROZEN	0x00010000	/* frozen for system suspend */
#define PF_FSTRANS	0x00020000	/* inside a filesystem transaction */
#define PF_FSTRANS	0x00020000	/* inside a filesystem transaction */
#define PF_KSWAPD	0x00040000	/* I am kswapd */
#define PF_KSWAPD	0x00040000	/* I am kswapd */
#define PF_OOM_ORIGIN	0x00080000	/* Allocating much memory to others */
#define PF_LESS_THROTTLE 0x00100000	/* Throttle me less: I clean memory */
#define PF_LESS_THROTTLE 0x00100000	/* Throttle me less: I clean memory */
#define PF_KTHREAD	0x00200000	/* I am a kernel thread */
#define PF_KTHREAD	0x00200000	/* I am a kernel thread */
#define PF_RANDOMIZE	0x00400000	/* randomize virtual address space */
#define PF_RANDOMIZE	0x00400000	/* randomize virtual address space */
+5 −2
Original line number Original line Diff line number Diff line
@@ -35,6 +35,7 @@
#include <linux/ksm.h>
#include <linux/ksm.h>
#include <linux/hash.h>
#include <linux/hash.h>
#include <linux/freezer.h>
#include <linux/freezer.h>
#include <linux/oom.h>


#include <asm/tlbflush.h>
#include <asm/tlbflush.h>
#include "internal.h"
#include "internal.h"
@@ -1894,9 +1895,11 @@ static ssize_t run_store(struct kobject *kobj, struct kobj_attribute *attr,
	if (ksm_run != flags) {
	if (ksm_run != flags) {
		ksm_run = flags;
		ksm_run = flags;
		if (flags & KSM_RUN_UNMERGE) {
		if (flags & KSM_RUN_UNMERGE) {
			current->flags |= PF_OOM_ORIGIN;
			int oom_score_adj;

			oom_score_adj = test_set_oom_score_adj(OOM_SCORE_ADJ_MAX);
			err = unmerge_and_remove_all_rmap_items();
			err = unmerge_and_remove_all_rmap_items();
			current->flags &= ~PF_OOM_ORIGIN;
			test_set_oom_score_adj(oom_score_adj);
			if (err) {
			if (err) {
				ksm_run = KSM_RUN_STOP;
				ksm_run = KSM_RUN_STOP;
				count = err;
				count = err;
+27 −9
Original line number Original line Diff line number Diff line
@@ -38,6 +38,33 @@ int sysctl_oom_kill_allocating_task;
int sysctl_oom_dump_tasks = 1;
int sysctl_oom_dump_tasks = 1;
static DEFINE_SPINLOCK(zone_scan_lock);
static DEFINE_SPINLOCK(zone_scan_lock);


/**
 * test_set_oom_score_adj() - set current's oom_score_adj and return old value
 * @new_val: new oom_score_adj value
 *
 * Sets the oom_score_adj value for current to @new_val with proper
 * synchronization and returns the old value.  Usually used to temporarily
 * set a value, save the old value in the caller, and then reinstate it later.
 */
int test_set_oom_score_adj(int new_val)
{
	struct sighand_struct *sighand = current->sighand;
	int old_val;

	spin_lock_irq(&sighand->siglock);
	old_val = current->signal->oom_score_adj;
	if (new_val != old_val) {
		if (new_val == OOM_SCORE_ADJ_MIN)
			atomic_inc(&current->mm->oom_disable_count);
		else if (old_val == OOM_SCORE_ADJ_MIN)
			atomic_dec(&current->mm->oom_disable_count);
		current->signal->oom_score_adj = new_val;
	}
	spin_unlock_irq(&sighand->siglock);

	return old_val;
}

#ifdef CONFIG_NUMA
#ifdef CONFIG_NUMA
/**
/**
 * has_intersects_mems_allowed() - check task eligiblity for kill
 * has_intersects_mems_allowed() - check task eligiblity for kill
@@ -154,15 +181,6 @@ unsigned int oom_badness(struct task_struct *p, struct mem_cgroup *mem,
		return 0;
		return 0;
	}
	}


	/*
	 * When the PF_OOM_ORIGIN bit is set, it indicates the task should have
	 * priority for oom killing.
	 */
	if (p->flags & PF_OOM_ORIGIN) {
		task_unlock(p);
		return 1000;
	}

	/*
	/*
	 * The memory controller may have a limit of 0 bytes, so avoid a divide
	 * The memory controller may have a limit of 0 bytes, so avoid a divide
	 * by zero, if necessary.
	 * by zero, if necessary.
+4 −2
Original line number Original line Diff line number Diff line
@@ -31,6 +31,7 @@
#include <linux/syscalls.h>
#include <linux/syscalls.h>
#include <linux/memcontrol.h>
#include <linux/memcontrol.h>
#include <linux/poll.h>
#include <linux/poll.h>
#include <linux/oom.h>


#include <asm/pgtable.h>
#include <asm/pgtable.h>
#include <asm/tlbflush.h>
#include <asm/tlbflush.h>
@@ -1555,6 +1556,7 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
	struct address_space *mapping;
	struct address_space *mapping;
	struct inode *inode;
	struct inode *inode;
	char *pathname;
	char *pathname;
	int oom_score_adj;
	int i, type, prev;
	int i, type, prev;
	int err;
	int err;


@@ -1613,9 +1615,9 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
	p->flags &= ~SWP_WRITEOK;
	p->flags &= ~SWP_WRITEOK;
	spin_unlock(&swap_lock);
	spin_unlock(&swap_lock);


	current->flags |= PF_OOM_ORIGIN;
	oom_score_adj = test_set_oom_score_adj(OOM_SCORE_ADJ_MAX);
	err = try_to_unuse(type);
	err = try_to_unuse(type);
	current->flags &= ~PF_OOM_ORIGIN;
	test_set_oom_score_adj(oom_score_adj);


	if (err) {
	if (err) {
		/*
		/*