linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] ext4: Message logging corrections and neatening
@ 2012-03-16  0:07 Joe Perches
  2012-03-16  0:07 ` [PATCH 1/9] ext4: Add -DDEBUG to Makefile Joe Perches
                   ` (8 more replies)
  0 siblings, 9 replies; 69+ messages in thread
From: Joe Perches @ 2012-03-16  0:07 UTC (permalink / raw)
  To: linux-ext4; +Cc: linux-kernel

Joe Perches (9):
  ext4: Add -DDEBUG to Makefile
  ext4: Use pr_fmt and pr_<level>
  ext4: Fix indentation
  ext4: Add no_printk argument validation, fix fallout
  ext4: Avoid output message interleaving in ext4_error_<foo>
  ext4: Remove redundant "EXT4-fs: " from uses of ext4_msg
  ext4: Format neatening for easier grep
  ext4: Neaten ext4_error uses
  ext4: Rename ext4_warning to ext4_warn and ext4_error to ext4_err

 fs/ext4/Makefile         |    2 +
 fs/ext4/balloc.c         |   38 ++--
 fs/ext4/block_validity.c |   11 +-
 fs/ext4/dir.c            |    5 +-
 fs/ext4/ext4.h           |   31 ++--
 fs/ext4/ext4_extents.h   |    4 +-
 fs/ext4/ext4_jbd2.c      |    3 +-
 fs/ext4/extents.c        |  140 +++++++--------
 fs/ext4/file.c           |    3 +-
 fs/ext4/fsync.c          |    2 +-
 fs/ext4/ialloc.c         |   75 ++++----
 fs/ext4/indirect.c       |   12 +-
 fs/ext4/inode.c          |   95 +++++-----
 fs/ext4/mballoc.c        |  163 ++++++++---------
 fs/ext4/mballoc.h        |   18 +-
 fs/ext4/mmp.c            |   39 ++---
 fs/ext4/move_extent.c    |   94 ++++------
 fs/ext4/namei.c          |  140 +++++++-------
 fs/ext4/page-io.c        |   29 ++--
 fs/ext4/resize.c         |  202 ++++++++++-----------
 fs/ext4/super.c          |  465 ++++++++++++++++++++++------------------------
 fs/ext4/xattr.c          |   37 ++--
 22 files changed, 766 insertions(+), 842 deletions(-)

-- 
1.7.8.111.gad25c.dirty


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

end of thread, other threads:[~2012-03-22 17:42 UTC | newest]

Thread overview: 69+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-16  0:07 [PATCH 0/9] ext4: Message logging corrections and neatening Joe Perches
2012-03-16  0:07 ` [PATCH 1/9] ext4: Add -DDEBUG to Makefile Joe Perches
2012-03-16 16:03   ` David Daney
2012-03-16 16:29     ` Joe Perches
2012-03-19  4:39     ` Ted Ts'o
2012-03-19 16:26       ` Joe Perches
2012-03-19 18:48       ` David Daney
2012-03-20  1:05         ` Ted Ts'o
2012-03-16  0:07 ` [PATCH 2/9] ext4: Use pr_fmt and pr_<level> Joe Perches
2012-03-19  4:09   ` Ted Ts'o
2012-03-19  4:14     ` David Miller
2012-03-19  4:34       ` Ted Ts'o
2012-03-19  5:12         ` David Miller
2012-03-19 15:31           ` Ted Ts'o
2012-03-19 15:51             ` Anca Emanuel
2012-03-19 16:14               ` Joe Perches
2012-03-19 16:14               ` Ted Ts'o
2012-03-19 18:14                 ` David Miller
2012-03-19 18:31                   ` Ted Ts'o
2012-03-19 18:46                     ` Joe Perches
2012-03-20  1:04                       ` Ted Ts'o
2012-03-20  1:33                         ` Joe Perches
2012-03-20  1:47                           ` Ted Ts'o
2012-03-20  1:59                             ` Joe Perches
2012-03-20  2:58                               ` Ted Ts'o
2012-03-20  3:02                                 ` Joe Perches
2012-03-20  5:46                                   ` Valdis.Kletnieks
2012-03-20  7:10                                     ` David Miller
2012-03-20  8:47                                       ` Jiri Slaby
2012-03-20  9:44                                         ` Joe Perches
2012-03-20  9:27                                       ` Geert Uytterhoeven
2012-03-20 13:03                                       ` Ted Ts'o
2012-03-20 18:47                                       ` Valdis.Kletnieks
2012-03-20  1:46                         ` Al Viro
2012-03-19 17:53             ` David Miller
2012-03-19  4:25     ` Joe Perches
2012-03-19  4:36       ` Ted Ts'o
2012-03-19 16:46       ` Jiri Slaby
2012-03-19 17:09         ` Joe Perches
2012-03-19 17:36           ` Valdis.Kletnieks
2012-03-19 17:44             ` Joe Perches
2012-03-20  1:06               ` Ted Ts'o
2012-03-20  1:28                 ` david
2012-03-20  1:51                   ` Joe Perches
2012-03-20  1:33                 ` Joe Perches
2012-03-20  8:57           ` Jiri Slaby
2012-03-20  9:21             ` Joe Perches
2012-03-20  9:25               ` Jiri Slaby
2012-03-20  9:46                 ` Joe Perches
2012-03-22 17:02                   ` Jiri Slaby
2012-03-22 17:42                     ` Joe Perches
2012-03-19  4:55   ` Ted Ts'o
2012-03-19  5:13     ` David Miller
2012-03-19  5:39     ` Joe Perches
2012-03-16  0:07 ` [PATCH 3/9] ext4: Fix indentation Joe Perches
2012-03-19  4:10   ` Ted Ts'o
2012-03-19  4:30     ` Joe Perches
2012-03-16  0:07 ` [PATCH 4/9] ext4: Add no_printk argument validation, fix fallout Joe Perches
2012-03-19  4:16   ` Ted Ts'o
2012-03-16  0:07 ` [PATCH 5/9] ext4: Avoid output message interleaving in ext4_error_<foo> Joe Perches
2012-03-19  4:51   ` Ted Ts'o
2012-03-16  0:07 ` [PATCH 6/9] ext4: Remove redundant "EXT4-fs: " from uses of ext4_msg Joe Perches
2012-03-19  4:13   ` Ted Ts'o
2012-03-16  0:07 ` [PATCH 7/9] ext4: Format neatening for easier grep Joe Perches
2012-03-19  4:26   ` Ted Ts'o
2012-03-19  4:30     ` Joe Perches
2012-03-16  0:07 ` [PATCH 8/9] ext4: Neaten ext4_error uses Joe Perches
2012-03-16  0:07 ` [PATCH 9/9] ext4: Rename ext4_warning to ext4_warn and ext4_error to ext4_err Joe Perches
2012-03-19  4:51   ` Ted Ts'o

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).