diff options
author | Christoph Lameter <cl@linux.com> | 2014-08-17 13:30:36 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-08-26 13:45:47 -0400 |
commit | 1f125e76f5c134b0a904ef30e96ee8da6a49f4b4 (patch) | |
tree | d63adcc36233887d4bba14748dfaf37ba8946cbf /drivers/md/dm-stats.c | |
parent | 903ceff7ca7b4d80c083a80ee5163b74e9fa359f (diff) |
md: Replace __this_cpu_ptr with raw_cpu_ptr
__this_cpu_ptr is being phased out.
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/md/dm-stats.c')
-rw-r--r-- | drivers/md/dm-stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-stats.c b/drivers/md/dm-stats.c index 28a90122a5a8..87f86c77b094 100644 --- a/drivers/md/dm-stats.c +++ b/drivers/md/dm-stats.c | |||
@@ -548,7 +548,7 @@ void dm_stats_account_io(struct dm_stats *stats, unsigned long bi_rw, | |||
548 | * A race condition can at worst result in the merged flag being | 548 | * A race condition can at worst result in the merged flag being |
549 | * misrepresented, so we don't have to disable preemption here. | 549 | * misrepresented, so we don't have to disable preemption here. |
550 | */ | 550 | */ |
551 | last = __this_cpu_ptr(stats->last); | 551 | last = raw_cpu_ptr(stats->last); |
552 | stats_aux->merged = | 552 | stats_aux->merged = |
553 | (bi_sector == (ACCESS_ONCE(last->last_sector) && | 553 | (bi_sector == (ACCESS_ONCE(last->last_sector) && |
554 | ((bi_rw & (REQ_WRITE | REQ_DISCARD)) == | 554 | ((bi_rw & (REQ_WRITE | REQ_DISCARD)) == |