[SCSI] iscsi_tcp: support PF_MEMALLOC/__GFP_MEMALLOC
authorMike Christie <michaelc@cs.wisc.edu>
Wed, 10 Apr 2013 16:24:39 +0000 (11:24 -0500)
committerJames Bottomley <JBottomley@Parallels.com>
Thu, 11 Apr 2013 23:55:04 +0000 (16:55 -0700)
This patch has software iscsi use PF_MEMALLOC/__GFP_MEMALLOC
to be able to better support swap over iscsi disks similar to
what was added for nbd.

Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/iscsi_tcp.c

index 1b91ca0dc1e39cdb2b27bc76e0f9c710a6922a51..9e2588a6881cb72751ece0f0d2092f2e6e214353 100644 (file)
@@ -370,17 +370,24 @@ static inline int iscsi_sw_tcp_xmit_qlen(struct iscsi_conn *conn)
 static int iscsi_sw_tcp_pdu_xmit(struct iscsi_task *task)
 {
        struct iscsi_conn *conn = task->conn;
-       int rc;
+       unsigned long pflags = current->flags;
+       int rc = 0;
+
+       current->flags |= PF_MEMALLOC;
 
        while (iscsi_sw_tcp_xmit_qlen(conn)) {
                rc = iscsi_sw_tcp_xmit(conn);
-               if (rc == 0)
-                       return -EAGAIN;
+               if (rc == 0) {
+                       rc = -EAGAIN;
+                       break;
+               }
                if (rc < 0)
-                       return rc;
+                       break;
+               rc = 0;
        }
 
-       return 0;
+       tsk_restore_flags(current, pflags, PF_MEMALLOC);
+       return rc;
 }
 
 /*
@@ -665,6 +672,7 @@ iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session,
        sk->sk_reuse = SK_CAN_REUSE;
        sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
        sk->sk_allocation = GFP_ATOMIC;
+       sk_set_memalloc(sk);
 
        iscsi_sw_tcp_conn_set_callbacks(conn);
        tcp_sw_conn->sendpage = tcp_sw_conn->sock->ops->sendpage;