| 
									
										
										
										
											2019-04-04 13:43:16 -04:00
										 |  |  | /* SPDX-License-Identifier: GPL-2.0 */ | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: Waiman Long <longman@redhat.com> | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:17 -04:00
										 |  |  | #ifndef __LOCKING_LOCK_EVENTS_H
 | 
					
						
							|  |  |  | #define __LOCKING_LOCK_EVENTS_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:16 -04:00
										 |  |  | enum lock_events { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "lock_events_list.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lockevent_num,	/* Total number of lock event counts */ | 
					
						
							|  |  |  | 	LOCKEVENT_reset_cnts = lockevent_num, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:17 -04:00
										 |  |  | #ifdef CONFIG_LOCK_EVENT_COUNTS
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:16 -04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Per-cpu counters | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | DECLARE_PER_CPU(unsigned long, lockevents[lockevent_num]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:42:22 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-05-27 10:23:26 +02:00
										 |  |  |  * Increment the statistical counters. use raw_cpu_inc() because of lower | 
					
						
							|  |  |  |  * overhead and we don't care if we loose the occasional update. | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:16 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | static inline void __lockevent_inc(enum lock_events event, bool cond) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (cond) | 
					
						
							| 
									
										
										
										
											2019-05-27 10:23:26 +02:00
										 |  |  | 		raw_cpu_inc(lockevents[event]); | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:16 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define lockevent_inc(ev)	  __lockevent_inc(LOCKEVENT_ ##ev, true)
 | 
					
						
							|  |  |  | #define lockevent_cond_inc(ev, c) __lockevent_inc(LOCKEVENT_ ##ev, c)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void __lockevent_add(enum lock_events event, int inc) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-27 10:23:26 +02:00
										 |  |  | 	raw_cpu_add(lockevents[event], inc); | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:16 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define lockevent_add(ev, c)	__lockevent_add(LOCKEVENT_ ##ev, c)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:17 -04:00
										 |  |  | #else  /* CONFIG_LOCK_EVENT_COUNTS */
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:16 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define lockevent_inc(ev)
 | 
					
						
							|  |  |  | #define lockevent_add(ev, c)
 | 
					
						
							|  |  |  | #define lockevent_cond_inc(ev, c)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:17 -04:00
										 |  |  | #endif /* CONFIG_LOCK_EVENT_COUNTS */
 | 
					
						
							| 
									
										
										
										
											2023-05-17 15:10:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | ssize_t lockevent_read(struct file *file, char __user *user_buf, | 
					
						
							|  |  |  | 		       size_t count, loff_t *ppos); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 13:43:17 -04:00
										 |  |  | #endif /* __LOCKING_LOCK_EVENTS_H */
 |