From 204e00257a01be7139785a8221d8d0b6d72977e4 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 3 Jul 2019 18:56:13 +0000 Subject: [PATCH] xlat: rename mempolicyflags to get_mempolicy_flags The former name was ambiguous. * xlat/mempolicyflags.in: Rename to xlat/get_mempolicy_flags.in; all users updated. --- numa.c | 4 ++-- xlat/{mempolicyflags.in => get_mempolicy_flags.in} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename xlat/{mempolicyflags.in => get_mempolicy_flags.in} (100%) diff --git a/numa.c b/numa.c index 4434f5d2..04a048bb 100644 --- a/numa.c +++ b/numa.c @@ -78,7 +78,7 @@ SYS_FUNC(set_mempolicy) return RVAL_DECODED; } -#include "xlat/mempolicyflags.h" +#include "xlat/get_mempolicy_flags.h" SYS_FUNC(get_mempolicy) { @@ -94,7 +94,7 @@ SYS_FUNC(get_mempolicy) tprintf(", %" PRI_klu ", ", tcp->u_arg[2]); printaddr(tcp->u_arg[3]); tprints(", "); - printflags64(mempolicyflags, tcp->u_arg[4], "MPOL_???"); + printflags64(get_mempolicy_flags, tcp->u_arg[4], "MPOL_???"); } return 0; } diff --git a/xlat/mempolicyflags.in b/xlat/get_mempolicy_flags.in similarity index 100% rename from xlat/mempolicyflags.in rename to xlat/get_mempolicy_flags.in -- 2.40.0