* [PATCH] btrfs-progs: mkfs: remove experimental tag
@ 2014-07-31 12:21 David Sterba
2014-08-01 3:16 ` Satoru Takeuchi
2014-08-01 16:38 ` Kyle Gates
0 siblings, 2 replies; 4+ messages in thread
From: David Sterba @ 2014-07-31 12:21 UTC (permalink / raw)
To: linux-btrfs; +Cc: David Sterba
Make it consistent with kernel status and documentation.
Signed-off-by: David Sterba <dsterba@suse.cz>
---
mkfs.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/mkfs.c b/mkfs.c
index 16e92221a547..538b6e6837b2 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -1439,8 +1439,8 @@ int main(int ac, char **av)
}
/* if we are here that means all devs are good to btrfsify */
- printf("\nWARNING! - %s IS EXPERIMENTAL\n", BTRFS_BUILD_VERSION);
- printf("WARNING! - see http://btrfs.wiki.kernel.org before using\n\n");
+ printf("%s\n", BTRFS_BUILD_VERSION);
+ printf("See http://btrfs.wiki.kernel.org for more\n\n");
dev_cnt--;
@@ -1597,7 +1597,6 @@ raid_groups:
label, first_file, nodesize, leafsize, sectorsize,
pretty_size(btrfs_super_total_bytes(root->fs_info->super_copy)));
- printf("%s\n", BTRFS_BUILD_VERSION);
btrfs_commit_transaction(trans, root);
if (source_dir_set) {
--
1.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] btrfs-progs: mkfs: remove experimental tag
2014-07-31 12:21 [PATCH] btrfs-progs: mkfs: remove experimental tag David Sterba
@ 2014-08-01 3:16 ` Satoru Takeuchi
2014-08-01 16:38 ` Kyle Gates
1 sibling, 0 replies; 4+ messages in thread
From: Satoru Takeuchi @ 2014-08-01 3:16 UTC (permalink / raw)
To: David Sterba, linux-btrfs
(2014/07/31 21:21), David Sterba wrote:
> Make it consistent with kernel status and documentation.
>
> Signed-off-by: David Sterba <dsterba@suse.cz>
Reviewed-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
I'm glad to see this patch :-)
Thanks,
Satoru
> ---
> mkfs.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/mkfs.c b/mkfs.c
> index 16e92221a547..538b6e6837b2 100644
> --- a/mkfs.c
> +++ b/mkfs.c
> @@ -1439,8 +1439,8 @@ int main(int ac, char **av)
> }
>
> /* if we are here that means all devs are good to btrfsify */
> - printf("\nWARNING! - %s IS EXPERIMENTAL\n", BTRFS_BUILD_VERSION);
> - printf("WARNING! - see http://btrfs.wiki.kernel.org before using\n\n");
> + printf("%s\n", BTRFS_BUILD_VERSION);
> + printf("See http://btrfs.wiki.kernel.org for more\n\n");
>
> dev_cnt--;
>
> @@ -1597,7 +1597,6 @@ raid_groups:
> label, first_file, nodesize, leafsize, sectorsize,
> pretty_size(btrfs_super_total_bytes(root->fs_info->super_copy)));
>
> - printf("%s\n", BTRFS_BUILD_VERSION);
> btrfs_commit_transaction(trans, root);
>
> if (source_dir_set) {
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH] btrfs-progs: mkfs: remove experimental tag
2014-07-31 12:21 [PATCH] btrfs-progs: mkfs: remove experimental tag David Sterba
2014-08-01 3:16 ` Satoru Takeuchi
@ 2014-08-01 16:38 ` Kyle Gates
2014-08-01 16:50 ` David Sterba
1 sibling, 1 reply; 4+ messages in thread
From: Kyle Gates @ 2014-08-01 16:38 UTC (permalink / raw)
To: dsterba@suse.cz, linux-btrfs@vger.kernel.org
----------------------------------------
> From: dsterba@suse.cz
> To: linux-btrfs@vger.kernel.org
> CC: dsterba@suse.cz
> Subject: [PATCH] btrfs-progs: mkfs: remove experimental tag
> Date: Thu, 31 Jul 2014 14:21:34 +0200
>
> Make it consistent with kernel status and documentation.
>
> Signed-off-by: David Sterba <dsterba@suse.cz>
> ---
> mkfs.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/mkfs.c b/mkfs.c
> index 16e92221a547..538b6e6837b2 100644
> --- a/mkfs.c
> +++ b/mkfs.c
> @@ -1439,8 +1439,8 @@ int main(int ac, char **av)
> }
>
> /* if we are here that means all devs are good to btrfsify */
> - printf("\nWARNING! - %s IS EXPERIMENTAL\n", BTRFS_BUILD_VERSION);
> - printf("WARNING! - see http://btrfs.wiki.kernel.org before using\n\n");
> + printf("%s\n", BTRFS_BUILD_VERSION);
> + printf("See http://btrfs.wiki.kernel.org for more\n\n");
The sentence/thought isn't complete. I was left thinking "more what?"
perhaps add: information, documentation
Thanks.
>
> dev_cnt--;
>
> @@ -1597,7 +1597,6 @@ raid_groups:
> label, first_file, nodesize, leafsize, sectorsize,
> pretty_size(btrfs_super_total_bytes(root->fs_info->super_copy)));
>
> - printf("%s\n", BTRFS_BUILD_VERSION);
> btrfs_commit_transaction(trans, root);
>
> if (source_dir_set) {
> --
> 1.9.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] btrfs-progs: mkfs: remove experimental tag
2014-08-01 16:38 ` Kyle Gates
@ 2014-08-01 16:50 ` David Sterba
0 siblings, 0 replies; 4+ messages in thread
From: David Sterba @ 2014-08-01 16:50 UTC (permalink / raw)
To: Kyle Gates; +Cc: linux-btrfs@vger.kernel.org
On Fri, Aug 01, 2014 at 11:38:09AM -0500, Kyle Gates wrote:
> The sentence/thought isn't complete. I was left thinking "more what?"
> perhaps add: information, documentation
Changed to 'more information'.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-08-01 16:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-31 12:21 [PATCH] btrfs-progs: mkfs: remove experimental tag David Sterba
2014-08-01 3:16 ` Satoru Takeuchi
2014-08-01 16:38 ` Kyle Gates
2014-08-01 16:50 ` David Sterba
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.