Lines Matching defs:last
194 struct dm_stats_last_position *last;
198 stats->last = alloc_percpu(struct dm_stats_last_position);
199 if (!stats->last)
203 last = per_cpu_ptr(stats->last, cpu);
204 last->last_sector = (sector_t)ULLONG_MAX;
205 last->last_rw = UINT_MAX;
236 free_percpu(stats->last);
639 struct dm_stats_last_position *last;
652 last = raw_cpu_ptr(stats->last);
654 (bi_sector == (READ_ONCE(last->last_sector) &&
656 (READ_ONCE(last->last_rw) == WRITE))
658 WRITE_ONCE(last->last_sector, end_sector);
659 WRITE_ONCE(last->last_rw, bi_rw);
924 unsigned long long last;
938 last = 0;
946 if (hi <= last)
948 last = hi;