• Yunsheng Lin's avatar
    page_pool: add interface to manipulate frag count in page pool · 0e9d2a0a
    Yunsheng Lin authored
    For 32 bit systems with 64 bit dma, dma_addr[1] is used to
    store the upper 32 bit dma addr, those system should be rare
    those days.
    
    For normal system, the dma_addr[1] in 'struct page' is not
    used, so we can reuse dma_addr[1] for storing frag count,
    which means how many frags this page might be splited to.
    
    In order to simplify the page frag support in the page pool,
    the PAGE_POOL_DMA_USE_PP_FRAG_COUNT macro is added to indicate
    the 32 bit systems with 64 bit dma, and the page frag support
    in page pool is disabled for such system.
    
    The newly added page_pool_set_frag_count() is called to reserve
    the maximum frag count before any page frag is passed to the
    user. The page_pool_atomic_sub_frag_count_return() is called
    when user is done with the page frag.
    Signed-off-by: default avatarYunsheng Lin <linyunsheng@huawei.com>
    Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
    0e9d2a0a
page_pool.c 17.6 KB