From 929d5b43a5225be8ab64d840e6a10803fb6acd0b Mon Sep 17 00:00:00 2001 From: Matthew Ahrens Date: Tue, 16 May 2017 11:12:23 -0700 Subject: [PATCH] 8125 kmem_move tunables must not be declared static Reviewed by: Serapheim Dimitropoulos Reviewed by: Dan Kimmel Reviewed by: Prashanth Sreenivasa Reviewed by: Toomas Soome Reviewed by: Igor Kozhukhov Reviewed by: Robert Mustacchi Approved by: Robert Mustacchi --- usr/src/uts/common/os/kmem.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/usr/src/uts/common/os/kmem.c b/usr/src/uts/common/os/kmem.c index ccdbc59f21..9187b4bdeb 100644 --- a/usr/src/uts/common/os/kmem.c +++ b/usr/src/uts/common/os/kmem.c @@ -20,7 +20,7 @@ */ /* * Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved. - * Copyright (c) 2012, 2016 by Delphix. All rights reserved. + * Copyright (c) 2012, 2017 by Delphix. All rights reserved. * Copyright 2015 Nexenta Systems, Inc. All rights reserved. */ @@ -1113,10 +1113,10 @@ static struct { #endif /* KMEM_STATS */ /* consolidator knobs */ -static boolean_t kmem_move_noreap; -static boolean_t kmem_move_blocked; -static boolean_t kmem_move_fulltilt; -static boolean_t kmem_move_any_partial; +boolean_t kmem_move_noreap; +boolean_t kmem_move_blocked; +boolean_t kmem_move_fulltilt; +boolean_t kmem_move_any_partial; #ifdef DEBUG /* -- 2.11.4.GIT