Commit ca6673b0 authored by Christoph Lameter's avatar Christoph Lameter Committed by Jens Axboe

block: Replace __this_cpu_ptr with raw_cpu_ptr

__this_cpu_ptr is being phased out.

Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: default avatarChristoph Lameter <cl@linux.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 8d307269
...@@ -1312,7 +1312,7 @@ static void bh_lru_install(struct buffer_head *bh) ...@@ -1312,7 +1312,7 @@ static void bh_lru_install(struct buffer_head *bh)
} }
while (out < BH_LRU_SIZE) while (out < BH_LRU_SIZE)
bhs[out++] = NULL; bhs[out++] = NULL;
memcpy(__this_cpu_ptr(&bh_lrus.bhs), bhs, sizeof(bhs)); memcpy(this_cpu_ptr(&bh_lrus.bhs), bhs, sizeof(bhs));
} }
bh_lru_unlock(); bh_lru_unlock();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment