From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [RFC PATCH] ksm: fasthash() can be static Date: Sun, 31 Dec 2017 20:37:10 +0800 Message-ID: <20171231123710.GA117422@lkp-hsx03> References: <20171229095241.23345-1-nefelim4ag@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kbuild-all@01.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, kvm@vger.kernel.org, Timofey Titovets , leesioh , Andrea Arcangeli To: Timofey Titovets Return-path: Content-Disposition: inline In-Reply-To: <20171229095241.23345-1-nefelim4ag@gmail.com> Sender: owner-linux-mm@kvack.org List-Id: kvm.vger.kernel.org Fixes: 038adb295b0c ("ksm: replace jhash2 with faster hash") Signed-off-by: Fengguang Wu --- ksm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/ksm.c b/mm/ksm.c index ac2aa49..1c2619cbc3 100644 --- a/mm/ksm.c +++ b/mm/ksm.c @@ -374,7 +374,7 @@ static void __init choice_fastest_hash(void) kfree(page); } -unsigned long fasthash(const void *input, size_t length) +static unsigned long fasthash(const void *input, size_t length) { unsigned long checksum = 0; -- 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/ . Don't email: email@kvack.org