Re: [RESUBMIT] [PATCH] Replace mentions of list_struct to list_head

2014-11-14 Thread Mauro Carvalho Chehab
Em Thu, 13 Nov 2014 20:48:41 -0500
Steven Rostedt rost...@goodmis.org escreveu:

 On Fri, 14 Nov 2014 05:09:55 +0400
 Andrey Utkin andrey.krieger.ut...@gmail.com wrote:
 
  There's no such thing as list_struct.
 
 I guess there isn't.

Indeed ;)
 
  
  Signed-off-by: Andrey Utkin andrey.krieger.ut...@gmail.com
 
 Acked-by: Steven Rostedt rost...@goodmis.org

Acked-by: Mauro Carvalho Chehab mche...@osg.samsung.com

 
 -- Steve
 
  ---
   drivers/gpu/drm/radeon/mkregtable.c  | 24 
   drivers/media/pci/cx18/cx18-driver.h |  2 +-
   include/linux/list.h | 34 
  +-
   include/linux/plist.h| 10 +-
   include/linux/rculist.h  |  8 
   scripts/kconfig/list.h   |  6 +++---
   tools/usb/usbip/libsrc/list.h|  2 +-
   7 files changed, 43 insertions(+), 43 deletions(-)
  
 
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


RE: [RESUBMIT] [PATCH] Replace mentions of list_struct to list_head

2014-11-14 Thread Deucher, Alexander
 -Original Message-
 From: Andrey Utkin [mailto:andrey.krieger.ut...@gmail.com]
 Sent: Thursday, November 13, 2014 8:10 PM
 To: linux-...@vger.kernel.org; linux-kbu...@vger.kernel.org; linux-
 me...@vger.kernel.org; linux-ker...@vger.kernel.org; dri-
 de...@lists.freedesktop.org; kernel-janit...@vger.kernel.org;
 gre...@linuxfoundation.org; mgor...@suse.de; ddstr...@ieee.org;
 jeffrey.t.kirs...@intel.com; yamad...@jp.panasonic.com;
 kenhel...@firemail.de; o...@redhat.com; a...@linux-foundation.org;
 shuah...@samsung.com; valentina.mane...@gmail.com;
 yann.morin.1...@free.fr; la...@cn.fujitsu.com;
 mathieu.desnoy...@efficios.com; rost...@goodmis.org;
 j...@joshtriplett.org; paul...@linux.vnet.ibm.com;
 m.che...@samsung.com; awa...@md.metrocast.net; airl...@linux.ie;
 Koenig, Christian; Deucher, Alexander; triv...@kernel.org
 Cc: Andrey Utkin
 Subject: [RESUBMIT] [PATCH] Replace mentions of list_struct to
 list_head
 
 There's no such thing as list_struct.
 
 Signed-off-by: Andrey Utkin andrey.krieger.ut...@gmail.com

Acked-by: Alex Deucher alexander.deuc...@amd.com

 ---
  drivers/gpu/drm/radeon/mkregtable.c  | 24 
  drivers/media/pci/cx18/cx18-driver.h |  2 +-
  include/linux/list.h | 34 +-
  include/linux/plist.h| 10 +-
  include/linux/rculist.h  |  8 
  scripts/kconfig/list.h   |  6 +++---
  tools/usb/usbip/libsrc/list.h|  2 +-
  7 files changed, 43 insertions(+), 43 deletions(-)
 
 diff --git a/drivers/gpu/drm/radeon/mkregtable.c
 b/drivers/gpu/drm/radeon/mkregtable.c
 index 4a85bb6..b928c17 100644
 --- a/drivers/gpu/drm/radeon/mkregtable.c
 +++ b/drivers/gpu/drm/radeon/mkregtable.c
 @@ -347,7 +347,7 @@ static inline void list_splice_tail_init(struct list_head
 *list,
   * list_entry - get the struct for this entry
   * @ptr: the struct list_head pointer.
   * @type:the type of the struct this is embedded in.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   */
  #define list_entry(ptr, type, member) \
   container_of(ptr, type, member)
 @@ -356,7 +356,7 @@ static inline void list_splice_tail_init(struct list_head
 *list,
   * list_first_entry - get the first element from a list
   * @ptr: the list head to take the element from.
   * @type:the type of the struct this is embedded in.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Note, that list is expected to be not empty.
   */
 @@ -406,7 +406,7 @@ static inline void list_splice_tail_init(struct list_head
 *list,
   * list_for_each_entry   -   iterate over list of given type
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   */
  #define list_for_each_entry(pos, head, member)
   \
   for (pos = list_entry((head)-next, typeof(*pos), member);  \
 @@ -417,7 +417,7 @@ static inline void list_splice_tail_init(struct list_head
 *list,
   * list_for_each_entry_reverse - iterate backwards over list of given type.
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   */
  #define list_for_each_entry_reverse(pos, head, member)
   \
   for (pos = list_entry((head)-prev, typeof(*pos), member);  \
 @@ -428,7 +428,7 @@ static inline void list_splice_tail_init(struct list_head
 *list,
   * list_prepare_entry - prepare a pos entry for use in
 list_for_each_entry_continue()
   * @pos: the type * to use as a start point
   * @head:the head of the list
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Prepares a pos entry for use as a start point in
 list_for_each_entry_continue().
   */
 @@ -439,7 +439,7 @@ static inline void list_splice_tail_init(struct list_head
 *list,
   * list_for_each_entry_continue - continue iteration over list of given type
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Continue to iterate over list of given type, continuing after
   * the current position.
 @@ -453,7 +453,7 @@ static inline void list_splice_tail_init(struct list_head
 *list,
   * list_for_each_entry_continue_reverse - iterate backwards from the given
 point
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head

Re: [RESUBMIT] [PATCH] Replace mentions of list_struct to list_head

2014-11-14 Thread Paul E. McKenney
On Fri, Nov 14, 2014 at 05:09:55AM +0400, Andrey Utkin wrote:
 There's no such thing as list_struct.
 
 Signed-off-by: Andrey Utkin andrey.krieger.ut...@gmail.com

May as well get group rates on the acks...  ;-)

Acked-by: Paul E. McKenney paul...@linux.vnet.ibm.com

 ---
  drivers/gpu/drm/radeon/mkregtable.c  | 24 
  drivers/media/pci/cx18/cx18-driver.h |  2 +-
  include/linux/list.h | 34 +-
  include/linux/plist.h| 10 +-
  include/linux/rculist.h  |  8 
  scripts/kconfig/list.h   |  6 +++---
  tools/usb/usbip/libsrc/list.h|  2 +-
  7 files changed, 43 insertions(+), 43 deletions(-)
 
 diff --git a/drivers/gpu/drm/radeon/mkregtable.c 
 b/drivers/gpu/drm/radeon/mkregtable.c
 index 4a85bb6..b928c17 100644
 --- a/drivers/gpu/drm/radeon/mkregtable.c
 +++ b/drivers/gpu/drm/radeon/mkregtable.c
 @@ -347,7 +347,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_entry - get the struct for this entry
   * @ptr: the struct list_head pointer.
   * @type:the type of the struct this is embedded in.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   */
  #define list_entry(ptr, type, member) \
   container_of(ptr, type, member)
 @@ -356,7 +356,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_first_entry - get the first element from a list
   * @ptr: the list head to take the element from.
   * @type:the type of the struct this is embedded in.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Note, that list is expected to be not empty.
   */
 @@ -406,7 +406,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_for_each_entry   -   iterate over list of given type
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   */
  #define list_for_each_entry(pos, head, member)   
 \
   for (pos = list_entry((head)-next, typeof(*pos), member);  \
 @@ -417,7 +417,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_for_each_entry_reverse - iterate backwards over list of given type.
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   */
  #define list_for_each_entry_reverse(pos, head, member)   
 \
   for (pos = list_entry((head)-prev, typeof(*pos), member);  \
 @@ -428,7 +428,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_prepare_entry - prepare a pos entry for use in 
 list_for_each_entry_continue()
   * @pos: the type * to use as a start point
   * @head:the head of the list
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Prepares a pos entry for use as a start point in 
 list_for_each_entry_continue().
   */
 @@ -439,7 +439,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_for_each_entry_continue - continue iteration over list of given type
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Continue to iterate over list of given type, continuing after
   * the current position.
 @@ -453,7 +453,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_for_each_entry_continue_reverse - iterate backwards from the given 
 point
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Start to iterate over list of given type backwards, continuing after
   * the current position.
 @@ -467,7 +467,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * list_for_each_entry_from - iterate over list of given type from the 
 current point
   * @pos: the type * to use as a loop cursor.
   * @head:the head for your list.
 - * @member:  the name of the list_struct within the struct.
 + * @member:  the name of the list_head within the struct.
   *
   * Iterate over list of given type, continuing from current position.
   */
 @@ -480,7 +480,7 @@ static inline void list_splice_tail_init(struct list_head 
 *list,
   * @pos: the type * to use as a loop cursor.
   * @n:   another 

[RESUBMIT] [PATCH] Replace mentions of list_struct to list_head

2014-11-13 Thread Andrey Utkin
There's no such thing as list_struct.

Signed-off-by: Andrey Utkin andrey.krieger.ut...@gmail.com
---
 drivers/gpu/drm/radeon/mkregtable.c  | 24 
 drivers/media/pci/cx18/cx18-driver.h |  2 +-
 include/linux/list.h | 34 +-
 include/linux/plist.h| 10 +-
 include/linux/rculist.h  |  8 
 scripts/kconfig/list.h   |  6 +++---
 tools/usb/usbip/libsrc/list.h|  2 +-
 7 files changed, 43 insertions(+), 43 deletions(-)

diff --git a/drivers/gpu/drm/radeon/mkregtable.c 
b/drivers/gpu/drm/radeon/mkregtable.c
index 4a85bb6..b928c17 100644
--- a/drivers/gpu/drm/radeon/mkregtable.c
+++ b/drivers/gpu/drm/radeon/mkregtable.c
@@ -347,7 +347,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_entry - get the struct for this entry
  * @ptr:   the struct list_head pointer.
  * @type:  the type of the struct this is embedded in.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  */
 #define list_entry(ptr, type, member) \
container_of(ptr, type, member)
@@ -356,7 +356,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_first_entry - get the first element from a list
  * @ptr:   the list head to take the element from.
  * @type:  the type of the struct this is embedded in.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  *
  * Note, that list is expected to be not empty.
  */
@@ -406,7 +406,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_for_each_entry -   iterate over list of given type
  * @pos:   the type * to use as a loop cursor.
  * @head:  the head for your list.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  */
 #define list_for_each_entry(pos, head, member) \
for (pos = list_entry((head)-next, typeof(*pos), member);  \
@@ -417,7 +417,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_for_each_entry_reverse - iterate backwards over list of given type.
  * @pos:   the type * to use as a loop cursor.
  * @head:  the head for your list.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  */
 #define list_for_each_entry_reverse(pos, head, member) \
for (pos = list_entry((head)-prev, typeof(*pos), member);  \
@@ -428,7 +428,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_prepare_entry - prepare a pos entry for use in 
list_for_each_entry_continue()
  * @pos:   the type * to use as a start point
  * @head:  the head of the list
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  *
  * Prepares a pos entry for use as a start point in 
list_for_each_entry_continue().
  */
@@ -439,7 +439,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_for_each_entry_continue - continue iteration over list of given type
  * @pos:   the type * to use as a loop cursor.
  * @head:  the head for your list.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  *
  * Continue to iterate over list of given type, continuing after
  * the current position.
@@ -453,7 +453,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_for_each_entry_continue_reverse - iterate backwards from the given 
point
  * @pos:   the type * to use as a loop cursor.
  * @head:  the head for your list.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  *
  * Start to iterate over list of given type backwards, continuing after
  * the current position.
@@ -467,7 +467,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * list_for_each_entry_from - iterate over list of given type from the current 
point
  * @pos:   the type * to use as a loop cursor.
  * @head:  the head for your list.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  *
  * Iterate over list of given type, continuing from current position.
  */
@@ -480,7 +480,7 @@ static inline void list_splice_tail_init(struct list_head 
*list,
  * @pos:   the type * to use as a loop cursor.
  * @n: another type * to use as temporary storage
  * @head:  the head for your list.
- * @member:the name of the list_struct within the struct.
+ * @member:the name of the list_head within the struct.
  */
 #define 

Re: [RESUBMIT] [PATCH] Replace mentions of list_struct to list_head

2014-11-13 Thread Steven Rostedt
On Fri, 14 Nov 2014 05:09:55 +0400
Andrey Utkin andrey.krieger.ut...@gmail.com wrote:

 There's no such thing as list_struct.

I guess there isn't.

 
 Signed-off-by: Andrey Utkin andrey.krieger.ut...@gmail.com

Acked-by: Steven Rostedt rost...@goodmis.org

-- Steve

 ---
  drivers/gpu/drm/radeon/mkregtable.c  | 24 
  drivers/media/pci/cx18/cx18-driver.h |  2 +-
  include/linux/list.h | 34 +-
  include/linux/plist.h| 10 +-
  include/linux/rculist.h  |  8 
  scripts/kconfig/list.h   |  6 +++---
  tools/usb/usbip/libsrc/list.h|  2 +-
  7 files changed, 43 insertions(+), 43 deletions(-)
 

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html