lkml.org 
[lkml]   [2017]   [Apr]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Date
    Subject[PATCH 01/22] scatterlist: Introduce sg_map helper functions
    This patch introduces functions which kmap the pages inside an sgl. Two
    variants are provided: one if an offset is required and one if the
    offset is zero. These functions replace a common pattern of
    kmap(sg_page(sg)) that is used in about 50 places within the kernel.

    The motivation for this work is to eventually safely support sgls that
    contain io memory. In order for that to work, any access to the contents
    of an iomem SGL will need to be done with iomemcpy or hit some warning.
    (The exact details of how this will work have yet to be worked out.)
    Having all the kmaps in one place is just a first step in that
    direction. Additionally, seeing this helps cut down the users of sg_page,
    it should make any effort to go to struct-page-less DMAs a little
    easier (should that idea ever swing back into favour again).

    A flags option is added to select between a regular or atomic mapping so
    these functions can replace kmap(sg_page or kmap_atomic(sg_page.
    Future work may expand this to have flags for using page_address or
    vmap. Much further in the future, there may be a flag to allocate memory
    and copy the data from/to iomem.

    We also add the semantic that sg_map can fail to create a mapping,
    despite the fact that the current code this is replacing is assumed to
    never fail and the current version of these functions cannot fail. This
    is to support iomem which either have to fail to create the mapping or
    allocate memory as a bounce buffer which itself can fail.

    Also, in terms of cleanup, a few of the existing kmap(sg_page) users
    play things a bit loose in terms of whether they apply sg->offset
    so using these helper functions should help avoid such issues.

    Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
    ---
    drivers/dma-buf/dma-buf.c | 3 ++
    include/linux/scatterlist.h | 97 +++++++++++++++++++++++++++++++++++++++++++++
    2 files changed, 100 insertions(+)

    diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c
    index 0007b79..b95934b 100644
    --- a/drivers/dma-buf/dma-buf.c
    +++ b/drivers/dma-buf/dma-buf.c
    @@ -37,6 +37,9 @@

    #include <uapi/linux/dma-buf.h>

    +/* Prevent the highmem.h macro from aliasing ops->kunmap_atomic */
    +#undef kunmap_atomic
    +
    static inline int is_dma_buf_file(struct file *);

    struct dma_buf_list {
    diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
    index cb3c8fe..acd4d73 100644
    --- a/include/linux/scatterlist.h
    +++ b/include/linux/scatterlist.h
    @@ -5,6 +5,7 @@
    #include <linux/types.h>
    #include <linux/bug.h>
    #include <linux/mm.h>
    +#include <linux/highmem.h>
    #include <asm/io.h>

    struct scatterlist {
    @@ -126,6 +127,102 @@ static inline struct page *sg_page(struct scatterlist *sg)
    return (struct page *)((sg)->page_link & ~0x3);
    }

    +#define SG_KMAP (1 << 0) /* create a mapping with kmap */
    +#define SG_KMAP_ATOMIC (1 << 1) /* create a mapping with kmap_atomic */
    +
    +/**
    + * sg_map_offset - kmap a page inside an sgl
    + * @sg: SG entry
    + * @offset: Offset into entry
    + * @flags: Flags for creating the mapping
    + *
    + * Description:
    + * Use this function to map a page in the scatterlist at the specified
    + * offset. sg->offset is already added for you. Note: the semantics of
    + * this function are that it may fail. Thus, its output should be checked
    + * with IS_ERR and PTR_ERR. Otherwise, a pointer to the specified offset
    + * in the mapped page is returned.
    + *
    + * Flags can be any of:
    + * * SG_KMAP - Use kmap to create the mapping
    + * * SG_KMAP_ATOMIC - Use kmap_atomic to map the page atommically.
    + * Thus, the rules of that function apply: the cpu
    + * may not sleep until it is unmaped.
    + *
    + * Also, consider carefully whether this function is appropriate. It is
    + * largely not recommended for new code and if the sgl came from another
    + * subsystem and you don't know what kind of memory might be in the list
    + * then you definitely should not call it. Non-mappable memory may be in
    + * the sgl and thus this function may fail unexpectedly.
    + **/
    +static inline void *sg_map_offset(struct scatterlist *sg, size_t offset,
    + int flags)
    +{
    + struct page *pg;
    + unsigned int pg_off;
    +
    + offset += sg->offset;
    + pg = nth_page(sg_page(sg), offset >> PAGE_SHIFT);
    + pg_off = offset_in_page(offset);
    +
    + if (flags & SG_KMAP_ATOMIC)
    + return kmap_atomic(pg) + pg_off;
    + else
    + return kmap(pg) + pg_off;
    +}
    +
    +/**
    + * sg_unkmap_offset - unmap a page that was mapped with sg_map_offset
    + * @sg: SG entry
    + * @addr: address returned by sg_map_offset
    + * @offset: Offset into entry (same as specified for sg_map_offset)
    + * @flags: Flags, which are the same specified for sg_map_offset
    + *
    + * Description:
    + * Unmap the page that was mapped with sg_map_offset
    + *
    + **/
    +static inline void sg_unmap_offset(struct scatterlist *sg, void *addr,
    + size_t offset, int flags)
    +{
    + struct page *pg = nth_page(sg_page(sg), offset >> PAGE_SHIFT);
    + unsigned int pg_off = offset_in_page(offset);
    +
    + if (flags & SG_KMAP_ATOMIC)
    + kunmap_atomic(addr - sg->offset - pg_off);
    + else
    + kunmap(pg);
    +}
    +
    +/**
    + * sg_map - map the first page in the scatterlist entry
    + * @sg: SG entry
    + * @flags: Flags, see sg_map_offset for a description
    + *
    + * Description:
    + * Same as sg_map_offset(sg, 0, flags);
    + *
    + **/
    +static inline void *sg_map(struct scatterlist *sg, int flags)
    +{
    + return sg_map_offset(sg, 0, flags);
    +}
    +
    +/**
    + * sg_unmap - unmap a page mapped with sg_map
    + * @sg: SG entry
    + * @addr: address returned by sg_map
    + * @flags: Flags, see sg_map_offset for a description
    + *
    + * Description:
    + * Same as sg_map_offset(sg, 0, flags);
    + *
    + **/
    +static inline void sg_unmap(struct scatterlist *sg, void *addr, int flags)
    +{
    + sg_unmap_offset(sg, addr, 0, flags);
    +}
    +
    /**
    * sg_set_buf - Set sg entry to point at given data
    * @sg: SG entry
    --
    2.1.4
    \
     
     \ /
      Last update: 2017-04-14 00:11    [W:5.818 / U:0.000 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site