From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx201.postini.com [74.125.245.201]) by kanga.kvack.org (Postfix) with SMTP id 6BA326B00F1 for ; Fri, 25 May 2012 13:03:13 -0400 (EDT) From: Andrea Arcangeli Subject: [PATCH 10/35] autonuma: define the autonuma flags Date: Fri, 25 May 2012 19:02:14 +0200 Message-Id: <1337965359-29725-11-git-send-email-aarcange@redhat.com> In-Reply-To: <1337965359-29725-1-git-send-email-aarcange@redhat.com> References: <1337965359-29725-1-git-send-email-aarcange@redhat.com> Sender: owner-linux-mm@kvack.org List-ID: To: linux-kernel@vger.kernel.org, linux-mm@kvack.org Cc: Hillf Danton , Dan Smith , Peter Zijlstra , Linus Torvalds , Andrew Morton , Thomas Gleixner , Ingo Molnar , Paul Turner , Suresh Siddha , Mike Galbraith , "Paul E. McKenney" , Lai Jiangshan , Bharata B Rao , Lee Schermerhorn , Rik van Riel , Johannes Weiner , Srivatsa Vaddagiri , Christoph Lameter These flags are the ones tweaked through sysfs, they control the behavior of autonuma, from enabling disabling it, to selecting various runtime options. Signed-off-by: Andrea Arcangeli --- include/linux/autonuma_flags.h | 62 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 62 insertions(+), 0 deletions(-) create mode 100644 include/linux/autonuma_flags.h diff --git a/include/linux/autonuma_flags.h b/include/linux/autonuma_flags.h new file mode 100644 index 0000000..9c702fd --- /dev/null +++ b/include/linux/autonuma_flags.h @@ -0,0 +1,62 @@ +#ifndef _LINUX_AUTONUMA_FLAGS_H +#define _LINUX_AUTONUMA_FLAGS_H + +enum autonuma_flag { + AUTONUMA_FLAG, + AUTONUMA_IMPOSSIBLE, + AUTONUMA_DEBUG_FLAG, + AUTONUMA_SCHED_LOAD_BALANCE_STRICT_FLAG, + AUTONUMA_SCHED_CLONE_RESET_FLAG, + AUTONUMA_SCHED_FORK_RESET_FLAG, + AUTONUMA_SCAN_PMD_FLAG, + AUTONUMA_SCAN_USE_WORKING_SET_FLAG, + AUTONUMA_MIGRATE_DEFER_FLAG, +}; + +extern unsigned long autonuma_flags; + +static bool inline autonuma_enabled(void) +{ + return !!test_bit(AUTONUMA_FLAG, &autonuma_flags); +} + +static bool inline autonuma_debug(void) +{ + return !!test_bit(AUTONUMA_DEBUG_FLAG, &autonuma_flags); +} + +static bool inline autonuma_sched_load_balance_strict(void) +{ + return !!test_bit(AUTONUMA_SCHED_LOAD_BALANCE_STRICT_FLAG, + &autonuma_flags); +} + +static bool inline autonuma_sched_clone_reset(void) +{ + return !!test_bit(AUTONUMA_SCHED_CLONE_RESET_FLAG, + &autonuma_flags); +} + +static bool inline autonuma_sched_fork_reset(void) +{ + return !!test_bit(AUTONUMA_SCHED_FORK_RESET_FLAG, + &autonuma_flags); +} + +static bool inline autonuma_scan_pmd(void) +{ + return !!test_bit(AUTONUMA_SCAN_PMD_FLAG, &autonuma_flags); +} + +static bool inline autonuma_scan_use_working_set(void) +{ + return !!test_bit(AUTONUMA_SCAN_USE_WORKING_SET_FLAG, + &autonuma_flags); +} + +static bool inline autonuma_migrate_defer(void) +{ + return !!test_bit(AUTONUMA_MIGRATE_DEFER_FLAG, &autonuma_flags); +} + +#endif /* _LINUX_AUTONUMA_FLAGS_H */ -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: email@kvack.org