public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfstests: fix mkfs filter on xfs/096
@ 2013-10-30  3:58 Dave Chinner
  2013-10-30  4:25 ` Jeff Liu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Dave Chinner @ 2013-10-30  3:58 UTC (permalink / raw)
  To: xfs

From: Dave Chinner <dchinner@redhat.com>

Needs to filter out the new ftype field.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
 tests/xfs/096 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/xfs/096 b/tests/xfs/096
index 44b19b0..b2719bc 100755
--- a/tests/xfs/096
+++ b/tests/xfs/096
@@ -87,6 +87,7 @@ _mkfs_filter()
 	-e 's/\(realtime[ 	]*=\).*extsz/\1REALTIME               extsz/' \
 	-e '/.*crc=/d' \
 	-e 's/ *$//' \
+	-e 's/ ftype=[01]//' \
    | grep -v parent
 }
 
-- 
1.8.4.rc3

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

* Re: [PATCH] xfstests: fix mkfs filter on xfs/096
  2013-10-30  3:58 [PATCH] xfstests: fix mkfs filter on xfs/096 Dave Chinner
@ 2013-10-30  4:25 ` Jeff Liu
  2013-10-31 12:13 ` Carlos Maiolino
  2013-11-04 20:39 ` Rich Johnston
  2 siblings, 0 replies; 4+ messages in thread
From: Jeff Liu @ 2013-10-30  4:25 UTC (permalink / raw)
  To: Dave Chinner; +Cc: xfs

On 10/30/2013 11:58 AM, Dave Chinner wrote:

> From: Dave Chinner <dchinner@redhat.com>
> 
> Needs to filter out the new ftype field.
> 
> Signed-off-by: Dave Chinner <dchinner@redhat.com>
> ---
>  tests/xfs/096 | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tests/xfs/096 b/tests/xfs/096
> index 44b19b0..b2719bc 100755
> --- a/tests/xfs/096
> +++ b/tests/xfs/096
> @@ -87,6 +87,7 @@ _mkfs_filter()
>  	-e 's/\(realtime[ 	]*=\).*extsz/\1REALTIME               extsz/' \
>  	-e '/.*crc=/d' \
>  	-e 's/ *$//' \
> +	-e 's/ ftype=[01]//' \
>     | grep -v parent
>  }
>  

Looks good to me, thanks.

Reviewed-by: Jie Liu <jeff.liu@oracle.com>

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

* Re: [PATCH] xfstests: fix mkfs filter on xfs/096
  2013-10-30  3:58 [PATCH] xfstests: fix mkfs filter on xfs/096 Dave Chinner
  2013-10-30  4:25 ` Jeff Liu
@ 2013-10-31 12:13 ` Carlos Maiolino
  2013-11-04 20:39 ` Rich Johnston
  2 siblings, 0 replies; 4+ messages in thread
From: Carlos Maiolino @ 2013-10-31 12:13 UTC (permalink / raw)
  To: xfs

Looks good,

Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
On Wed, Oct 30, 2013 at 02:58:55PM +1100, Dave Chinner wrote:
> From: Dave Chinner <dchinner@redhat.com>
> 
> Needs to filter out the new ftype field.
> 
> Signed-off-by: Dave Chinner <dchinner@redhat.com>
> ---
>  tests/xfs/096 | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tests/xfs/096 b/tests/xfs/096
> index 44b19b0..b2719bc 100755
> --- a/tests/xfs/096
> +++ b/tests/xfs/096
> @@ -87,6 +87,7 @@ _mkfs_filter()
>  	-e 's/\(realtime[ 	]*=\).*extsz/\1REALTIME               extsz/' \
>  	-e '/.*crc=/d' \
>  	-e 's/ *$//' \
> +	-e 's/ ftype=[01]//' \
>     | grep -v parent
>  }
>  
> -- 
> 1.8.4.rc3
> 
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs

-- 
Carlos

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

* Re: [PATCH] xfstests: fix mkfs filter on xfs/096
  2013-10-30  3:58 [PATCH] xfstests: fix mkfs filter on xfs/096 Dave Chinner
  2013-10-30  4:25 ` Jeff Liu
  2013-10-31 12:13 ` Carlos Maiolino
@ 2013-11-04 20:39 ` Rich Johnston
  2 siblings, 0 replies; 4+ messages in thread
From: Rich Johnston @ 2013-11-04 20:39 UTC (permalink / raw)
  To: Dave Chinner, xfs

This has been committed.

Thanks
--Rich

commit 8a6adf9d741cb79a1c78f2b23fd3e3ebc65a5972
Author: Dave Chinner <dchinner@redhat.com>
Date:   Wed Oct 30 03:58:55 2013 +0000

     xfstests: fix mkfs filter on xfs/096

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

end of thread, other threads:[~2013-11-04 20:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-30  3:58 [PATCH] xfstests: fix mkfs filter on xfs/096 Dave Chinner
2013-10-30  4:25 ` Jeff Liu
2013-10-31 12:13 ` Carlos Maiolino
2013-11-04 20:39 ` Rich Johnston

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox