diff options
| author | Cong Wang <[email protected]> | 2011-11-25 15:14:23 +0000 |
|---|---|---|
| committer | Cong Wang <[email protected]> | 2012-03-20 13:48:19 +0000 |
| commit | 77dfce076cbd76c04e90abff188d058cdbff78dd (patch) | |
| tree | c2f1ac2dd386c68e6bf8dee8d996d0b6e36f9c73 /drivers/scsi/libiscsi_tcp.c | |
| parent | net: remove the second argument of k[un]map_atomic() (diff) | |
| download | kernel-77dfce076cbd76c04e90abff188d058cdbff78dd.tar.gz kernel-77dfce076cbd76c04e90abff188d058cdbff78dd.zip | |
scsi: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <[email protected]>
Diffstat (limited to 'drivers/scsi/libiscsi_tcp.c')
| -rw-r--r-- | drivers/scsi/libiscsi_tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/libiscsi_tcp.c b/drivers/scsi/libiscsi_tcp.c index 5715a3d0a3d3..7f0465b9623e 100644 --- a/drivers/scsi/libiscsi_tcp.c +++ b/drivers/scsi/libiscsi_tcp.c @@ -135,7 +135,7 @@ static void iscsi_tcp_segment_map(struct iscsi_segment *segment, int recv) if (recv) { segment->atomic_mapped = true; - segment->sg_mapped = kmap_atomic(sg_page(sg), KM_SOFTIRQ0); + segment->sg_mapped = kmap_atomic(sg_page(sg)); } else { segment->atomic_mapped = false; /* the xmit path can sleep with the page mapped so use kmap */ @@ -149,7 +149,7 @@ void iscsi_tcp_segment_unmap(struct iscsi_segment *segment) { if (segment->sg_mapped) { if (segment->atomic_mapped) - kunmap_atomic(segment->sg_mapped, KM_SOFTIRQ0); + kunmap_atomic(segment->sg_mapped); else kunmap(sg_page(segment->sg)); segment->sg_mapped = NULL; |
