From: Joe Perches <joe@perches.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH 0/7] seq_printf cleanups
Date: Mon, 29 Sep 2014 16:08:20 -0700 [thread overview]
Message-ID: <cover.1412031505.git.joe@perches.com> (raw)
In-Reply-To: <20140929124246.3e39dac8@gandalf.local.home>
seq_printf should return void.
Add a public bool seq_is_full function that can be used to shortcut
unnecesary seq_printf/seq_puts calls when the seq buffer is full.
Start removing the misuses of the seq_printf/seq_puts return value.
Patchset brought forward from an unreplied to set of changes from
back in December 2013.
https://lkml.org/lkml/2013/12/11/713
Renamed seq_is_buf_full to seq_is_full.
Joe Perches (7):
seq_file: Rename static bool seq_overflow to public bool seq_is_full
netfilter: Convert print_tuple functions to return void
dlm: Use seq_is_full - remove seq_printf returns
dlm: Use seq_puts, remove unnecessary trailing spaces
fs: Convert show_fdinfo functions to void
debugfs: Fix misuse of seq_printf return value
docg3: Fix mixuse of seq_printf return value
Documentation/filesystems/seq_file.txt | 28 +--
Documentation/filesystems/vfs.txt | 2 +-
drivers/mtd/devices/docg3.c | 112 ++++++------
drivers/net/tun.c | 4 +-
fs/debugfs/file.c | 14 +-
fs/dlm/debug_fs.c | 260 +++++++++++++--------------
fs/eventfd.c | 15 +-
fs/eventpoll.c | 19 +-
fs/notify/fdinfo.c | 76 ++++----
fs/notify/fdinfo.h | 4 +-
fs/proc/fd.c | 2 +-
fs/seq_file.c | 28 +--
fs/signalfd.c | 10 +-
fs/timerfd.c | 27 +--
include/linux/fs.h | 2 +-
include/linux/seq_file.h | 8 +
include/net/netfilter/nf_conntrack_core.h | 2 +-
include/net/netfilter/nf_conntrack_l3proto.h | 4 +-
include/net/netfilter/nf_conntrack_l4proto.h | 4 +-
net/netfilter/nf_conntrack_l3proto_generic.c | 5 +-
net/netfilter/nf_conntrack_proto_dccp.c | 10 +-
net/netfilter/nf_conntrack_proto_generic.c | 5 +-
net/netfilter/nf_conntrack_proto_gre.c | 10 +-
net/netfilter/nf_conntrack_proto_sctp.c | 10 +-
net/netfilter/nf_conntrack_proto_tcp.c | 10 +-
net/netfilter/nf_conntrack_proto_udp.c | 10 +-
net/netfilter/nf_conntrack_proto_udplite.c | 10 +-
net/netfilter/nf_conntrack_standalone.c | 15 +-
28 files changed, 333 insertions(+), 373 deletions(-)
--
1.8.1.2.459.gbcd45b4.dirty
WARNING: multiple messages have this Message-ID (diff)
From: Joe Perches <joe@perches.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: linux-doc@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, Petr Mladek <pmladek@suse.cz>,
cluster-devel@redhat.com, coreteam@netfilter.org,
linux-mtd@lists.infradead.org, Al Viro <viro@ZenIV.linux.org.uk>,
linux-fsdevel@vger.kernel.org, netfilter-devel@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>
Subject: [PATCH 0/7] seq_printf cleanups
Date: Mon, 29 Sep 2014 16:08:20 -0700 [thread overview]
Message-ID: <cover.1412031505.git.joe@perches.com> (raw)
In-Reply-To: <20140929124246.3e39dac8@gandalf.local.home>
seq_printf should return void.
Add a public bool seq_is_full function that can be used to shortcut
unnecesary seq_printf/seq_puts calls when the seq buffer is full.
Start removing the misuses of the seq_printf/seq_puts return value.
Patchset brought forward from an unreplied to set of changes from
back in December 2013.
https://lkml.org/lkml/2013/12/11/713
Renamed seq_is_buf_full to seq_is_full.
Joe Perches (7):
seq_file: Rename static bool seq_overflow to public bool seq_is_full
netfilter: Convert print_tuple functions to return void
dlm: Use seq_is_full - remove seq_printf returns
dlm: Use seq_puts, remove unnecessary trailing spaces
fs: Convert show_fdinfo functions to void
debugfs: Fix misuse of seq_printf return value
docg3: Fix mixuse of seq_printf return value
Documentation/filesystems/seq_file.txt | 28 +--
Documentation/filesystems/vfs.txt | 2 +-
drivers/mtd/devices/docg3.c | 112 ++++++------
drivers/net/tun.c | 4 +-
fs/debugfs/file.c | 14 +-
fs/dlm/debug_fs.c | 260 +++++++++++++--------------
fs/eventfd.c | 15 +-
fs/eventpoll.c | 19 +-
fs/notify/fdinfo.c | 76 ++++----
fs/notify/fdinfo.h | 4 +-
fs/proc/fd.c | 2 +-
fs/seq_file.c | 28 +--
fs/signalfd.c | 10 +-
fs/timerfd.c | 27 +--
include/linux/fs.h | 2 +-
include/linux/seq_file.h | 8 +
include/net/netfilter/nf_conntrack_core.h | 2 +-
include/net/netfilter/nf_conntrack_l3proto.h | 4 +-
include/net/netfilter/nf_conntrack_l4proto.h | 4 +-
net/netfilter/nf_conntrack_l3proto_generic.c | 5 +-
net/netfilter/nf_conntrack_proto_dccp.c | 10 +-
net/netfilter/nf_conntrack_proto_generic.c | 5 +-
net/netfilter/nf_conntrack_proto_gre.c | 10 +-
net/netfilter/nf_conntrack_proto_sctp.c | 10 +-
net/netfilter/nf_conntrack_proto_tcp.c | 10 +-
net/netfilter/nf_conntrack_proto_udp.c | 10 +-
net/netfilter/nf_conntrack_proto_udplite.c | 10 +-
net/netfilter/nf_conntrack_standalone.c | 15 +-
28 files changed, 333 insertions(+), 373 deletions(-)
--
1.8.1.2.459.gbcd45b4.dirty
WARNING: multiple messages have this Message-ID (diff)
From: Joe Perches <joe@perches.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>, Petr Mladek <pmladek@suse.cz>,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mtd@lists.infradead.org, netdev@vger.kernel.org,
cluster-devel@redhat.com, linux-fsdevel@vger.kernel.org,
netfilter-devel@vger.kernel.org, coreteam@netfilter.org
Subject: [PATCH 0/7] seq_printf cleanups
Date: Mon, 29 Sep 2014 16:08:20 -0700 [thread overview]
Message-ID: <cover.1412031505.git.joe@perches.com> (raw)
In-Reply-To: <20140929124246.3e39dac8@gandalf.local.home>
seq_printf should return void.
Add a public bool seq_is_full function that can be used to shortcut
unnecesary seq_printf/seq_puts calls when the seq buffer is full.
Start removing the misuses of the seq_printf/seq_puts return value.
Patchset brought forward from an unreplied to set of changes from
back in December 2013.
https://lkml.org/lkml/2013/12/11/713
Renamed seq_is_buf_full to seq_is_full.
Joe Perches (7):
seq_file: Rename static bool seq_overflow to public bool seq_is_full
netfilter: Convert print_tuple functions to return void
dlm: Use seq_is_full - remove seq_printf returns
dlm: Use seq_puts, remove unnecessary trailing spaces
fs: Convert show_fdinfo functions to void
debugfs: Fix misuse of seq_printf return value
docg3: Fix mixuse of seq_printf return value
Documentation/filesystems/seq_file.txt | 28 +--
Documentation/filesystems/vfs.txt | 2 +-
drivers/mtd/devices/docg3.c | 112 ++++++------
drivers/net/tun.c | 4 +-
fs/debugfs/file.c | 14 +-
fs/dlm/debug_fs.c | 260 +++++++++++++--------------
fs/eventfd.c | 15 +-
fs/eventpoll.c | 19 +-
fs/notify/fdinfo.c | 76 ++++----
fs/notify/fdinfo.h | 4 +-
fs/proc/fd.c | 2 +-
fs/seq_file.c | 28 +--
fs/signalfd.c | 10 +-
fs/timerfd.c | 27 +--
include/linux/fs.h | 2 +-
include/linux/seq_file.h | 8 +
include/net/netfilter/nf_conntrack_core.h | 2 +-
include/net/netfilter/nf_conntrack_l3proto.h | 4 +-
include/net/netfilter/nf_conntrack_l4proto.h | 4 +-
net/netfilter/nf_conntrack_l3proto_generic.c | 5 +-
net/netfilter/nf_conntrack_proto_dccp.c | 10 +-
net/netfilter/nf_conntrack_proto_generic.c | 5 +-
net/netfilter/nf_conntrack_proto_gre.c | 10 +-
net/netfilter/nf_conntrack_proto_sctp.c | 10 +-
net/netfilter/nf_conntrack_proto_tcp.c | 10 +-
net/netfilter/nf_conntrack_proto_udp.c | 10 +-
net/netfilter/nf_conntrack_proto_udplite.c | 10 +-
net/netfilter/nf_conntrack_standalone.c | 15 +-
28 files changed, 333 insertions(+), 373 deletions(-)
--
1.8.1.2.459.gbcd45b4.dirty
next prev parent reply other threads:[~2014-09-29 23:08 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-26 18:37 [PATCH] seq_file: Fix seq_putc() to be consistent with seq_puts() Steven Rostedt
2014-09-29 14:41 ` Petr Mladek
2014-09-29 15:25 ` Steven Rostedt
2014-09-29 15:46 ` Joe Perches
2014-09-29 16:11 ` Steven Rostedt
2014-09-29 16:23 ` Petr Mladek
2014-09-29 16:40 ` Steven Rostedt
2014-09-29 15:47 ` Al Viro
2014-09-29 16:08 ` Joe Perches
2014-09-29 16:15 ` Steven Rostedt
2014-09-29 16:30 ` Joe Perches
2014-09-29 16:42 ` Steven Rostedt
2014-09-29 16:55 ` Joe Perches
2014-09-29 23:08 ` Joe Perches [this message]
2014-09-29 23:08 ` [PATCH 0/7] seq_printf cleanups Joe Perches
2014-09-29 23:08 ` Joe Perches
2014-09-29 23:08 ` [PATCH 1/7] seq_file: Rename static bool seq_overflow to public bool seq_is_full Joe Perches
2014-09-29 23:44 ` Steven Rostedt
2014-09-29 23:48 ` Joe Perches
2014-09-30 10:06 ` Petr Mladek
2014-09-29 23:08 ` [PATCH 2/7] netfilter: Convert print_tuple functions to return void Joe Perches
2014-09-30 10:22 ` Petr Mladek
2014-09-30 13:04 ` Joe Perches
2014-09-29 23:08 ` [Cluster-devel] [PATCH 3/7] dlm: Use seq_is_full - remove seq_printf returns Joe Perches
2014-09-29 23:08 ` Joe Perches
2014-09-30 10:34 ` [Cluster-devel] " Petr Mladek
2014-09-30 10:34 ` Petr Mladek
2014-10-27 20:17 ` [Cluster-devel] " Steven Rostedt
2014-10-27 20:17 ` Steven Rostedt
2014-10-27 20:25 ` [Cluster-devel] " Joe Perches
2014-10-27 20:25 ` Joe Perches
2014-10-29 12:21 ` [Cluster-devel] " Petr Mladek
2014-10-29 12:21 ` Petr Mladek
2014-09-29 23:08 ` [Cluster-devel] [PATCH 4/7] dlm: Use seq_puts, remove unnecessary trailing spaces Joe Perches
2014-09-29 23:08 ` Joe Perches
2014-09-29 23:08 ` [PATCH 5/7] fs: Convert show_fdinfo functions to void Joe Perches
2014-10-28 14:11 ` Steven Rostedt
2014-10-28 14:31 ` Joe Perches
2014-10-28 14:43 ` Steven Rostedt
2014-09-29 23:08 ` [PATCH 6/7] debugfs: Fix misuse of seq_printf return value Joe Perches
2014-10-28 14:58 ` Steven Rostedt
2014-10-28 15:25 ` Joe Perches
2014-10-28 15:42 ` Steven Rostedt
2014-10-28 15:59 ` Joe Perches
2014-11-07 19:03 ` Greg Kroah-Hartman
2014-09-29 23:08 ` [PATCH 7/7] docg3: Fix miuse " Joe Perches
2014-09-29 23:08 ` Joe Perches
2014-10-22 8:29 ` Brian Norris
2014-10-22 8:29 ` Brian Norris
2014-10-28 15:13 ` Steven Rostedt
2014-10-28 15:13 ` Steven Rostedt
2014-10-28 15:57 ` Joe Perches
2014-10-28 15:57 ` Joe Perches
2014-10-28 16:05 ` Steven Rostedt
2014-10-28 16:05 ` Steven Rostedt
2014-10-28 17:14 ` Brian Norris
2014-10-28 17:14 ` Brian Norris
2014-10-28 17:26 ` Steven Rostedt
2014-10-28 17:26 ` Steven Rostedt
2014-10-28 17:27 ` Joe Perches
2014-10-28 17:27 ` Joe Perches
2014-10-28 17:32 ` Steven Rostedt
2014-10-28 17:32 ` Steven Rostedt
2014-10-28 17:36 ` Brian Norris
2014-10-28 17:36 ` Brian Norris
2014-10-28 17:38 ` Joe Perches
2014-10-28 17:38 ` Joe Perches
2014-10-28 15:32 ` [Cluster-devel] [PATCH 0/7] seq_printf cleanups Steven Rostedt
2014-10-28 15:32 ` Steven Rostedt
2014-10-28 15:32 ` Steven Rostedt
2014-10-28 15:51 ` [Cluster-devel] " Joe Perches
2014-10-28 15:51 ` Joe Perches
2014-10-28 15:51 ` Joe Perches
2014-10-06 3:33 ` [PATCH] seq_file: Fix seq_putc() to be consistent with seq_puts() Joe Perches
2014-09-29 16:09 ` Steven Rostedt
2014-09-29 16:41 ` Al Viro
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1412031505.git.joe@perches.com \
--to=joe@perches.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.