Lines Matching defs:last
194 struct dm_stats_last_position *last;
199 stats->last = alloc_percpu(struct dm_stats_last_position);
200 if (!stats->last)
204 last = per_cpu_ptr(stats->last, cpu);
205 last->last_sector = (sector_t)ULLONG_MAX;
206 last->last_rw = UINT_MAX;
237 free_percpu(stats->last);
670 struct dm_stats_last_position *last;
684 last = raw_cpu_ptr(stats->last);
686 (bi_sector == (READ_ONCE(last->last_sector) &&
688 (READ_ONCE(last->last_rw) == WRITE))
690 WRITE_ONCE(last->last_sector, end_sector);
691 WRITE_ONCE(last->last_rw, bi_rw);
958 unsigned long long last;
972 last = 0;
981 if (hi <= last)
983 last = hi;