From 89e60556065c6e3dc7a8447cdba5a8fed1d19ea4 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 3 May 2011 16:25:20 +0200 Subject: s3-includes: move enum flush_reason_enum to smb.h Guenther --- source3/include/includes.h | 16 ---------------- source3/include/smb.h | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) (limited to 'source3') diff --git a/source3/include/includes.h b/source3/include/includes.h index 503299842b..6be6b01133 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -542,22 +542,6 @@ typedef char fstring[FSTRING_LEN]; #include "../lib/util/smb_threads.h" #include "../lib/util/smb_threads_internal.h" -/* - * Reasons for cache flush. - */ - -enum flush_reason_enum { - SEEK_FLUSH, - READ_FLUSH, - WRITE_FLUSH, - READRAW_FLUSH, - OPLOCK_RELEASE_FLUSH, - CLOSE_FLUSH, - SYNC_FLUSH, - SIZECHANGE_FLUSH, - /* NUM_FLUSH_REASONS must remain the last value in the enumeration. */ - NUM_FLUSH_REASONS}; - /***** prototypes *****/ #ifndef NO_PROTO_H #include "proto.h" diff --git a/source3/include/smb.h b/source3/include/smb.h index 827a9db018..57de387661 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1701,4 +1701,20 @@ struct deferred_open_record; /* Used inside aio code. */ struct aio_extra; +/* + * Reasons for cache flush. + */ + +enum flush_reason_enum { + SEEK_FLUSH, + READ_FLUSH, + WRITE_FLUSH, + READRAW_FLUSH, + OPLOCK_RELEASE_FLUSH, + CLOSE_FLUSH, + SYNC_FLUSH, + SIZECHANGE_FLUSH, + /* NUM_FLUSH_REASONS must remain the last value in the enumeration. */ + NUM_FLUSH_REASONS}; + #endif /* _SMB_H */ -- cgit