]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
s390/scm_block: allocate aidaw pages only when necessary
authorSebastian Ott <sebott@linux.vnet.ibm.com>
Fri, 5 Dec 2014 15:41:47 +0000 (16:41 +0100)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Mon, 8 Dec 2014 08:42:44 +0000 (09:42 +0100)
AOBs (the structure describing the HW request) need to be 4K
aligned but very little of that page is actually used. With
this patch we place aidaws at the end of the AOB page and only
allocate a separate page for aidaws when we have to (lists of
aidaws must not cross page boundaries).

Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/block/scm_blk.c
drivers/s390/block/scm_blk.h
drivers/s390/block/scm_blk_cluster.c

index 5b2abadea0941f29fdf06e3829eb80496b53b20d..f5c369ce7e73bf9fc66d8e0adac0ec262d516e68 100644 (file)
@@ -121,7 +121,8 @@ static void scm_request_done(struct scm_request *scmrq)
        u64 aidaw = msb->data_addr;
        unsigned long flags;
 
-       if ((msb->flags & MSB_FLAG_IDA) && aidaw)
+       if ((msb->flags & MSB_FLAG_IDA) && aidaw &&
+           IS_ALIGNED(aidaw, PAGE_SIZE))
                mempool_free(virt_to_page(aidaw), aidaw_pool);
 
        spin_lock_irqsave(&list_lock, flags);
@@ -134,26 +135,47 @@ static bool scm_permit_request(struct scm_blk_dev *bdev, struct request *req)
        return rq_data_dir(req) != WRITE || bdev->state != SCM_WR_PROHIBIT;
 }
 
-struct aidaw *scm_aidaw_alloc(void)
+static inline struct aidaw *scm_aidaw_alloc(void)
 {
        struct page *page = mempool_alloc(aidaw_pool, GFP_ATOMIC);
 
        return page ? page_address(page) : NULL;
 }
 
+static inline unsigned long scm_aidaw_bytes(struct aidaw *aidaw)
+{
+       unsigned long _aidaw = (unsigned long) aidaw;
+       unsigned long bytes = ALIGN(_aidaw, PAGE_SIZE) - _aidaw;
+
+       return (bytes / sizeof(*aidaw)) * PAGE_SIZE;
+}
+
+struct aidaw *scm_aidaw_fetch(struct scm_request *scmrq, unsigned int bytes)
+{
+       struct aidaw *aidaw;
+
+       if (scm_aidaw_bytes(scmrq->next_aidaw) >= bytes)
+               return scmrq->next_aidaw;
+
+       aidaw = scm_aidaw_alloc();
+       if (aidaw)
+               memset(aidaw, 0, PAGE_SIZE);
+       return aidaw;
+}
+
 static int scm_request_prepare(struct scm_request *scmrq)
 {
        struct scm_blk_dev *bdev = scmrq->bdev;
        struct scm_device *scmdev = bdev->gendisk->private_data;
-       struct aidaw *aidaw = scm_aidaw_alloc();
        struct msb *msb = &scmrq->aob->msb[0];
        struct req_iterator iter;
+       struct aidaw *aidaw;
        struct bio_vec bv;
 
+       aidaw = scm_aidaw_fetch(scmrq, blk_rq_bytes(scmrq->request));
        if (!aidaw)
                return -ENOMEM;
 
-       memset(aidaw, 0, PAGE_SIZE);
        msb->bs = MSB_BS_4K;
        scmrq->aob->request.msb_count = 1;
        msb->scm_addr = scmdev->address +
@@ -188,6 +210,8 @@ static inline void scm_request_init(struct scm_blk_dev *bdev,
        scmrq->bdev = bdev;
        scmrq->retries = 4;
        scmrq->error = 0;
+       /* We don't use all msbs - place aidaws at the end of the aob page. */
+       scmrq->next_aidaw = (void *) &aob->msb[1];
        scm_request_cluster_init(scmrq);
 }
 
index a315ef0e96f5a29062a4dc1661233449173a625d..6334e1609208b8bf1940c77c85204627c4010b49 100644 (file)
@@ -30,6 +30,7 @@ struct scm_blk_dev {
 
 struct scm_request {
        struct scm_blk_dev *bdev;
+       struct aidaw *next_aidaw;
        struct request *request;
        struct aob *aob;
        struct list_head list;
@@ -54,7 +55,7 @@ void scm_blk_irq(struct scm_device *, void *, int);
 void scm_request_finish(struct scm_request *);
 void scm_request_requeue(struct scm_request *);
 
-struct aidaw *scm_aidaw_alloc(void);
+struct aidaw *scm_aidaw_fetch(struct scm_request *scmrq, unsigned int bytes);
 
 int scm_drv_init(void);
 void scm_drv_cleanup(void);
index 4787f80e5537eedd1a568ad89c555c24528c2e3e..2fd01320b9782914b71718fa2a56ac9191ede805 100644 (file)
@@ -131,16 +131,9 @@ static int scm_prepare_cluster_request(struct scm_request *scmrq)
                scmrq->cluster.state = CLUSTER_READ;
                /* fall through */
        case CLUSTER_READ:
-               aidaw = scm_aidaw_alloc();
-               if (!aidaw)
-                       return -ENOMEM;
-
-               memset(aidaw, 0, PAGE_SIZE);
-               scmrq->aob->request.msb_count = 1;
                msb->bs = MSB_BS_4K;
                msb->oc = MSB_OC_READ;
                msb->flags = MSB_FLAG_IDA;
-               msb->data_addr = (u64) aidaw;
                msb->blk_count = write_cluster_size;
 
                addr = scmdev->address + ((u64) blk_rq_pos(req) << 9);
@@ -151,6 +144,12 @@ static int scm_prepare_cluster_request(struct scm_request *scmrq)
                               CLUSTER_SIZE))
                        msb->blk_count = 2 * write_cluster_size;
 
+               aidaw = scm_aidaw_fetch(scmrq, msb->blk_count * PAGE_SIZE);
+               if (!aidaw)
+                       return -ENOMEM;
+
+               scmrq->aob->request.msb_count = 1;
+               msb->data_addr = (u64) aidaw;
                for (i = 0; i < msb->blk_count; i++) {
                        aidaw->data_addr = (u64) scmrq->cluster.buf[i];
                        aidaw++;