From e3f2d2262fed12f0f6b77c5ac1c4072d82f1e754 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Mon, 19 Mar 2007 10:22:22 +1100 Subject: Make warning about host matching multiple exports more helpful. 1/ only warn once per export, as it could get too noisy. 2/ make it a little clearer why this might be a problem. --- support/include/exportfs.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'support/include/exportfs.h') diff --git a/support/include/exportfs.h b/support/include/exportfs.h index 458611b..431b5ce 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -47,7 +47,9 @@ typedef struct mexport { int m_exported; /* known to knfsd. -1 means not sure */ int m_xtabent : 1, /* xtab entry exists */ m_mayexport: 1, /* derived from xtabbed */ - m_changed : 1; /* options (may) have changed */ + m_changed : 1, /* options (may) have changed */ + m_warned : 1; /* warned about multiple exports + * matching one client */ } nfs_export; extern nfs_client * clientlist[MCL_MAXTYPES]; -- cgit