Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/fs/nfs/nfsdport.h 217063 2011-01-06 19:50:11Z rmacklem $
---
> * $FreeBSD: head/sys/fs/nfs/nfsdport.h 224086 2011-07-16 08:51:09Z zack $
59a60,75
> /*
> * These are NO-OPS for BSD until Isilon upstreams EXITCODE support.
> * EXITCODE is an in-memory ring buffer that holds the routines failing status.
> * This is a valuable tool to use when debugging and analyzing issues.
> * In addition to recording a routine's failing status, it offers
> * logging of routines for call stack tracing.
> * EXITCODE should be used only in routines that return a true errno value, as
> * that value will be formatted to a displayable errno string. Routines that
> * return regular int status that are not true errno should not set EXITCODE.
> * If you want to log routine tracing, you can add EXITCODE(0) to any routine.
> * NFS extended the EXITCODE with EXITCODE2 to record either the routine's
> * exit errno status or the nd_repstat.
> */
> #define NFSEXITCODE(error)
> #define NFSEXITCODE2(error, nd)
>