Lines Matching refs:new_sectors
1214 static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors) in ata_set_max_sectors() argument
1220 new_sectors--; in ata_set_max_sectors()
1230 tf.hob_lbal = (new_sectors >> 24) & 0xff; in ata_set_max_sectors()
1231 tf.hob_lbam = (new_sectors >> 32) & 0xff; in ata_set_max_sectors()
1232 tf.hob_lbah = (new_sectors >> 40) & 0xff; in ata_set_max_sectors()
1236 tf.device |= (new_sectors >> 24) & 0xf; in ata_set_max_sectors()
1242 tf.lbal = (new_sectors >> 0) & 0xff; in ata_set_max_sectors()
1243 tf.lbam = (new_sectors >> 8) & 0xff; in ata_set_max_sectors()
1244 tf.lbah = (new_sectors >> 16) & 0xff; in ata_set_max_sectors()
1345 u64 new_sectors = ata_id_n_sectors(dev->id); in ata_hpa_resize() local
1349 (unsigned long long)new_sectors, in ata_hpa_resize()