dect
/
linux-2.6
Archived
13
0
Fork 0

target: remove the unused transport_limit_task_sectors helper

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
Christoph Hellwig 2012-04-23 11:35:28 -04:00 committed by Nicholas Bellinger
parent ed0b2144c5
commit 32d8d2e430
1 changed files with 0 additions and 15 deletions

View File

@ -3694,21 +3694,6 @@ out:
return -ENOMEM;
}
/* Reduce sectors if they are too long for the device */
static inline sector_t transport_limit_task_sectors(
struct se_device *dev,
unsigned long long lba,
sector_t sectors)
{
sectors = min_t(sector_t, sectors, dev->se_sub_dev->se_dev_attrib.max_sectors);
if (dev->transport->get_device_type(dev) == TYPE_DISK)
if ((lba + sectors) > transport_dev_end_lba(dev))
sectors = ((transport_dev_end_lba(dev) - lba) + 1);
return sectors;
}
/*
* Break up cmd into chunks transport can handle
*/