lkml.org 
[lkml]   [2023]   [Aug]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[RESEND PATCH v10 01/25] llist: Move llist_{head,node} definition to types.h
    Date
    llist_head and llist_node can be used by very primitives. For example,
    Dept for tracking dependency uses llist things in its header. To avoid
    header dependency, move those to types.h.

    Signed-off-by: Byungchul Park <byungchul@sk.com>
    ---
    include/linux/llist.h | 8 --------
    include/linux/types.h | 8 ++++++++
    2 files changed, 8 insertions(+), 8 deletions(-)

    diff --git a/include/linux/llist.h b/include/linux/llist.h
    index 85bda2d02d65..99cc3c30f79c 100644
    --- a/include/linux/llist.h
    +++ b/include/linux/llist.h
    @@ -53,14 +53,6 @@
    #include <linux/stddef.h>
    #include <linux/types.h>

    -struct llist_head {
    - struct llist_node *first;
    -};
    -
    -struct llist_node {
    - struct llist_node *next;
    -};
    -
    #define LLIST_HEAD_INIT(name) { NULL }
    #define LLIST_HEAD(name) struct llist_head name = LLIST_HEAD_INIT(name)

    diff --git a/include/linux/types.h b/include/linux/types.h
    index 688fb943556a..0ddb0d722b3d 100644
    --- a/include/linux/types.h
    +++ b/include/linux/types.h
    @@ -193,6 +193,14 @@ struct hlist_node {
    struct hlist_node *next, **pprev;
    };

    +struct llist_head {
    + struct llist_node *first;
    +};
    +
    +struct llist_node {
    + struct llist_node *next;
    +};
    +
    struct ustat {
    __kernel_daddr_t f_tfree;
    #ifdef CONFIG_ARCH_32BIT_USTAT_F_TINODE
    --
    2.17.1
    \
     
     \ /
      Last update: 2023-08-21 06:35    [W:4.066 / U:0.080 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site