public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* Review: Fix inverted quiet mount logic
@ 2006-11-22  4:46 David Chinner
  2006-11-22  4:51 ` Timothy Shimmin
  2006-11-22  5:15 ` Eric Sandeen
  0 siblings, 2 replies; 4+ messages in thread
From: David Chinner @ 2006-11-22  4:46 UTC (permalink / raw)
  To: xfs-dev; +Cc: xfs


Simple problem Noticed by Eric Sandeen at about the same time I did
- we are not getting error messages in dmesg when certain checks
fail during mount.  Turns out the XFS_MFSI_QUIET flag usage is
inverted, so we suppress messages when we should be noisy and
shout when we should be silent....

Cheers,

Dave.
-- 
Dave Chinner
Principal Engineer
SGI Australian Software Group

---
 fs/xfs/xfs_error.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: 2.6.x-xfs-new/fs/xfs/xfs_error.h
===================================================================
--- 2.6.x-xfs-new.orig/fs/xfs/xfs_error.h	2006-10-17 12:17:25.000000000 +1000
+++ 2.6.x-xfs-new/fs/xfs/xfs_error.h	2006-11-16 09:45:03.444451972 +1100
@@ -180,6 +180,6 @@ extern void xfs_fs_cmn_err(int level, st
 	xfs_fs_cmn_err(level, mp, fmt "  Unmount and run xfs_repair.", ## args)
 
 #define xfs_fs_mount_cmn_err(f, fmt, args...) \
-	((f & XFS_MFSI_QUIET)? cmn_err(CE_WARN, "XFS: " fmt, ## args) : (void)0)
+	((f & XFS_MFSI_QUIET)? (void)0 : cmn_err(CE_WARN, "XFS: " fmt, ## args))
 
 #endif	/* __XFS_ERROR_H__ */

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Review: Fix inverted quiet mount logic
  2006-11-22  4:46 Review: Fix inverted quiet mount logic David Chinner
@ 2006-11-22  4:51 ` Timothy Shimmin
  2006-11-22  5:02   ` David Chatterton
  2006-11-22  5:15 ` Eric Sandeen
  1 sibling, 1 reply; 4+ messages in thread
From: Timothy Shimmin @ 2006-11-22  4:51 UTC (permalink / raw)
  To: David Chinner, xfs-dev; +Cc: xfs

Add me to the reviewer list :)
--Tim

--On 22 November 2006 3:46:56 PM +1100 David Chinner <dgc@sgi.com> wrote:

>
> Simple problem Noticed by Eric Sandeen at about the same time I did
> - we are not getting error messages in dmesg when certain checks
> fail during mount.  Turns out the XFS_MFSI_QUIET flag usage is
> inverted, so we suppress messages when we should be noisy and
> shout when we should be silent....
>
> Cheers,
>
> Dave.
> --
> Dave Chinner
> Principal Engineer
> SGI Australian Software Group
>
> ---
>  fs/xfs/xfs_error.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> Index: 2.6.x-xfs-new/fs/xfs/xfs_error.h
> ===================================================================
> --- 2.6.x-xfs-new.orig/fs/xfs/xfs_error.h	2006-10-17 12:17:25.000000000 +1000
> +++ 2.6.x-xfs-new/fs/xfs/xfs_error.h	2006-11-16 09:45:03.444451972 +1100
> @@ -180,6 +180,6 @@ extern void xfs_fs_cmn_err(int level, st
>  	xfs_fs_cmn_err(level, mp, fmt "  Unmount and run xfs_repair.", ## args)
>
>  #define xfs_fs_mount_cmn_err(f, fmt, args...) \
> -	((f & XFS_MFSI_QUIET)? cmn_err(CE_WARN, "XFS: " fmt, ## args) : (void)0)
> +	((f & XFS_MFSI_QUIET)? (void)0 : cmn_err(CE_WARN, "XFS: " fmt, ## args))
>
>  #endif	/* __XFS_ERROR_H__ */

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Review: Fix inverted quiet mount logic
  2006-11-22  4:51 ` Timothy Shimmin
@ 2006-11-22  5:02   ` David Chatterton
  0 siblings, 0 replies; 4+ messages in thread
From: David Chatterton @ 2006-11-22  5:02 UTC (permalink / raw)
  To: Timothy Shimmin; +Cc: David Chinner, xfs-dev, xfs

One of the bugs we found on the training course that I had not raised yet...thanks!

Timothy Shimmin wrote:
> Add me to the reviewer list :)
> --Tim
> 
> --On 22 November 2006 3:46:56 PM +1100 David Chinner <dgc@sgi.com> wrote:
> 
>>
>> Simple problem Noticed by Eric Sandeen at about the same time I did
>> - we are not getting error messages in dmesg when certain checks
>> fail during mount.  Turns out the XFS_MFSI_QUIET flag usage is
>> inverted, so we suppress messages when we should be noisy and
>> shout when we should be silent....
>>
>> Cheers,
>>
>> Dave.
>> -- 
>> Dave Chinner
>> Principal Engineer
>> SGI Australian Software Group
>>
>> ---
>>  fs/xfs/xfs_error.h |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> Index: 2.6.x-xfs-new/fs/xfs/xfs_error.h
>> ===================================================================
>> --- 2.6.x-xfs-new.orig/fs/xfs/xfs_error.h    2006-10-17
>> 12:17:25.000000000 +1000
>> +++ 2.6.x-xfs-new/fs/xfs/xfs_error.h    2006-11-16 09:45:03.444451972
>> +1100
>> @@ -180,6 +180,6 @@ extern void xfs_fs_cmn_err(int level, st
>>      xfs_fs_cmn_err(level, mp, fmt "  Unmount and run xfs_repair.", ##
>> args)
>>
>>  #define xfs_fs_mount_cmn_err(f, fmt, args...) \
>> -    ((f & XFS_MFSI_QUIET)? cmn_err(CE_WARN, "XFS: " fmt, ## args) :
>> (void)0)
>> +    ((f & XFS_MFSI_QUIET)? (void)0 : cmn_err(CE_WARN, "XFS: " fmt, ##
>> args))
>>
>>  #endif    /* __XFS_ERROR_H__ */
> 
> 
> 
> 

-- 
David Chatterton
XFS Engineering Manager
SGI Australia

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Review: Fix inverted quiet mount logic
  2006-11-22  4:46 Review: Fix inverted quiet mount logic David Chinner
  2006-11-22  4:51 ` Timothy Shimmin
@ 2006-11-22  5:15 ` Eric Sandeen
  1 sibling, 0 replies; 4+ messages in thread
From: Eric Sandeen @ 2006-11-22  5:15 UTC (permalink / raw)
  To: David Chinner; +Cc: xfs-dev, xfs

David Chinner wrote:
> Simple problem Noticed by Eric Sandeen at about the same time I did
> - we are not getting error messages in dmesg when certain checks
> fail during mount.  Turns out the XFS_MFSI_QUIET flag usage is
> inverted, so we suppress messages when we should be noisy and
> shout when we should be silent....
> 
> Cheers,
> 
> Dave.

ACK.

-Eric

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-11-22  5:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-22  4:46 Review: Fix inverted quiet mount logic David Chinner
2006-11-22  4:51 ` Timothy Shimmin
2006-11-22  5:02   ` David Chatterton
2006-11-22  5:15 ` Eric Sandeen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox