changeset 13799:0b5d8823b20a

3133 nfs4: remove static for nfs4_max_xxx Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Richard Lowe <richlowe@richlowe.net>
author Vitaliy Gusev <gusev.vitaliy@nexenta.com>
date Wed, 29 Aug 2012 01:06:55 +0000
parents 2170bf12ab3f
children 89bb108e9ab6
files usr/src/uts/common/fs/nfs/nfs4_common.c
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/usr/src/uts/common/fs/nfs/nfs4_common.c	Tue Aug 28 20:28:15 2012 -0500
+++ b/usr/src/uts/common/fs/nfs/nfs4_common.c	Wed Aug 29 01:06:55 2012 +0000
@@ -20,6 +20,8 @@
  */
 /*
  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
+ *
+ * Copyright 2011, 2012 Nexenta Systems, Inc. All rights reserved.
  */
 
 /*
@@ -58,9 +60,9 @@
 	&vfw4
 };
 
-static uint_t nfs4_max_transfer_size = 32 * 1024;
-static uint_t nfs4_max_transfer_size_cots = 1024 * 1024;
-static uint_t nfs4_max_transfer_size_rdma = 1024 * 1024;
+uint_t nfs4_max_transfer_size = 32 * 1024;
+uint_t nfs4_max_transfer_size_cots = 1024 * 1024;
+uint_t nfs4_max_transfer_size_rdma = 1024 * 1024;
 
 int
 nfs4tsize(void)