rds: stop using dmapool
[linux-2.6-microblaze.git] / net / rds / ib.c
index deecbdc..24c9a90 100644 (file)
@@ -30,7 +30,6 @@
  * SOFTWARE.
  *
  */
-#include <linux/dmapool.h>
 #include <linux/kernel.h>
 #include <linux/in.h>
 #include <linux/if.h>
@@ -108,7 +107,6 @@ static void rds_ib_dev_free(struct work_struct *work)
                rds_ib_destroy_mr_pool(rds_ibdev->mr_1m_pool);
        if (rds_ibdev->pd)
                ib_dealloc_pd(rds_ibdev->pd);
-       dma_pool_destroy(rds_ibdev->rid_hdrs_pool);
 
        list_for_each_entry_safe(i_ipaddr, i_next, &rds_ibdev->ipaddr_list, list) {
                list_del(&i_ipaddr->list);
@@ -191,14 +189,6 @@ static int rds_ib_add_one(struct ib_device *device)
                rds_ibdev->pd = NULL;
                goto put_dev;
        }
-       rds_ibdev->rid_hdrs_pool = dma_pool_create(device->name,
-                                                  device->dma_device,
-                                                  sizeof(struct rds_header),
-                                                  L1_CACHE_BYTES, 0);
-       if (!rds_ibdev->rid_hdrs_pool) {
-               ret = -ENOMEM;
-               goto put_dev;
-       }
 
        rds_ibdev->mr_1m_pool =
                rds_ib_create_mr_pool(rds_ibdev, RDS_IB_MR_1M_POOL);