]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: thunderx: Alloc higher order pages when pagesize is small
authorSunil Goutham <sgoutham@cavium.com>
Thu, 11 Feb 2016 16:20:26 +0000 (21:50 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Feb 2016 16:30:26 +0000 (11:30 -0500)
Allocate higher order pages when pagesize is small, this will
reduce number of calls to page allocator and wastage of memory.

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

index 50ab6f4d8c196cadb788593f077633a6eea06cde..5adb208c1ad2f3ff57f7641d7dde049cbec7798f 100644 (file)
@@ -78,7 +78,7 @@ static void nicvf_free_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem)
 static inline int nicvf_alloc_rcv_buffer(struct nicvf *nic, gfp_t gfp,
                                         u32 buf_len, u64 **rbuf)
 {
-       int order = get_order(buf_len);
+       int order = (PAGE_SIZE <= 4096) ?  PAGE_ALLOC_COSTLY_ORDER : 0;
 
        /* Check if request can be accomodated in previous allocated page */
        if (nic->rb_page) {