linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c
@ 2019-11-23 15:55 John Pittman
  2019-11-25 18:08 ` Pavel Reichl
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: John Pittman @ 2019-11-23 15:55 UTC (permalink / raw)
  To: esandeen; +Cc: preichl, linux-xfs, John Pittman

In libxfs/rdwr.c, there are several fprintf() calls that are
missing trailing line feeds. This translates to the following
CLI prompt being on the same line as the message. Add missing
line feeds, alleviating the issue.

Fixes: 0a7942b38215 ("libxfs: don't discard dirty buffers")
Signed-off-by: John Pittman <jpittman@redhat.com>
---
 libxfs/rdwr.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libxfs/rdwr.c b/libxfs/rdwr.c
index 7080cd9c..3f69192d 100644
--- a/libxfs/rdwr.c
+++ b/libxfs/rdwr.c
@@ -651,7 +651,7 @@ __libxfs_getbufr(int blen)
 	pthread_mutex_unlock(&xfs_buf_freelist.cm_mutex);
 	bp->b_ops = NULL;
 	if (bp->b_flags & LIBXFS_B_DIRTY)
-		fprintf(stderr, "found dirty buffer (bulk) on free list!");
+		fprintf(stderr, "found dirty buffer (bulk) on free list!\n");
 
 	return bp;
 }
@@ -1224,7 +1224,7 @@ libxfs_brelse(
 		return;
 	if (bp->b_flags & LIBXFS_B_DIRTY)
 		fprintf(stderr,
-			"releasing dirty buffer to free list!");
+			"releasing dirty buffer to free list!\n");
 
 	pthread_mutex_lock(&xfs_buf_freelist.cm_mutex);
 	list_add(&bp->b_node.cn_mru, &xfs_buf_freelist.cm_list);
@@ -1245,7 +1245,7 @@ libxfs_bulkrelse(
 	list_for_each_entry(bp, list, b_node.cn_mru) {
 		if (bp->b_flags & LIBXFS_B_DIRTY)
 			fprintf(stderr,
-				"releasing dirty buffer (bulk) to free list!");
+				"releasing dirty buffer (bulk) to free list!\n");
 		count++;
 	}
 
-- 
2.17.2


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

* Re: [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c
  2019-11-23 15:55 [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c John Pittman
@ 2019-11-25 18:08 ` Pavel Reichl
  2019-11-26  9:31 ` Carlos Maiolino
  2019-11-26  9:33 ` Carlos Maiolino
  2 siblings, 0 replies; 4+ messages in thread
From: Pavel Reichl @ 2019-11-25 18:08 UTC (permalink / raw)
  To: John Pittman; +Cc: Eric Sandeen, linux-xfs

On Sat, Nov 23, 2019 at 4:55 PM John Pittman <jpittman@redhat.com> wrote:
>
> In libxfs/rdwr.c, there are several fprintf() calls that are
> missing trailing line feeds. This translates to the following
> CLI prompt being on the same line as the message. Add missing
> line feeds, alleviating the issue.
>
> Fixes: 0a7942b38215 ("libxfs: don't discard dirty buffers")
> Signed-off-by: John Pittman <jpittman@redhat.com>
> ---
>  libxfs/rdwr.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libxfs/rdwr.c b/libxfs/rdwr.c
> index 7080cd9c..3f69192d 100644
> --- a/libxfs/rdwr.c
> +++ b/libxfs/rdwr.c
> @@ -651,7 +651,7 @@ __libxfs_getbufr(int blen)
>         pthread_mutex_unlock(&xfs_buf_freelist.cm_mutex);
>         bp->b_ops = NULL;
>         if (bp->b_flags & LIBXFS_B_DIRTY)
> -               fprintf(stderr, "found dirty buffer (bulk) on free list!");
> +               fprintf(stderr, "found dirty buffer (bulk) on free list!\n");
>
>         return bp;
>  }
> @@ -1224,7 +1224,7 @@ libxfs_brelse(
>                 return;
>         if (bp->b_flags & LIBXFS_B_DIRTY)
>                 fprintf(stderr,
> -                       "releasing dirty buffer to free list!");
> +                       "releasing dirty buffer to free list!\n");
>
>         pthread_mutex_lock(&xfs_buf_freelist.cm_mutex);
>         list_add(&bp->b_node.cn_mru, &xfs_buf_freelist.cm_list);
> @@ -1245,7 +1245,7 @@ libxfs_bulkrelse(
>         list_for_each_entry(bp, list, b_node.cn_mru) {
>                 if (bp->b_flags & LIBXFS_B_DIRTY)
>                         fprintf(stderr,
> -                               "releasing dirty buffer (bulk) to free list!");
> +                               "releasing dirty buffer (bulk) to free list!\n");
>                 count++;
>         }
>
> --
> 2.17.2
>

Hi John,

thanks for the update.

 Reviewed-by: Pavel Reichl <preichl@redhat.com>


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

* Re: [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c
  2019-11-23 15:55 [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c John Pittman
  2019-11-25 18:08 ` Pavel Reichl
@ 2019-11-26  9:31 ` Carlos Maiolino
  2019-11-26  9:33 ` Carlos Maiolino
  2 siblings, 0 replies; 4+ messages in thread
From: Carlos Maiolino @ 2019-11-26  9:31 UTC (permalink / raw)
  To: John Pittman; +Cc: esandeen, preichl, linux-xfs

On Sat, Nov 23, 2019 at 10:55:08AM -0500, John Pittman wrote:
> In libxfs/rdwr.c, there are several fprintf() calls that are
> missing trailing line feeds. This translates to the following
> CLI prompt being on the same line as the message. Add missing
> line feeds, alleviating the issue.
> 
> Fixes: 0a7942b38215 ("libxfs: don't discard dirty buffers")
> Signed-off-by: John Pittman <jpittman@redhat.com>


Looks good.

Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>

> ---
>  libxfs/rdwr.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/libxfs/rdwr.c b/libxfs/rdwr.c
> index 7080cd9c..3f69192d 100644
> --- a/libxfs/rdwr.c
> +++ b/libxfs/rdwr.c
> @@ -651,7 +651,7 @@ __libxfs_getbufr(int blen)
>  	pthread_mutex_unlock(&xfs_buf_freelist.cm_mutex);
>  	bp->b_ops = NULL;
>  	if (bp->b_flags & LIBXFS_B_DIRTY)
> -		fprintf(stderr, "found dirty buffer (bulk) on free list!");
> +		fprintf(stderr, "found dirty buffer (bulk) on free list!\n");
>  
>  	return bp;
>  }
> @@ -1224,7 +1224,7 @@ libxfs_brelse(
>  		return;
>  	if (bp->b_flags & LIBXFS_B_DIRTY)
>  		fprintf(stderr,
> -			"releasing dirty buffer to free list!");
> +			"releasing dirty buffer to free list!\n");
>  
>  	pthread_mutex_lock(&xfs_buf_freelist.cm_mutex);
>  	list_add(&bp->b_node.cn_mru, &xfs_buf_freelist.cm_list);
> @@ -1245,7 +1245,7 @@ libxfs_bulkrelse(
>  	list_for_each_entry(bp, list, b_node.cn_mru) {
>  		if (bp->b_flags & LIBXFS_B_DIRTY)
>  			fprintf(stderr,
> -				"releasing dirty buffer (bulk) to free list!");
> +				"releasing dirty buffer (bulk) to free list!\n");
>  		count++;
>  	}
>  
> -- 
> 2.17.2
> 

-- 
Carlos


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

* Re: [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c
  2019-11-23 15:55 [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c John Pittman
  2019-11-25 18:08 ` Pavel Reichl
  2019-11-26  9:31 ` Carlos Maiolino
@ 2019-11-26  9:33 ` Carlos Maiolino
  2 siblings, 0 replies; 4+ messages in thread
From: Carlos Maiolino @ 2019-11-26  9:33 UTC (permalink / raw)
  To: John Pittman; +Cc: esandeen, preichl, linux-xfs

On Sat, Nov 23, 2019 at 10:55:08AM -0500, John Pittman wrote:
> In libxfs/rdwr.c, there are several fprintf() calls that are
> missing trailing line feeds. This translates to the following
> CLI prompt being on the same line as the message. Add missing
> line feeds, alleviating the issue.
> 
> Fixes: 0a7942b38215 ("libxfs: don't discard dirty buffers")
> Signed-off-by: John Pittman <jpittman@redhat.com>

Despite my Reviewed-by previously, next patches, please don't forget to also
provide the changelog for your Vx patches.

> ---

^ Changelogs should go below this line, so they are not propagated to the git
tree, but it's really helpful to understand why you needed to send new versions.

Cheers.

>  libxfs/rdwr.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/libxfs/rdwr.c b/libxfs/rdwr.c
> index 7080cd9c..3f69192d 100644
> --- a/libxfs/rdwr.c
> +++ b/libxfs/rdwr.c
> @@ -651,7 +651,7 @@ __libxfs_getbufr(int blen)
>  	pthread_mutex_unlock(&xfs_buf_freelist.cm_mutex);
>  	bp->b_ops = NULL;
>  	if (bp->b_flags & LIBXFS_B_DIRTY)
> -		fprintf(stderr, "found dirty buffer (bulk) on free list!");
> +		fprintf(stderr, "found dirty buffer (bulk) on free list!\n");
>  
>  	return bp;
>  }
> @@ -1224,7 +1224,7 @@ libxfs_brelse(
>  		return;
>  	if (bp->b_flags & LIBXFS_B_DIRTY)
>  		fprintf(stderr,
> -			"releasing dirty buffer to free list!");
> +			"releasing dirty buffer to free list!\n");
>  
>  	pthread_mutex_lock(&xfs_buf_freelist.cm_mutex);
>  	list_add(&bp->b_node.cn_mru, &xfs_buf_freelist.cm_list);
> @@ -1245,7 +1245,7 @@ libxfs_bulkrelse(
>  	list_for_each_entry(bp, list, b_node.cn_mru) {
>  		if (bp->b_flags & LIBXFS_B_DIRTY)
>  			fprintf(stderr,
> -				"releasing dirty buffer (bulk) to free list!");
> +				"releasing dirty buffer (bulk) to free list!\n");
>  		count++;
>  	}
>  
> -- 
> 2.17.2
> 

-- 
Carlos


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

end of thread, other threads:[~2019-11-26  9:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-23 15:55 [PATCH v3] xfsprogs: add missing line feeds in libxfs/rdwr.c John Pittman
2019-11-25 18:08 ` Pavel Reichl
2019-11-26  9:31 ` Carlos Maiolino
2019-11-26  9:33 ` Carlos Maiolino

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).