All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start()
@ 2018-08-21 18:23 damenly.su
  2018-08-21 18:23 ` [PATCH 1/2] btrfs-progs: task: add prefn() into struct task_info damenly.su
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: damenly.su @ 2018-08-21 18:23 UTC (permalink / raw)
  To: linux-btrfs; +Cc: Su Yue

From: Su Yue <suy.fnst@cn.fujitsu.com>

This patchset is a prepare work for further process of check.

patch[1] adds prefn() to task_info and call it before pthread_create().

patch[2] moves time and count initializations into the new init_ctx(),
assign it to prefun(). Remove arguments start_time and item_count.


Su Yue (2):
  btrfs-progs: task: add prefn() into struct task_info
  btrfs-progs: task: add init_ctx and clean up arguments of task_start()

 check/main.c   | 27 +++++++++++++++++++--------
 convert/main.c |  6 +++---
 task-utils.c   | 17 +++++++++--------
 task-utils.h   |  5 +++--
 4 files changed, 34 insertions(+), 21 deletions(-)

-- 
2.17.1

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

* [PATCH 1/2] btrfs-progs: task: add prefn() into struct task_info
  2018-08-21 18:23 [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() damenly.su
@ 2018-08-21 18:23 ` damenly.su
  2018-08-21 18:23 ` [PATCH 2/2] btrfs-progs: task: add init_ctx and clean up arguments of task_start() damenly.su
  2018-08-21 19:38 ` [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() Nikolay Borisov
  2 siblings, 0 replies; 5+ messages in thread
From: damenly.su @ 2018-08-21 18:23 UTC (permalink / raw)
  To: linux-btrfs; +Cc: Su Yue

From: Su Yue <suy.fnst@cn.fujitsu.com>

Previously, everytime task_start is called, arguments to be initialized
(start_time and item_count) are passed manually.

For scalability, add a member prefn() to struct task_info.
prefn() will be called before pthread_create() in task_start().

Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com>
---
 check/main.c   |  3 ++-
 convert/main.c |  4 ++--
 task-utils.c   | 12 +++++++++---
 task-utils.h   |  3 ++-
 4 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/check/main.c b/check/main.c
index bc2ee22f7943..087106d199eb 100644
--- a/check/main.c
+++ b/check/main.c
@@ -9628,7 +9628,8 @@ int cmd_check(int argc, char **argv)
 
 	if (ctx.progress_enabled) {
 		ctx.tp = TASK_NOTHING;
-		ctx.info = task_init(print_status_check, print_status_return, &ctx);
+		ctx.info = task_init(print_status_check, NULL,
+				     print_status_return, &ctx);
 	}
 
 	/* This check is the only reason for --readonly to exist */
diff --git a/convert/main.c b/convert/main.c
index 3736a14955d1..ee51390bb072 100644
--- a/convert/main.c
+++ b/convert/main.c
@@ -1180,8 +1180,8 @@ static int do_convert(const char *devname, u32 convert_flags, u32 nodesize,
 	ctx.cur_copy_inodes = 0;
 
 	if (progress) {
-		ctx.info = task_init(print_copied_inodes, after_copied_inodes,
-				     &ctx);
+		ctx.info = task_init(print_copied_inodes, NULL,
+				     after_copied_inodes, &ctx);
 		task_start(ctx.info, NULL, NULL);
 	}
 	ret = copy_inodes(&cctx, root, convert_flags, &ctx);
diff --git a/task-utils.c b/task-utils.c
index a9bee8f4486d..e837812f57f7 100644
--- a/task-utils.c
+++ b/task-utils.c
@@ -23,8 +23,8 @@
 
 #include "task-utils.h"
 
-struct task_info *task_init(void *(*threadfn)(void *), int (*postfn)(void *),
-			    void *thread_private)
+struct task_info *task_init(void *(*threadfn)(void *), int (*prefn)(void *),
+			    int (*postfn)(void *), void *thread_private)
 {
 	struct task_info *info = calloc(1, sizeof(struct task_info));
 
@@ -33,6 +33,7 @@ struct task_info *task_init(void *(*threadfn)(void *), int (*postfn)(void *),
 
 	info->private_data = thread_private;
 	info->threadfn = threadfn;
+	info->prefn = prefn;
 	info->postfn = postfn;
 
 	return info;
@@ -53,9 +54,14 @@ int task_start(struct task_info *info, time_t *start_time, u64 *item_count)
 	if (item_count)
 		*item_count = 0;
 
+	if (info->prefn) {
+		ret = info->prefn(info->private_data);
+		if (ret)
+			return ret;
+	}
+
 	ret = pthread_create(&info->id, NULL, info->threadfn,
 			     info->private_data);
-
 	if (ret)
 		info->id = 0;
 
diff --git a/task-utils.h b/task-utils.h
index bbb0f1fd9ff6..06ee87defe24 100644
--- a/task-utils.h
+++ b/task-utils.h
@@ -30,12 +30,13 @@ struct task_info {
 	pthread_t id;
 	void *private_data;
 	void *(*threadfn)(void *);
+	int (*prefn)(void *);
 	int (*postfn)(void *);
 };
 
 /* task life cycle */
 struct task_info *task_init(void *(*threadfn)(void *), int (*postfn)(void *),
-			    void *thread_private);
+			    int (*pretfn)(void *), void *thread_private);
 int task_start(struct task_info *info, time_t *start_time, u64 *item_count);
 void task_stop(struct task_info *info);
 void task_deinit(struct task_info *info);
-- 
2.17.1

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

* [PATCH 2/2] btrfs-progs: task: add init_ctx and clean up arguments of task_start()
  2018-08-21 18:23 [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() damenly.su
  2018-08-21 18:23 ` [PATCH 1/2] btrfs-progs: task: add prefn() into struct task_info damenly.su
@ 2018-08-21 18:23 ` damenly.su
  2018-08-21 19:38 ` [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() Nikolay Borisov
  2 siblings, 0 replies; 5+ messages in thread
From: damenly.su @ 2018-08-21 18:23 UTC (permalink / raw)
  To: linux-btrfs; +Cc: Su Yue

From: Su Yue <suy.fnst@cn.fujitsu.com>

Add a function init_ctx() to initialize time and count of ctx while
checking. Use it as prefn while calling task_init().
Arguments start_time and item_count of task_start() are useless,
remove them.

Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com>
---
 check/main.c   | 26 ++++++++++++++++++--------
 convert/main.c |  2 +-
 task-utils.c   |  7 +------
 task-utils.h   |  2 +-
 4 files changed, 21 insertions(+), 16 deletions(-)

diff --git a/check/main.c b/check/main.c
index 087106d199eb..71baa64168b8 100644
--- a/check/main.c
+++ b/check/main.c
@@ -161,6 +161,16 @@ static int compare_extent_backref(struct rb_node *node1, struct rb_node *node2)
 		return compare_tree_backref(node1, node2);
 }
 
+static int init_ctx(void *p)
+{
+	struct task_ctx *priv = p;
+
+	priv->start_time = time(NULL);
+	priv->item_count = 0;
+
+	return 0;
+}
+
 static void print_status_check_line(void *p)
 {
 	struct task_ctx *priv = p;
@@ -9628,7 +9638,7 @@ int cmd_check(int argc, char **argv)
 
 	if (ctx.progress_enabled) {
 		ctx.tp = TASK_NOTHING;
-		ctx.info = task_init(print_status_check, NULL,
+		ctx.info = task_init(print_status_check, init_ctx,
 				     print_status_return, &ctx);
 	}
 
@@ -9823,7 +9833,7 @@ int cmd_check(int argc, char **argv)
 			fprintf(stderr, "[1/7] checking root items\n");
 		} else {
 			ctx.tp = TASK_ROOT_ITEMS;
-			task_start(ctx.info, &ctx.start_time, &ctx.item_count);
+			task_start(ctx.info);
 		}
 		ret = repair_root_items(info);
 		task_stop(ctx.info);
@@ -9853,7 +9863,7 @@ int cmd_check(int argc, char **argv)
 		fprintf(stderr, "[2/7] checking extents\n");
 	} else {
 		ctx.tp = TASK_EXTENTS;
-		task_start(ctx.info, &ctx.start_time, &ctx.item_count);
+		task_start(ctx.info);
 	}
 	ret = do_check_chunks_and_extents(info);
 	task_stop(ctx.info);
@@ -9874,7 +9884,7 @@ int cmd_check(int argc, char **argv)
 			fprintf(stderr, "[3/7] checking free space cache\n");
 	} else {
 		ctx.tp = TASK_FREE_SPACE;
-		task_start(ctx.info, &ctx.start_time, &ctx.item_count);
+		task_start(ctx.info);
 	}
 
 	ret = check_space_cache(root);
@@ -9899,7 +9909,7 @@ int cmd_check(int argc, char **argv)
 		fprintf(stderr, "[4/7] checking fs roots\n");
 	} else {
 		ctx.tp = TASK_FS_ROOTS;
-		task_start(ctx.info, &ctx.start_time, &ctx.item_count);
+		task_start(ctx.info);
 	}
 
 	ret = do_check_fs_roots(info, &root_cache);
@@ -9918,7 +9928,7 @@ int cmd_check(int argc, char **argv)
 		"[5/7] checking only csums items (without verifying data)\n");
 	} else {
 		ctx.tp = TASK_CSUMS;
-		task_start(ctx.info, &ctx.start_time, &ctx.item_count);
+		task_start(ctx.info);
 	}
 
 	ret = check_csums(root);
@@ -9937,7 +9947,7 @@ int cmd_check(int argc, char **argv)
 			fprintf(stderr, "[6/7] checking root refs\n");
 		} else {
 			ctx.tp = TASK_ROOT_REFS;
-			task_start(ctx.info, &ctx.start_time, &ctx.item_count);
+			task_start(ctx.info);
 		}
 
 		ret = check_root_refs(root, &root_cache);
@@ -9984,7 +9994,7 @@ int cmd_check(int argc, char **argv)
 			fprintf(stderr, "[7/7] checking quota groups\n");
 		} else {
 			ctx.tp = TASK_QGROUPS;
-			task_start(ctx.info, &ctx.start_time, &ctx.item_count);
+			task_start(ctx.info);
 		}
 		ret = qgroup_verify_all(info);
 		task_stop(ctx.info);
diff --git a/convert/main.c b/convert/main.c
index ee51390bb072..e4152a5741f5 100644
--- a/convert/main.c
+++ b/convert/main.c
@@ -1182,7 +1182,7 @@ static int do_convert(const char *devname, u32 convert_flags, u32 nodesize,
 	if (progress) {
 		ctx.info = task_init(print_copied_inodes, NULL,
 				     after_copied_inodes, &ctx);
-		task_start(ctx.info, NULL, NULL);
+		task_start(ctx.info);
 	}
 	ret = copy_inodes(&cctx, root, convert_flags, &ctx);
 	if (ret) {
diff --git a/task-utils.c b/task-utils.c
index e837812f57f7..74d21e8b1ead 100644
--- a/task-utils.c
+++ b/task-utils.c
@@ -39,7 +39,7 @@ struct task_info *task_init(void *(*threadfn)(void *), int (*prefn)(void *),
 	return info;
 }
 
-int task_start(struct task_info *info, time_t *start_time, u64 *item_count)
+int task_start(struct task_info *info)
 {
 	int ret;
 
@@ -49,11 +49,6 @@ int task_start(struct task_info *info, time_t *start_time, u64 *item_count)
 	if (!info->threadfn)
 		return -1;
 
-	if (start_time)
-		*start_time = time(NULL);
-	if (item_count)
-		*item_count = 0;
-
 	if (info->prefn) {
 		ret = info->prefn(info->private_data);
 		if (ret)
diff --git a/task-utils.h b/task-utils.h
index 06ee87defe24..c0673d2a94bf 100644
--- a/task-utils.h
+++ b/task-utils.h
@@ -37,7 +37,7 @@ struct task_info {
 /* task life cycle */
 struct task_info *task_init(void *(*threadfn)(void *), int (*postfn)(void *),
 			    int (*pretfn)(void *), void *thread_private);
-int task_start(struct task_info *info, time_t *start_time, u64 *item_count);
+int task_start(struct task_info *info);
 void task_stop(struct task_info *info);
 void task_deinit(struct task_info *info);
 
-- 
2.17.1

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

* Re: [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start()
  2018-08-21 18:23 [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() damenly.su
  2018-08-21 18:23 ` [PATCH 1/2] btrfs-progs: task: add prefn() into struct task_info damenly.su
  2018-08-21 18:23 ` [PATCH 2/2] btrfs-progs: task: add init_ctx and clean up arguments of task_start() damenly.su
@ 2018-08-21 19:38 ` Nikolay Borisov
  2018-08-22  0:45   ` Su Yue
  2 siblings, 1 reply; 5+ messages in thread
From: Nikolay Borisov @ 2018-08-21 19:38 UTC (permalink / raw)
  To: damenly.su, linux-btrfs; +Cc: Su Yue



On 21.08.2018 21:23, damenly.su@gmail.com wrote:
> From: Su Yue <suy.fnst@cn.fujitsu.com>
> 
> This patchset is a prepare work for further process of check.
> 
> patch[1] adds prefn() to task_info and call it before pthread_create().
> 
> patch[2] moves time and count initializations into the new init_ctx(),
> assign it to prefun(). Remove arguments start_time and item_count.
> 

The patches look good albeit being isolated it's hard to see their
merit. I'd advise to submit them alongside whatever larger refactoring
you have in mind.

> 
> Su Yue (2):
>   btrfs-progs: task: add prefn() into struct task_info
>   btrfs-progs: task: add init_ctx and clean up arguments of task_start()
> 
>  check/main.c   | 27 +++++++++++++++++++--------
>  convert/main.c |  6 +++---
>  task-utils.c   | 17 +++++++++--------
>  task-utils.h   |  5 +++--
>  4 files changed, 34 insertions(+), 21 deletions(-)
> 

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

* Re: [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start()
  2018-08-21 19:38 ` [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() Nikolay Borisov
@ 2018-08-22  0:45   ` Su Yue
  0 siblings, 0 replies; 5+ messages in thread
From: Su Yue @ 2018-08-22  0:45 UTC (permalink / raw)
  To: Nikolay Borisov; +Cc: damenly.su, linux-btrfs, Su Yue



> Sent: Wednesday, August 22, 2018 at 3:38 AM
> From: "Nikolay Borisov" <nborisov@suse.com>
> To: damenly.su@gmail.com, linux-btrfs@vger.kernel.org
> Cc: "Su Yue" <suy.fnst@cn.fujitsu.com>
> Subject: Re: [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start()
>
> 
> 
> On 21.08.2018 21:23, damenly.su@gmail.com wrote:
> > From: Su Yue <suy.fnst@cn.fujitsu.com>
> > 
> > This patchset is a prepare work for further process of check.
> > 
> > patch[1] adds prefn() to task_info and call it before pthread_create().
> > 
> > patch[2] moves time and count initializations into the new init_ctx(),
> > assign it to prefun(). Remove arguments start_time and item_count.
> > 
> 
> The patches look good albeit being isolated it's hard to see their
> merit. I'd advise to submit them alongside whatever larger refactoring
> you have in mind.
> 
OK, it will be submitted together with others.

Thanks,
Su

> > 
> > Su Yue (2):
> >   btrfs-progs: task: add prefn() into struct task_info
> >   btrfs-progs: task: add init_ctx and clean up arguments of task_start()
> > 
> >  check/main.c   | 27 +++++++++++++++++++--------
> >  convert/main.c |  6 +++---
> >  task-utils.c   | 17 +++++++++--------
> >  task-utils.h   |  5 +++--
> >  4 files changed, 34 insertions(+), 21 deletions(-)
> > 
> 

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

end of thread, other threads:[~2018-08-22  4:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-21 18:23 [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() damenly.su
2018-08-21 18:23 ` [PATCH 1/2] btrfs-progs: task: add prefn() into struct task_info damenly.su
2018-08-21 18:23 ` [PATCH 2/2] btrfs-progs: task: add init_ctx and clean up arguments of task_start() damenly.su
2018-08-21 19:38 ` [PATCH 0/2] btrfs-progs: task: add prefn() to task_info and simplify task_start() Nikolay Borisov
2018-08-22  0:45   ` Su Yue

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.