lkml.org 
[lkml]   [2018]   [Aug]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH 01/13] seq_file: rewrite seq_puts() in terms of seq_write()
From
Date
On Tue, 2018-08-28 at 02:14 +0300, Alexey Dobriyan wrote:
> Space savings -- 42 bytes!
>
> seq_puts 71 29 [-42]
>
> Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
> ---
> fs/seq_file.c | 9 +--------
> 1 file changed, 1 insertion(+), 8 deletions(-)
>
> diff --git a/fs/seq_file.c b/fs/seq_file.c
> index 1dea7a8a5255..0c282a88a896 100644
> --- a/fs/seq_file.c
> +++ b/fs/seq_file.c
> @@ -653,14 +653,7 @@ EXPORT_SYMBOL(seq_putc);
>
> void seq_puts(struct seq_file *m, const char *s)
> {
> - int len = strlen(s);
> -
> - if (m->count + len >= m->size) {
> - seq_set_overflow(m);
> - return;
> - }
> - memcpy(m->buf + m->count, s, len);
> - m->count += len;
> + seq_write(m, s, strlen(s));
> }
> EXPORT_SYMBOL(seq_puts);
>

If execution speed is really an issue, as
almost all of the uses are for const strings,
why not use a #define and avoid the runtime
cost of strlen where possible.

\
 
 \ /
  Last update: 2018-08-28 20:25    [W:0.144 / U:0.944 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site