mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	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>
This commit is contained in:
		
							parent
							
								
									903ceff7ca
								
							
						
					
					
						commit
						1f125e76f5
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -548,7 +548,7 @@ void dm_stats_account_io(struct dm_stats *stats, unsigned long bi_rw, | |||
| 		 * A race condition can at worst result in the merged flag being | ||||
| 		 * misrepresented, so we don't have to disable preemption here. | ||||
| 		 */ | ||||
| 		last = __this_cpu_ptr(stats->last); | ||||
| 		last = raw_cpu_ptr(stats->last); | ||||
| 		stats_aux->merged = | ||||
| 			(bi_sector == (ACCESS_ONCE(last->last_sector) && | ||||
| 				       ((bi_rw & (REQ_WRITE | REQ_DISCARD)) == | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Christoph Lameter
						Christoph Lameter