~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/trace/events/objagg.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/trace/events/objagg.h (Version linux-6.12-rc7) and /include/trace/events/objagg.h (Version linux-3.10.108)


  1 /* SPDX-License-Identifier: BSD-3-Clause OR GP      1 
  2 /* Copyright (c) 2018 Mellanox Technologies. A    
  3                                                   
  4 #undef TRACE_SYSTEM                               
  5 #define TRACE_SYSTEM objagg                       
  6                                                   
  7 #if !defined(__TRACE_OBJAGG_H) || defined(TRAC    
  8 #define __TRACE_OBJAGG_H                          
  9                                                   
 10 #include <linux/tracepoint.h>                     
 11                                                   
 12 struct objagg;                                    
 13 struct objagg_obj;                                
 14                                                   
 15 TRACE_EVENT(objagg_create,                        
 16         TP_PROTO(const struct objagg *objagg),    
 17                                                   
 18         TP_ARGS(objagg),                          
 19                                                   
 20         TP_STRUCT__entry(                         
 21                 __field(const void *, objagg)     
 22         ),                                        
 23                                                   
 24         TP_fast_assign(                           
 25                 __entry->objagg = objagg;         
 26         ),                                        
 27                                                   
 28         TP_printk("objagg %p", __entry->objagg    
 29 );                                                
 30                                                   
 31 TRACE_EVENT(objagg_destroy,                       
 32         TP_PROTO(const struct objagg *objagg),    
 33                                                   
 34         TP_ARGS(objagg),                          
 35                                                   
 36         TP_STRUCT__entry(                         
 37                 __field(const void *, objagg)     
 38         ),                                        
 39                                                   
 40         TP_fast_assign(                           
 41                 __entry->objagg = objagg;         
 42         ),                                        
 43                                                   
 44         TP_printk("objagg %p", __entry->objagg    
 45 );                                                
 46                                                   
 47 TRACE_EVENT(objagg_obj_create,                    
 48         TP_PROTO(const struct objagg *objagg,     
 49                  const struct objagg_obj *obj)    
 50                                                   
 51         TP_ARGS(objagg, obj),                     
 52                                                   
 53         TP_STRUCT__entry(                         
 54                 __field(const void *, objagg)     
 55                 __field(const void *, obj)        
 56         ),                                        
 57                                                   
 58         TP_fast_assign(                           
 59                 __entry->objagg = objagg;         
 60                 __entry->obj = obj;               
 61         ),                                        
 62                                                   
 63         TP_printk("objagg %p, obj %p", __entry    
 64 );                                                
 65                                                   
 66 TRACE_EVENT(objagg_obj_destroy,                   
 67         TP_PROTO(const struct objagg *objagg,     
 68                  const struct objagg_obj *obj)    
 69                                                   
 70         TP_ARGS(objagg, obj),                     
 71                                                   
 72         TP_STRUCT__entry(                         
 73                 __field(const void *, objagg)     
 74                 __field(const void *, obj)        
 75         ),                                        
 76                                                   
 77         TP_fast_assign(                           
 78                 __entry->objagg = objagg;         
 79                 __entry->obj = obj;               
 80         ),                                        
 81                                                   
 82         TP_printk("objagg %p, obj %p", __entry    
 83 );                                                
 84                                                   
 85 TRACE_EVENT(objagg_obj_get,                       
 86         TP_PROTO(const struct objagg *objagg,     
 87                  const struct objagg_obj *obj,    
 88                  unsigned int refcount),          
 89                                                   
 90         TP_ARGS(objagg, obj, refcount),           
 91                                                   
 92         TP_STRUCT__entry(                         
 93                 __field(const void *, objagg)     
 94                 __field(const void *, obj)        
 95                 __field(unsigned int, refcount    
 96         ),                                        
 97                                                   
 98         TP_fast_assign(                           
 99                 __entry->objagg = objagg;         
100                 __entry->obj = obj;               
101                 __entry->refcount = refcount;     
102         ),                                        
103                                                   
104         TP_printk("objagg %p, obj %p, refcount    
105                   __entry->objagg, __entry->ob    
106 );                                                
107                                                   
108 TRACE_EVENT(objagg_obj_put,                       
109         TP_PROTO(const struct objagg *objagg,     
110                  const struct objagg_obj *obj,    
111                  unsigned int refcount),          
112                                                   
113         TP_ARGS(objagg, obj, refcount),           
114                                                   
115         TP_STRUCT__entry(                         
116                 __field(const void *, objagg)     
117                 __field(const void *, obj)        
118                 __field(unsigned int, refcount    
119         ),                                        
120                                                   
121         TP_fast_assign(                           
122                 __entry->objagg = objagg;         
123                 __entry->obj = obj;               
124                 __entry->refcount = refcount;     
125         ),                                        
126                                                   
127         TP_printk("objagg %p, obj %p, refcount    
128                   __entry->objagg, __entry->ob    
129 );                                                
130                                                   
131 TRACE_EVENT(objagg_obj_parent_assign,             
132         TP_PROTO(const struct objagg *objagg,     
133                  const struct objagg_obj *obj,    
134                  const struct objagg_obj *pare    
135                  unsigned int parent_refcount)    
136                                                   
137         TP_ARGS(objagg, obj, parent, parent_re    
138                                                   
139         TP_STRUCT__entry(                         
140                 __field(const void *, objagg)     
141                 __field(const void *, obj)        
142                 __field(const void *, parent)     
143                 __field(unsigned int, parent_r    
144         ),                                        
145                                                   
146         TP_fast_assign(                           
147                 __entry->objagg = objagg;         
148                 __entry->obj = obj;               
149                 __entry->parent = parent;         
150                 __entry->parent_refcount = par    
151         ),                                        
152                                                   
153         TP_printk("objagg %p, obj %p, parent %    
154                   __entry->objagg, __entry->ob    
155                   __entry->parent, __entry->pa    
156 );                                                
157                                                   
158 TRACE_EVENT(objagg_obj_parent_unassign,           
159         TP_PROTO(const struct objagg *objagg,     
160                  const struct objagg_obj *obj,    
161                  const struct objagg_obj *pare    
162                  unsigned int parent_refcount)    
163                                                   
164         TP_ARGS(objagg, obj, parent, parent_re    
165                                                   
166         TP_STRUCT__entry(                         
167                 __field(const void *, objagg)     
168                 __field(const void *, obj)        
169                 __field(const void *, parent)     
170                 __field(unsigned int, parent_r    
171         ),                                        
172                                                   
173         TP_fast_assign(                           
174                 __entry->objagg = objagg;         
175                 __entry->obj = obj;               
176                 __entry->parent = parent;         
177                 __entry->parent_refcount = par    
178         ),                                        
179                                                   
180         TP_printk("objagg %p, obj %p, parent %    
181                   __entry->objagg, __entry->ob    
182                   __entry->parent, __entry->pa    
183 );                                                
184                                                   
185 TRACE_EVENT(objagg_obj_root_create,               
186         TP_PROTO(const struct objagg *objagg,     
187                  const struct objagg_obj *obj)    
188                                                   
189         TP_ARGS(objagg, obj),                     
190                                                   
191         TP_STRUCT__entry(                         
192                 __field(const void *, objagg)     
193                 __field(const void *, obj)        
194         ),                                        
195                                                   
196         TP_fast_assign(                           
197                 __entry->objagg = objagg;         
198                 __entry->obj = obj;               
199         ),                                        
200                                                   
201         TP_printk("objagg %p, obj %p",            
202                   __entry->objagg, __entry->ob    
203 );                                                
204                                                   
205 TRACE_EVENT(objagg_obj_root_destroy,              
206         TP_PROTO(const struct objagg *objagg,     
207                  const struct objagg_obj *obj)    
208                                                   
209         TP_ARGS(objagg, obj),                     
210                                                   
211         TP_STRUCT__entry(                         
212                 __field(const void *, objagg)     
213                 __field(const void *, obj)        
214         ),                                        
215                                                   
216         TP_fast_assign(                           
217                 __entry->objagg = objagg;         
218                 __entry->obj = obj;               
219         ),                                        
220                                                   
221         TP_printk("objagg %p, obj %p",            
222                   __entry->objagg, __entry->ob    
223 );                                                
224                                                   
225 #endif /* __TRACE_OBJAGG_H */                     
226                                                   
227 /* This part must be outside protection */        
228 #include <trace/define_trace.h>                   
229                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php