]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: thunderx: Support for page recycling
authorSunil Goutham <sgoutham@cavium.com>
Tue, 2 May 2017 13:06:50 +0000 (18:36 +0530)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 May 2017 19:41:20 +0000 (15:41 -0400)
Adds support for page recycling for allocating receive buffers
to reduce cost of refilling RBDR ring. Also got rid of using
compound pages when pagesize is 4K, only order-0 pages now.

Only page is recycled, DMA mappings still needs to be done for
every receive buffer allocated due to following constraints
- Cannot have just one receive buffer per 64KB page.
- There is just one buffer ring shared across 8 Rx queues, so
  buffers of same page can go to any Rx queue.
- HW gives buffer address where packet has been DMA'ed and not
  the index into buffer ring.
This makes it not possible to resue DMA mapping info. So unfortunately
have to go through costly mapping route for every buffer.

Signed-off-by: Sunil Goutham <sgoutham@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cavium/thunder/nic.h
drivers/net/ethernet/cavium/thunder/nicvf_ethtool.c
drivers/net/ethernet/cavium/thunder/nicvf_queues.c
drivers/net/ethernet/cavium/thunder/nicvf_queues.h

index 6fb44218bf555f84d736d08ca2b383a3a99540f1..dca6aed4909452601f86d56780e90398611365ef 100644 (file)
@@ -252,12 +252,14 @@ struct nicvf_drv_stats {
        u64 tx_csum_overflow;
 
        /* driver debug stats */
-       u64 rcv_buffer_alloc_failures;
        u64 tx_tso;
        u64 tx_timeout;
        u64 txq_stop;
        u64 txq_wake;
 
+       u64 rcv_buffer_alloc_failures;
+       u64 page_alloc;
+
        struct u64_stats_sync   syncp;
 };
 
index 02a986cdbb39cf96ed8f28c6a9326d05af60a1f3..a89db5f3e26ef878fd8f839293ca18a7c8d00c57 100644 (file)
@@ -100,11 +100,12 @@ static const struct nicvf_stat nicvf_drv_stats[] = {
        NICVF_DRV_STAT(tx_csum_overlap),
        NICVF_DRV_STAT(tx_csum_overflow),
 
-       NICVF_DRV_STAT(rcv_buffer_alloc_failures),
        NICVF_DRV_STAT(tx_tso),
        NICVF_DRV_STAT(tx_timeout),
        NICVF_DRV_STAT(txq_stop),
        NICVF_DRV_STAT(txq_wake),
+       NICVF_DRV_STAT(rcv_buffer_alloc_failures),
+       NICVF_DRV_STAT(page_alloc),
 };
 
 static const struct nicvf_stat nicvf_queue_stats[] = {
index 7b0fd8d871ccdb2813473c1030714f7d4e1678a2..12f9709bb1808c6c343fec4730fe947aeb34e0b8 100644 (file)
@@ -19,8 +19,6 @@
 #include "q_struct.h"
 #include "nicvf_queues.h"
 
-#define NICVF_PAGE_ORDER ((PAGE_SIZE <= 4096) ?  PAGE_ALLOC_COSTLY_ORDER : 0)
-
 static inline u64 nicvf_iova_to_phys(struct nicvf *nic, dma_addr_t dma_addr)
 {
        /* Translation is installed only when IOMMU is present */
@@ -90,33 +88,88 @@ static void nicvf_free_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem)
        dmem->base = NULL;
 }
 
-/* Allocate buffer for packet reception
- * HW returns memory address where packet is DMA'ed but not a pointer
- * into RBDR ring, so save buffer address at the start of fragment and
- * align the start address to a cache aligned address
+/* Allocate a new page or recycle one if possible
+ *
+ * We cannot optimize dma mapping here, since
+ * 1. It's only one RBDR ring for 8 Rx queues.
+ * 2. CQE_RX gives address of the buffer where pkt has been DMA'ed
+ *    and not idx into RBDR ring, so can't refer to saved info.
+ * 3. There are multiple receive buffers per page
  */
-static inline int nicvf_alloc_rcv_buffer(struct nicvf *nic, gfp_t gfp,
-                                        u32 buf_len, u64 **rbuf)
+static struct pgcache *nicvf_alloc_page(struct nicvf *nic,
+                                       struct rbdr *rbdr, gfp_t gfp)
 {
-       int order = NICVF_PAGE_ORDER;
+       struct page *page = NULL;
+       struct pgcache *pgcache, *next;
+
+       /* Check if page is already allocated */
+       pgcache = &rbdr->pgcache[rbdr->pgidx];
+       page = pgcache->page;
+       /* Check if page can be recycled */
+       if (page && (page_ref_count(page) != 1))
+               page = NULL;
+
+       if (!page) {
+               page = alloc_pages(gfp | __GFP_COMP | __GFP_NOWARN, 0);
+               if (!page)
+                       return NULL;
+
+               this_cpu_inc(nic->pnicvf->drv_stats->page_alloc);
+
+               /* Check for space */
+               if (rbdr->pgalloc >= rbdr->pgcnt) {
+                       /* Page can still be used */
+                       nic->rb_page = page;
+                       return NULL;
+               }
+
+               /* Save the page in page cache */
+               pgcache->page = page;
+               rbdr->pgalloc++;
+       }
+
+       /* Take extra page reference for recycling */
+       page_ref_add(page, 1);
+
+       rbdr->pgidx++;
+       rbdr->pgidx &= (rbdr->pgcnt - 1);
+
+       /* Prefetch refcount of next page in page cache */
+       next = &rbdr->pgcache[rbdr->pgidx];
+       page = next->page;
+       if (page)
+               prefetch(&page->_refcount);
+
+       return pgcache;
+}
+
+/* Allocate buffer for packet reception */
+static inline int nicvf_alloc_rcv_buffer(struct nicvf *nic, struct rbdr *rbdr,
+                                        gfp_t gfp, u32 buf_len, u64 **rbuf)
+{
+       struct pgcache *pgcache = NULL;
 
        /* Check if request can be accomodated in previous allocated page */
        if (nic->rb_page &&
-           ((nic->rb_page_offset + buf_len) < (PAGE_SIZE << order))) {
+           ((nic->rb_page_offset + buf_len) <= PAGE_SIZE)) {
                nic->rb_pageref++;
                goto ret;
        }
 
        nicvf_get_page(nic);
+       nic->rb_page = NULL;
 
-       /* Allocate a new page */
-       nic->rb_page = alloc_pages(gfp | __GFP_COMP | __GFP_NOWARN,
-                                  order);
-       if (!nic->rb_page) {
+       /* Get new page, either recycled or new one */
+       pgcache = nicvf_alloc_page(nic, rbdr, gfp);
+       if (!pgcache && !nic->rb_page) {
                this_cpu_inc(nic->pnicvf->drv_stats->rcv_buffer_alloc_failures);
                return -ENOMEM;
        }
+
        nic->rb_page_offset = 0;
+       /* Check if it's recycled */
+       if (pgcache)
+               nic->rb_page = pgcache->page;
 ret:
        /* HW will ensure data coherency, CPU sync not required */
        *rbuf = (u64 *)((u64)dma_map_page_attrs(&nic->pdev->dev, nic->rb_page,
@@ -125,7 +178,7 @@ static inline int nicvf_alloc_rcv_buffer(struct nicvf *nic, gfp_t gfp,
                                                DMA_ATTR_SKIP_CPU_SYNC));
        if (dma_mapping_error(&nic->pdev->dev, (dma_addr_t)*rbuf)) {
                if (!nic->rb_page_offset)
-                       __free_pages(nic->rb_page, order);
+                       __free_pages(nic->rb_page, 0);
                nic->rb_page = NULL;
                return -ENOMEM;
        }
@@ -177,10 +230,26 @@ static int  nicvf_init_rbdr(struct nicvf *nic, struct rbdr *rbdr,
        rbdr->head = 0;
        rbdr->tail = 0;
 
+       /* Initialize page recycling stuff.
+        *
+        * Can't use single buffer per page especially with 64K pages.
+        * On embedded platforms i.e 81xx/83xx available memory itself
+        * is low and minimum ring size of RBDR is 8K, that takes away
+        * lots of memory.
+        */
+       rbdr->pgcnt = ring_len / (PAGE_SIZE / buf_size);
+       rbdr->pgcnt = roundup_pow_of_two(rbdr->pgcnt);
+       rbdr->pgcache = kzalloc(sizeof(*rbdr->pgcache) *
+                               rbdr->pgcnt, GFP_KERNEL);
+       if (!rbdr->pgcache)
+               return -ENOMEM;
+       rbdr->pgidx = 0;
+       rbdr->pgalloc = 0;
+
        nic->rb_page = NULL;
        for (idx = 0; idx < ring_len; idx++) {
-               err = nicvf_alloc_rcv_buffer(nic, GFP_KERNEL, RCV_FRAG_LEN,
-                                            &rbuf);
+               err = nicvf_alloc_rcv_buffer(nic, rbdr, GFP_KERNEL,
+                                            RCV_FRAG_LEN, &rbuf);
                if (err) {
                        /* To free already allocated and mapped ones */
                        rbdr->tail = idx - 1;
@@ -201,6 +270,7 @@ static void nicvf_free_rbdr(struct nicvf *nic, struct rbdr *rbdr)
 {
        int head, tail;
        u64 buf_addr, phys_addr;
+       struct pgcache *pgcache;
        struct rbdr_entry_t *desc;
 
        if (!rbdr)
@@ -234,6 +304,18 @@ static void nicvf_free_rbdr(struct nicvf *nic, struct rbdr *rbdr)
        if (phys_addr)
                put_page(virt_to_page(phys_to_virt(phys_addr)));
 
+       /* Sync page cache info */
+       smp_rmb();
+
+       /* Release additional page references held for recycling */
+       head = 0;
+       while (head < rbdr->pgcnt) {
+               pgcache = &rbdr->pgcache[head];
+               if (pgcache->page && page_ref_count(pgcache->page) != 0)
+                       put_page(pgcache->page);
+               head++;
+       }
+
        /* Free RBDR ring */
        nicvf_free_q_desc_mem(nic, &rbdr->dmem);
 }
@@ -269,13 +351,16 @@ static void nicvf_refill_rbdr(struct nicvf *nic, gfp_t gfp)
        else
                refill_rb_cnt = qs->rbdr_len - qcount - 1;
 
+       /* Sync page cache info */
+       smp_rmb();
+
        /* Start filling descs from tail */
        tail = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_TAIL, rbdr_idx) >> 3;
        while (refill_rb_cnt) {
                tail++;
                tail &= (rbdr->dmem.q_len - 1);
 
-               if (nicvf_alloc_rcv_buffer(nic, gfp, RCV_FRAG_LEN, &rbuf))
+               if (nicvf_alloc_rcv_buffer(nic, rbdr, gfp, RCV_FRAG_LEN, &rbuf))
                        break;
 
                desc = GET_RBDR_DESC(rbdr, tail);
index 10cb4b84625b14a0446996776689ae6733f4ccee..da4836601d8c7ae32d0c426fc13dd148ab2585a4 100644 (file)
@@ -213,6 +213,11 @@ struct q_desc_mem {
        void            *unalign_base;
 };
 
+struct pgcache {
+       struct page     *page;
+       u64             dma_addr;
+};
+
 struct rbdr {
        bool            enable;
        u32             dma_size;
@@ -222,6 +227,12 @@ struct rbdr {
        u32             head;
        u32             tail;
        struct q_desc_mem   dmem;
+
+       /* For page recycling */
+       int             pgidx;
+       int             pgcnt;
+       int             pgalloc;
+       struct pgcache  *pgcache;
 } ____cacheline_aligned_in_smp;
 
 struct rcv_queue {