Replace .h files included from old NFS directories with the new NFS ones.

Prior to this patch, nfsstat.c includes files from sys/nfs, sys/nfsclient
and sys/nfsserver. These .h files (particularily the ones in sys/nfsclient
and sys/nfsserver) are from the old NFS code and should eventually be
deprecated/removed.
This patch changes nfsstat.c to include files from the new/current NFS
code instead of the old ones in preparation for eventual removal.
This commit is contained in:
Rick Macklem 2019-12-31 00:07:10 +00:00
parent 79085fd3b9
commit 29001a810a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356213

View File

@ -79,11 +79,9 @@ static const char rcsid[] =
#include <sys/mount.h>
#include <sys/time.h>
#include <sys/sysctl.h>
#include <nfs/nfsproto.h>
#include <nfsclient/nfs.h>
#include <nfsserver/nfs.h>
#include <nfs/nfssvc.h>
#include <fs/nfs/nfsproto.h>
#include <fs/nfs/nfsport.h>
#include <signal.h>