svn commit: r281922 - head/usr.bin/nfsstat

Eric van Gyzen vangyzen at FreeBSD.org
Fri Apr 24 15:17:45 UTC 2015


On 04/24/2015 10:33, John Baldwin wrote:
> On Friday, April 24, 2015 02:31:31 PM Sergey Kandaurov wrote:
>> On 24 April 2015 at 10:58, Edward Tomasz Napierala <trasz at freebsd.org> wrote:
>>> Author: trasz
>>> Date: Fri Apr 24 07:57:59 2015
>>> New Revision: 281922
>>> URL: https://svnweb.freebsd.org/changeset/base/281922
>>>
>>> Log:
>>>   Make nfsstat(1) build with WARNS=6.
>>>
>>>   Sponsored by: The FreeBSD Foundation
>>>
>>> Modified:
>>>   head/usr.bin/nfsstat/Makefile
>>>   head/usr.bin/nfsstat/nfsstat.c
>>>
>>> Modified: head/usr.bin/nfsstat/Makefile
>>> ==============================================================================
>>> --- head/usr.bin/nfsstat/Makefile       Fri Apr 24 07:52:21 2015        (r281921)
>>> +++ head/usr.bin/nfsstat/Makefile       Fri Apr 24 07:57:59 2015        (r281922)
>>> @@ -6,6 +6,4 @@ CFLAGS+=-DNFS
>>>
>>>  LIBADD=        kvm
>>>
>>> -WARNS?=        3
>>> -
>>>  .include <bsd.prog.mk>
>>>
>>> Modified: head/usr.bin/nfsstat/nfsstat.c
>>> ==============================================================================
>>> --- head/usr.bin/nfsstat/nfsstat.c      Fri Apr 24 07:52:21 2015        (r281921)
>>> +++ head/usr.bin/nfsstat/nfsstat.c      Fri Apr 24 07:57:59 2015        (r281922)
>>> @@ -70,15 +70,6 @@ static const char rcsid[] =
>>>  #include <paths.h>
>>>  #include <err.h>
>>>
>>> -struct nlist nl[] = {
>>> -#define        N_NFSSTAT       0
>>> -       { .n_name = "nfsstats" },
>>> -#define        N_NFSRVSTAT     1
>>> -       { .n_name = "nfsrvstats" },
>>> -       { .n_name = NULL },
>>> -};
>>> -kvm_t *kd;
>>> -
>>>  static int widemode = 0;
>>>  static int zflag = 0;
>>>  static int printtitle = 1;
>>>
>>
>> Now that nfsstat no longer uses kvm to extract statistics, it could be
>> further trimmed.
>> - no longer link with kvm
>> - un-document -M/-N options but still kept (?) for backward compatibility
>> - cleanup from the previous sysctl/kvm usage.
> 
> If these are just global structures in the kernel it would be nice to keep
> -N/-M support for use in crash dump reporting.  This just broke crashinfo
> (again), so please either restore KVM support for crash reporting, or
> remove nfsstat from crashinfo.

...or implement debugger scripts that provide similar functionality, and call those from crashinfo.

Eric


More information about the svn-src-all mailing list