From: Jeff Layton Date: Sat, 3 Oct 2015 12:19:57 +0000 (-0400) Subject: nfsd: move include of state.h from trace.c to trace.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=825213e59ec24110b0a0f94456db42621f928421;p=linux.git nfsd: move include of state.h from trace.c to trace.h Any file which includes trace.h will need to include state.h, even if they aren't using any state tracepoints. Ensure that we include any headers that might be needed in trace.h instead of relying on the *.c files to have the right ones. Signed-off-by: Jeff Layton Reviewed-by: Christoph Hellwig Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfsd/trace.c b/fs/nfsd/trace.c index 82f89070594c7..90967466a1e56 100644 --- a/fs/nfsd/trace.c +++ b/fs/nfsd/trace.c @@ -1,5 +1,3 @@ -#include "state.h" - #define CREATE_TRACE_POINTS #include "trace.h" diff --git a/fs/nfsd/trace.h b/fs/nfsd/trace.h index c668520c344b5..0befe762762b0 100644 --- a/fs/nfsd/trace.h +++ b/fs/nfsd/trace.h @@ -9,6 +9,8 @@ #include +#include "state.h" + DECLARE_EVENT_CLASS(nfsd_stateid_class, TP_PROTO(stateid_t *stp), TP_ARGS(stp),