linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH 27/62] target: remove the second argument of k[un]map_atomic()
           [not found] <1322371662-26166-1-git-send-email-amwang@redhat.com>
           [not found] ` <1322371662-26166-1-git-send-email-amwang-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    @ 2011-11-27  5:27 ` Cong Wang
      1 sibling, 0 replies; 2+ messages in thread
    From: Cong Wang @ 2011-11-27  5:27 UTC (permalink / raw)
      To: linux-kernel
      Cc: akpm, Cong Wang, Nicholas A. Bellinger, Andy Grover,
    	Christoph Hellwig, Kiran Patil, James Bottomley, linux-scsi,
    	target-devel
    
    
    Signed-off-by: Cong Wang <amwang@redhat.com>
    ---
     drivers/target/target_core_transport.c |    4 ++--
     drivers/target/tcm_fc/tfc_io.c         |   10 ++++------
     2 files changed, 6 insertions(+), 8 deletions(-)
    
    diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c
    index 3400ae6..b4a59d8 100644
    --- a/drivers/target/target_core_transport.c
    +++ b/drivers/target/target_core_transport.c
    @@ -2382,7 +2382,7 @@ static void transport_xor_callback(struct se_cmd *cmd)
     
     	offset = 0;
     	for_each_sg(cmd->t_bidi_data_sg, sg, cmd->t_bidi_data_nents, count) {
    -		addr = kmap_atomic(sg_page(sg), KM_USER0);
    +		addr = kmap_atomic(sg_page(sg));
     		if (!addr)
     			goto out;
     
    @@ -2390,7 +2390,7 @@ static void transport_xor_callback(struct se_cmd *cmd)
     			*(addr + sg->offset + i) ^= *(buf + offset + i);
     
     		offset += sg->length;
    -		kunmap_atomic(addr, KM_USER0);
    +		kunmap_atomic(addr);
     	}
     
     out:
    diff --git a/drivers/target/tcm_fc/tfc_io.c b/drivers/target/tcm_fc/tfc_io.c
    index 1369b1c..1a2ff72 100644
    --- a/drivers/target/tcm_fc/tfc_io.c
    +++ b/drivers/target/tcm_fc/tfc_io.c
    @@ -149,14 +149,13 @@ int ft_queue_data_in(struct se_cmd *se_cmd)
     					PAGE_SIZE << compound_order(page);
     		} else {
     			BUG_ON(!page);
    -			from = kmap_atomic(page + (mem_off >> PAGE_SHIFT),
    -					   KM_SOFTIRQ0);
    +			from = kmap_atomic(page + (mem_off >> PAGE_SHIFT));
     			page_addr = from;
     			from += mem_off & ~PAGE_MASK;
     			tlen = min(tlen, (size_t)(PAGE_SIZE -
     						(mem_off & ~PAGE_MASK)));
     			memcpy(to, from, tlen);
    -			kunmap_atomic(page_addr, KM_SOFTIRQ0);
    +			kunmap_atomic(page_addr);
     			to += tlen;
     		}
     
    @@ -294,14 +293,13 @@ void ft_recv_write_data(struct ft_cmd *cmd, struct fc_frame *fp)
     
     		tlen = min(mem_len, frame_len);
     
    -		to = kmap_atomic(page + (mem_off >> PAGE_SHIFT),
    -				 KM_SOFTIRQ0);
    +		to = kmap_atomic(page + (mem_off >> PAGE_SHIFT));
     		page_addr = to;
     		to += mem_off & ~PAGE_MASK;
     		tlen = min(tlen, (size_t)(PAGE_SIZE -
     					  (mem_off & ~PAGE_MASK)));
     		memcpy(to, from, tlen);
    -		kunmap_atomic(page_addr, KM_SOFTIRQ0);
    +		kunmap_atomic(page_addr);
     
     		from += tlen;
     		frame_len -= tlen;
    -- 
    1.7.4.4
    
    
    ^ permalink raw reply related	[flat|nested] 2+ messages in thread

  • end of thread, other threads:[~2011-11-27  5:34 UTC | newest]
    
    Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1322371662-26166-1-git-send-email-amwang@redhat.com>
         [not found] ` <1322371662-26166-1-git-send-email-amwang-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2011-11-27  5:27   ` [PATCH 22/62] scsi: remove the second argument of k[un]map_atomic() Cong Wang
    2011-11-27  5:27 ` [PATCH 27/62] target: " Cong Wang
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).