The following patch fixes some simple compile warnings. --rusty Index: src/nm.c ==================================================================--- src/nm.c (revision 738) +++ src/nm.c (working copy) @@ -39,6 +39,7 @@ void ocfs_process_vote_worker(void *val); +#ifdef VERBOSE_PROCESS_VOTE static const char *process_vote_strings[] = { "INVALID_REQUEST", // reply with a NO vote "UPDATE_OIN_INODE", // update both oin and inode @@ -51,6 +52,7 @@ "REMASTER_THIS", // remaster lock to me "REMASTER_REQUESTOR" // remaster lock to requestor }; +#endif /* * ocfs_recv_thread() @@ -228,7 +230,8 @@ int status = 0; __u8 *buffer = NULL; ocfs_publish *publish; - __u32 i, j; + __u32 i; + unsigned long j; __u32 highest_vote_node; __u64 offset = 0; __u32 num_nodes = 0; Index: src/file.c ==================================================================--- src/file.c (revision 738) +++ src/file.c (working copy) @@ -347,7 +347,9 @@ ocfs_super * osb; ocfs_inode *oin = NULL; struct dentry *dentry; +#ifdef DO_PARENT_INODE_INC struct inode *parent; +#endif bool last_close = false; LOG_ENTRY_ARGS ("(0x%08x, 0x%08x, '%*s')\n", inode, file,
On Mon, Mar 01, 2004 at 09:24:45AM -0800, Rusty Lynch wrote:> The following patch fixes some simple compile warnings. > > --rustyRecent tree changes removed one of the compile warnings (the one for an unused variable named parent.) Here is the patch recreated against this mornings svn tree. Index: src/nm.c ==================================================================--- src/nm.c (revision 744) +++ src/nm.c (working copy) @@ -39,6 +39,7 @@ void ocfs_process_vote_worker(void *val); +#ifdef VERBOSE_PROCESS_VOTE static const char *process_vote_strings[] = { "INVALID_REQUEST", // reply with a NO vote "UPDATE_OIN_INODE", // update both oin and inode @@ -51,6 +52,7 @@ "REMASTER_THIS", // remaster lock to me "REMASTER_REQUESTOR" // remaster lock to requestor }; +#endif /* * ocfs_recv_thread() @@ -228,7 +230,8 @@ int status = 0; __u8 *buffer = NULL; ocfs_publish *publish; - __u32 i, j; + __u32 i; + unsigned long j; __u32 highest_vote_node; __u64 offset = 0; __u32 num_nodes = 0;
On Tue, Mar 02, 2004 at 08:24:48AM -0800, Rusty Lynch wrote:> On Mon, Mar 01, 2004 at 09:24:45AM -0800, Rusty Lynch wrote: > > The following patch fixes some simple compile warnings. > > > > --rusty > > Recent tree changes removed one of the compile warnings (the > one for an unused variable named parent.) Here is the patch > recreated against this mornings svn tree.Yep, I put the rest of the patch in today :) --Mark -- Mark Fasheh Software Developer, Oracle Corp mark.fasheh@oracle.com