linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RESEND PATCH] llist: Provide a safe version for llist_for_each
@ 2017-05-12  0:36 Byungchul Park
  2017-05-12  5:55 ` [RESEND PATCH] mm: Don't reinvent the wheel but use existing llist API Byungchul Park
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Byungchul Park @ 2017-05-12  0:36 UTC (permalink / raw)
  To: peterz; +Cc: linux-kernel, kernel-team

Sometimes we have to dereference next field of llist node before entering
loop becasue the node might be deleted or the next field might be
modified within the loop. So this adds the safe version of llist_for_each,
that is, llist_for_each_safe.

Signed-off-by: Byungchul Park <byungchul.park@lge.com>
Reviewed-by: "Huang, Ying" <ying.huang@intel.com>
---
 include/linux/llist.h | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/include/linux/llist.h b/include/linux/llist.h
index fd4ca0b..b90c9f2 100644
--- a/include/linux/llist.h
+++ b/include/linux/llist.h
@@ -105,6 +105,25 @@ static inline void init_llist_head(struct llist_head *list)
 	for ((pos) = (node); pos; (pos) = (pos)->next)
 
 /**
+ * llist_for_each_safe - iterate over some deleted entries of a lock-less list
+ *			 safe against removal of list entry
+ * @pos:	the &struct llist_node to use as a loop cursor
+ * @n:		another &struct llist_node to use as temporary storage
+ * @node:	the first entry of deleted list entries
+ *
+ * In general, some entries of the lock-less list can be traversed
+ * safely only after being deleted from list, so start with an entry
+ * instead of list head.
+ *
+ * If being used on entries deleted from lock-less list directly, the
+ * traverse order is from the newest to the oldest added entry.  If
+ * you want to traverse from the oldest to the newest, you must
+ * reverse the order by yourself before traversing.
+ */
+#define llist_for_each_safe(pos, n, node)			\
+	for ((pos) = (node); (pos) && ((n) = (pos)->next, true); (pos) = (n))
+
+/**
  * llist_for_each_entry - iterate over some deleted entries of lock-less list of given type
  * @pos:	the type * to use as a loop cursor.
  * @node:	the fist entry of deleted list entries.
-- 
1.9.1

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

* [RESEND PATCH] mm: Don't reinvent the wheel but use existing llist API
  2017-05-12  0:36 [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
@ 2017-05-12  5:55 ` Byungchul Park
  2017-05-18  1:58 ` [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Byungchul Park @ 2017-05-12  5:55 UTC (permalink / raw)
  To: viro; +Cc: linux-kernel, kernel-team

Although llist provides proper APIs, they are not used. Make them used.

Signed-off-by: Byungchul Park <byungchul.park@lge.com>
---
 mm/vmalloc.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 3ca82d4..8c0eb45 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -49,12 +49,10 @@ struct vfree_deferred {
 static void free_work(struct work_struct *w)
 {
 	struct vfree_deferred *p = container_of(w, struct vfree_deferred, wq);
-	struct llist_node *llnode = llist_del_all(&p->list);
-	while (llnode) {
-		void *p = llnode;
-		llnode = llist_next(llnode);
-		__vunmap(p, 1);
-	}
+	struct llist_node *t, *llnode;
+
+	llist_for_each_safe(llnode, t, llist_del_all(&p->list))
+		__vunmap((void *)llnode, 1);
 }
 
 /*** Page table manipulation functions ***/
-- 
1.9.1

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

* Re: [RESEND PATCH] llist: Provide a safe version for llist_for_each
  2017-05-12  0:36 [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
  2017-05-12  5:55 ` [RESEND PATCH] mm: Don't reinvent the wheel but use existing llist API Byungchul Park
@ 2017-05-18  1:58 ` Byungchul Park
  2017-05-18  2:03 ` Byungchul Park
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Byungchul Park @ 2017-05-18  1:58 UTC (permalink / raw)
  To: peterz; +Cc: linux-kernel, kernel-team, viro

On Fri, May 12, 2017 at 09:36:56AM +0900, Byungchul Park wrote:
> Sometimes we have to dereference next field of llist node before entering
> loop becasue the node might be deleted or the next field might be
> modified within the loop. So this adds the safe version of llist_for_each,
> that is, llist_for_each_safe.

+cc viro@zeniv.linux.org.uk

> 
> Signed-off-by: Byungchul Park <byungchul.park@lge.com>
> Reviewed-by: "Huang, Ying" <ying.huang@intel.com>
> ---
>  include/linux/llist.h | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
> diff --git a/include/linux/llist.h b/include/linux/llist.h
> index fd4ca0b..b90c9f2 100644
> --- a/include/linux/llist.h
> +++ b/include/linux/llist.h
> @@ -105,6 +105,25 @@ static inline void init_llist_head(struct llist_head *list)
>  	for ((pos) = (node); pos; (pos) = (pos)->next)
>  
>  /**
> + * llist_for_each_safe - iterate over some deleted entries of a lock-less list
> + *			 safe against removal of list entry
> + * @pos:	the &struct llist_node to use as a loop cursor
> + * @n:		another &struct llist_node to use as temporary storage
> + * @node:	the first entry of deleted list entries
> + *
> + * In general, some entries of the lock-less list can be traversed
> + * safely only after being deleted from list, so start with an entry
> + * instead of list head.
> + *
> + * If being used on entries deleted from lock-less list directly, the
> + * traverse order is from the newest to the oldest added entry.  If
> + * you want to traverse from the oldest to the newest, you must
> + * reverse the order by yourself before traversing.
> + */
> +#define llist_for_each_safe(pos, n, node)			\
> +	for ((pos) = (node); (pos) && ((n) = (pos)->next, true); (pos) = (n))
> +
> +/**
>   * llist_for_each_entry - iterate over some deleted entries of lock-less list of given type
>   * @pos:	the type * to use as a loop cursor.
>   * @node:	the fist entry of deleted list entries.
> -- 
> 1.9.1

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

* Re: [RESEND PATCH] llist: Provide a safe version for llist_for_each
  2017-05-12  0:36 [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
  2017-05-12  5:55 ` [RESEND PATCH] mm: Don't reinvent the wheel but use existing llist API Byungchul Park
  2017-05-18  1:58 ` [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
@ 2017-05-18  2:03 ` Byungchul Park
  2017-05-18  8:36 ` Peter Zijlstra
  2017-05-23  8:43 ` [tip:sched/core] llist: Provide a safe version for llist_for_each() tip-bot for Byungchul Park
  4 siblings, 0 replies; 6+ messages in thread
From: Byungchul Park @ 2017-05-18  2:03 UTC (permalink / raw)
  To: peterz; +Cc: linux-kernel, kernel-team, ying.huang

On Fri, May 12, 2017 at 09:36:56AM +0900, Byungchul Park wrote:
> Sometimes we have to dereference next field of llist node before entering
> loop becasue the node might be deleted or the next field might be
> modified within the loop. So this adds the safe version of llist_for_each,
> that is, llist_for_each_safe.

+cc ying.huang@intel.com

> 
> Signed-off-by: Byungchul Park <byungchul.park@lge.com>
> Reviewed-by: "Huang, Ying" <ying.huang@intel.com>
> ---
>  include/linux/llist.h | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
> diff --git a/include/linux/llist.h b/include/linux/llist.h
> index fd4ca0b..b90c9f2 100644
> --- a/include/linux/llist.h
> +++ b/include/linux/llist.h
> @@ -105,6 +105,25 @@ static inline void init_llist_head(struct llist_head *list)
>  	for ((pos) = (node); pos; (pos) = (pos)->next)
>  
>  /**
> + * llist_for_each_safe - iterate over some deleted entries of a lock-less list
> + *			 safe against removal of list entry
> + * @pos:	the &struct llist_node to use as a loop cursor
> + * @n:		another &struct llist_node to use as temporary storage
> + * @node:	the first entry of deleted list entries
> + *
> + * In general, some entries of the lock-less list can be traversed
> + * safely only after being deleted from list, so start with an entry
> + * instead of list head.
> + *
> + * If being used on entries deleted from lock-less list directly, the
> + * traverse order is from the newest to the oldest added entry.  If
> + * you want to traverse from the oldest to the newest, you must
> + * reverse the order by yourself before traversing.
> + */
> +#define llist_for_each_safe(pos, n, node)			\
> +	for ((pos) = (node); (pos) && ((n) = (pos)->next, true); (pos) = (n))
> +
> +/**
>   * llist_for_each_entry - iterate over some deleted entries of lock-less list of given type
>   * @pos:	the type * to use as a loop cursor.
>   * @node:	the fist entry of deleted list entries.
> -- 
> 1.9.1

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

* Re: [RESEND PATCH] llist: Provide a safe version for llist_for_each
  2017-05-12  0:36 [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
                   ` (2 preceding siblings ...)
  2017-05-18  2:03 ` Byungchul Park
@ 2017-05-18  8:36 ` Peter Zijlstra
  2017-05-23  8:43 ` [tip:sched/core] llist: Provide a safe version for llist_for_each() tip-bot for Byungchul Park
  4 siblings, 0 replies; 6+ messages in thread
From: Peter Zijlstra @ 2017-05-18  8:36 UTC (permalink / raw)
  To: Byungchul Park; +Cc: linux-kernel, kernel-team



OK, picked up all 4:

patches/byungchul_park-llist-provide_a_safe_version_for_llist_for_each.patch
patches/byungchul_park-sched-don_t_reinvent_the_wheel_but_use_existing_llist_api.patch
patches/byungchul_park-sched_rt-remove_unnecessary_condition_in_push_rt_task.patch
patches/byungchul_park-sched_deadline-remove_unnecessary_condition_in_push_dl_task.patch

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

* [tip:sched/core] llist: Provide a safe version for llist_for_each()
  2017-05-12  0:36 [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
                   ` (3 preceding siblings ...)
  2017-05-18  8:36 ` Peter Zijlstra
@ 2017-05-23  8:43 ` tip-bot for Byungchul Park
  4 siblings, 0 replies; 6+ messages in thread
From: tip-bot for Byungchul Park @ 2017-05-23  8:43 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: tglx, torvalds, kernel-team, hpa, peterz, linux-kernel,
	ying.huang, byungchul.park, mingo

Commit-ID:  d714893e61cd8c6e5c7e095f7dd615aa434bca95
Gitweb:     http://git.kernel.org/tip/d714893e61cd8c6e5c7e095f7dd615aa434bca95
Author:     Byungchul Park <byungchul.park@lge.com>
AuthorDate: Fri, 12 May 2017 09:36:56 +0900
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Tue, 23 May 2017 10:01:33 +0200

llist: Provide a safe version for llist_for_each()

Sometimes we have to dereference next field of llist node before entering
loop becasue the node might be deleted or the next field might be
modified within the loop. So this adds the safe version of llist_for_each(),
that is, llist_for_each_safe().

Signed-off-by: Byungchul Park <byungchul.park@lge.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Huang, Ying <ying.huang@intel.com>
Cc: <kernel-team@lge.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1494549416-10539-1-git-send-email-byungchul.park@lge.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 include/linux/llist.h | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/include/linux/llist.h b/include/linux/llist.h
index 171baa9..d117381 100644
--- a/include/linux/llist.h
+++ b/include/linux/llist.h
@@ -110,6 +110,25 @@ static inline void init_llist_head(struct llist_head *list)
 	for ((pos) = (node); pos; (pos) = (pos)->next)
 
 /**
+ * llist_for_each_safe - iterate over some deleted entries of a lock-less list
+ *			 safe against removal of list entry
+ * @pos:	the &struct llist_node to use as a loop cursor
+ * @n:		another &struct llist_node to use as temporary storage
+ * @node:	the first entry of deleted list entries
+ *
+ * In general, some entries of the lock-less list can be traversed
+ * safely only after being deleted from list, so start with an entry
+ * instead of list head.
+ *
+ * If being used on entries deleted from lock-less list directly, the
+ * traverse order is from the newest to the oldest added entry.  If
+ * you want to traverse from the oldest to the newest, you must
+ * reverse the order by yourself before traversing.
+ */
+#define llist_for_each_safe(pos, n, node)			\
+	for ((pos) = (node); (pos) && ((n) = (pos)->next, true); (pos) = (n))
+
+/**
  * llist_for_each_entry - iterate over some deleted entries of lock-less list of given type
  * @pos:	the type * to use as a loop cursor.
  * @node:	the fist entry of deleted list entries.

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

end of thread, other threads:[~2017-05-23  8:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-12  0:36 [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
2017-05-12  5:55 ` [RESEND PATCH] mm: Don't reinvent the wheel but use existing llist API Byungchul Park
2017-05-18  1:58 ` [RESEND PATCH] llist: Provide a safe version for llist_for_each Byungchul Park
2017-05-18  2:03 ` Byungchul Park
2017-05-18  8:36 ` Peter Zijlstra
2017-05-23  8:43 ` [tip:sched/core] llist: Provide a safe version for llist_for_each() tip-bot for Byungchul Park

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