diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-12-17 12:27:36 -0500 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-12-22 02:02:01 -0500 |
commit | efc557570dc99b46e46a7be51c3c7402b485e829 (patch) | |
tree | faba8c63e6bcf798ab76f7da1fcb035ece445700 /fs/xfs/support/debug.h | |
parent | 9f6c92b9cc2fd41d6c7b493be5637cc5b5659880 (diff) |
[XFS] avoid memory allocations in xfs_fs_vcmn_err
xfs_fs_vcmn_err can be called under a spinlock, but does a sleeping memory
allocation to create buffer for it's internal sprintf. Fortunately it's
the only caller of icmn_err, so we can merge the two and have one single
static buffer and spinlock protecting it. While we're at it make sure
we proper __attribute__ format annotations so that the compiler can detect
mismatched format strings.
Reported-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eric Sandeen <sandeen@sandeen.net>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/support/debug.h')
-rw-r--r-- | fs/xfs/support/debug.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/support/debug.h b/fs/xfs/support/debug.h index 75845f950814..6f4fd37c67af 100644 --- a/fs/xfs/support/debug.h +++ b/fs/xfs/support/debug.h | |||
@@ -27,8 +27,6 @@ | |||
27 | #define CE_ALERT 1 /* alert */ | 27 | #define CE_ALERT 1 /* alert */ |
28 | #define CE_PANIC 0 /* panic */ | 28 | #define CE_PANIC 0 /* panic */ |
29 | 29 | ||
30 | extern void icmn_err(int, char *, va_list) | ||
31 | __attribute__ ((format (printf, 2, 0))); | ||
32 | extern void cmn_err(int, char *, ...) | 30 | extern void cmn_err(int, char *, ...) |
33 | __attribute__ ((format (printf, 2, 3))); | 31 | __attribute__ ((format (printf, 2, 3))); |
34 | extern void assfail(char *expr, char *f, int l); | 32 | extern void assfail(char *expr, char *f, int l); |