2 * Copyright (C) 2007 Mathieu Desnoyers
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #include <linux/module.h>
19 #include <linux/mutex.h>
20 #include <linux/types.h>
21 #include <linux/jhash.h>
22 #include <linux/list.h>
23 #include <linux/rcupdate.h>
24 #include <linux/marker.h>
25 #include <linux/err.h>
26 #include <linux/slab.h>
28 extern struct marker __start___markers
[];
29 extern struct marker __stop___markers
[];
31 /* Set to 1 to enable marker debug output */
32 static const int marker_debug
;
35 * markers_mutex nests inside module_mutex. Markers mutex protects the builtin
36 * and module markers and the hash table.
38 static DEFINE_MUTEX(markers_mutex
);
41 * Marker hash table, containing the active markers.
42 * Protected by module_mutex.
44 #define MARKER_HASH_BITS 6
45 #define MARKER_TABLE_SIZE (1 << MARKER_HASH_BITS)
46 static struct hlist_head marker_table
[MARKER_TABLE_SIZE
];
50 * It is used to make sure every handler has finished using its private data
51 * between two consecutive operation (add or remove) on a given marker. It is
52 * also used to delay the free of multiple probes array until a quiescent state
54 * marker entries modifications are protected by the markers_mutex.
57 struct hlist_node hlist
;
60 void (*call
)(const struct marker
*mdata
, void *call_private
, ...);
61 struct marker_probe_closure single
;
62 struct marker_probe_closure
*multi
;
63 int refcount
; /* Number of times armed. 0 if disarmed. */
67 unsigned char ptype
:1;
68 unsigned char format_allocated
:1;
69 char name
[0]; /* Contains name'\0'format'\0' */
73 * __mark_empty_function - Empty probe callback
74 * @probe_private: probe private data
75 * @call_private: call site private data
77 * @...: variable argument list
79 * Empty callback provided as a probe to the markers. By providing this to a
80 * disabled marker, we make sure the execution flow is always valid even
81 * though the function pointer change and the marker enabling are two distinct
82 * operations that modifies the execution flow of preemptible code.
84 notrace
void __mark_empty_function(void *probe_private
, void *call_private
,
85 const char *fmt
, va_list *args
)
88 EXPORT_SYMBOL_GPL(__mark_empty_function
);
91 * marker_probe_cb Callback that prepares the variable argument list for probes.
92 * @mdata: pointer of type struct marker
93 * @call_private: caller site private data
94 * @...: Variable argument list.
96 * Since we do not use "typical" pointer based RCU in the 1 argument case, we
97 * need to put a full smp_rmb() in this branch. This is why we do not use
98 * rcu_dereference() for the pointer read.
100 notrace
void marker_probe_cb(const struct marker
*mdata
,
101 void *call_private
, ...)
107 * rcu_read_lock_sched does two things : disabling preemption to make
108 * sure the teardown of the callbacks can be done correctly when they
109 * are in modules and they insure RCU read coherency.
111 rcu_read_lock_sched_notrace();
112 ptype
= mdata
->ptype
;
113 if (likely(!ptype
)) {
114 marker_probe_func
*func
;
115 /* Must read the ptype before ptr. They are not data dependant,
116 * so we put an explicit smp_rmb() here. */
118 func
= mdata
->single
.func
;
119 /* Must read the ptr before private data. They are not data
120 * dependant, so we put an explicit smp_rmb() here. */
122 va_start(args
, call_private
);
123 func(mdata
->single
.probe_private
, call_private
, mdata
->format
,
127 struct marker_probe_closure
*multi
;
130 * Read mdata->ptype before mdata->multi.
133 multi
= mdata
->multi
;
135 * multi points to an array, therefore accessing the array
136 * depends on reading multi. However, even in this case,
137 * we must insure that the pointer is read _before_ the array
138 * data. Same as rcu_dereference, but we need a full smp_rmb()
139 * in the fast path, so put the explicit barrier here.
141 smp_read_barrier_depends();
142 for (i
= 0; multi
[i
].func
; i
++) {
143 va_start(args
, call_private
);
144 multi
[i
].func(multi
[i
].probe_private
, call_private
,
145 mdata
->format
, &args
);
149 rcu_read_unlock_sched_notrace();
151 EXPORT_SYMBOL_GPL(marker_probe_cb
);
154 * marker_probe_cb Callback that does not prepare the variable argument list.
155 * @mdata: pointer of type struct marker
156 * @call_private: caller site private data
157 * @...: Variable argument list.
159 * Should be connected to markers "MARK_NOARGS".
161 static notrace
void marker_probe_cb_noarg(const struct marker
*mdata
,
162 void *call_private
, ...)
164 va_list args
; /* not initialized */
167 rcu_read_lock_sched_notrace();
168 ptype
= mdata
->ptype
;
169 if (likely(!ptype
)) {
170 marker_probe_func
*func
;
171 /* Must read the ptype before ptr. They are not data dependant,
172 * so we put an explicit smp_rmb() here. */
174 func
= mdata
->single
.func
;
175 /* Must read the ptr before private data. They are not data
176 * dependant, so we put an explicit smp_rmb() here. */
178 func(mdata
->single
.probe_private
, call_private
, mdata
->format
,
181 struct marker_probe_closure
*multi
;
184 * Read mdata->ptype before mdata->multi.
187 multi
= mdata
->multi
;
189 * multi points to an array, therefore accessing the array
190 * depends on reading multi. However, even in this case,
191 * we must insure that the pointer is read _before_ the array
192 * data. Same as rcu_dereference, but we need a full smp_rmb()
193 * in the fast path, so put the explicit barrier here.
195 smp_read_barrier_depends();
196 for (i
= 0; multi
[i
].func
; i
++)
197 multi
[i
].func(multi
[i
].probe_private
, call_private
,
198 mdata
->format
, &args
);
200 rcu_read_unlock_sched_notrace();
203 static void free_old_closure(struct rcu_head
*head
)
205 struct marker_entry
*entry
= container_of(head
,
206 struct marker_entry
, rcu
);
207 kfree(entry
->oldptr
);
208 /* Make sure we free the data before setting the pending flag to 0 */
210 entry
->rcu_pending
= 0;
213 static void debug_print_probes(struct marker_entry
*entry
)
221 printk(KERN_DEBUG
"Single probe : %p %p\n",
223 entry
->single
.probe_private
);
225 for (i
= 0; entry
->multi
[i
].func
; i
++)
226 printk(KERN_DEBUG
"Multi probe %d : %p %p\n", i
,
227 entry
->multi
[i
].func
,
228 entry
->multi
[i
].probe_private
);
232 static struct marker_probe_closure
*
233 marker_entry_add_probe(struct marker_entry
*entry
,
234 marker_probe_func
*probe
, void *probe_private
)
237 struct marker_probe_closure
*old
, *new;
241 debug_print_probes(entry
);
244 if (entry
->single
.func
== probe
&&
245 entry
->single
.probe_private
== probe_private
)
246 return ERR_PTR(-EBUSY
);
247 if (entry
->single
.func
== __mark_empty_function
) {
249 entry
->single
.func
= probe
;
250 entry
->single
.probe_private
= probe_private
;
253 debug_print_probes(entry
);
261 /* (N -> N+1), (N != 0, 1) probes */
262 for (nr_probes
= 0; old
[nr_probes
].func
; nr_probes
++)
263 if (old
[nr_probes
].func
== probe
264 && old
[nr_probes
].probe_private
266 return ERR_PTR(-EBUSY
);
268 /* + 2 : one for new probe, one for NULL func */
269 new = kzalloc((nr_probes
+ 2) * sizeof(struct marker_probe_closure
),
272 return ERR_PTR(-ENOMEM
);
274 new[0] = entry
->single
;
277 nr_probes
* sizeof(struct marker_probe_closure
));
278 new[nr_probes
].func
= probe
;
279 new[nr_probes
].probe_private
= probe_private
;
280 entry
->refcount
= nr_probes
+ 1;
283 debug_print_probes(entry
);
287 static struct marker_probe_closure
*
288 marker_entry_remove_probe(struct marker_entry
*entry
,
289 marker_probe_func
*probe
, void *probe_private
)
291 int nr_probes
= 0, nr_del
= 0, i
;
292 struct marker_probe_closure
*old
, *new;
296 debug_print_probes(entry
);
298 /* 0 -> N is an error */
299 WARN_ON(entry
->single
.func
== __mark_empty_function
);
301 WARN_ON(probe
&& entry
->single
.func
!= probe
);
302 WARN_ON(entry
->single
.probe_private
!= probe_private
);
303 entry
->single
.func
= __mark_empty_function
;
306 debug_print_probes(entry
);
309 /* (N -> M), (N > 1, M >= 0) probes */
310 for (nr_probes
= 0; old
[nr_probes
].func
; nr_probes
++) {
311 if ((!probe
|| old
[nr_probes
].func
== probe
)
312 && old
[nr_probes
].probe_private
318 if (nr_probes
- nr_del
== 0) {
319 /* N -> 0, (N > 1) */
320 entry
->single
.func
= __mark_empty_function
;
323 } else if (nr_probes
- nr_del
== 1) {
324 /* N -> 1, (N > 1) */
325 for (i
= 0; old
[i
].func
; i
++)
326 if ((probe
&& old
[i
].func
!= probe
) ||
327 old
[i
].probe_private
!= probe_private
)
328 entry
->single
= old
[i
];
333 /* N -> M, (N > 1, M > 1) */
335 new = kzalloc((nr_probes
- nr_del
+ 1)
336 * sizeof(struct marker_probe_closure
), GFP_KERNEL
);
338 return ERR_PTR(-ENOMEM
);
339 for (i
= 0; old
[i
].func
; i
++)
340 if ((probe
&& old
[i
].func
!= probe
) ||
341 old
[i
].probe_private
!= probe_private
)
343 entry
->refcount
= nr_probes
- nr_del
;
347 debug_print_probes(entry
);
352 * Get marker if the marker is present in the marker hash table.
353 * Must be called with markers_mutex held.
354 * Returns NULL if not present.
356 static struct marker_entry
*get_marker(const char *name
)
358 struct hlist_head
*head
;
359 struct hlist_node
*node
;
360 struct marker_entry
*e
;
361 u32 hash
= jhash(name
, strlen(name
), 0);
363 head
= &marker_table
[hash
& ((1 << MARKER_HASH_BITS
)-1)];
364 hlist_for_each_entry(e
, node
, head
, hlist
) {
365 if (!strcmp(name
, e
->name
))
372 * Add the marker to the marker hash table. Must be called with markers_mutex
375 static struct marker_entry
*add_marker(const char *name
, const char *format
)
377 struct hlist_head
*head
;
378 struct hlist_node
*node
;
379 struct marker_entry
*e
;
380 size_t name_len
= strlen(name
) + 1;
381 size_t format_len
= 0;
382 u32 hash
= jhash(name
, name_len
-1, 0);
385 format_len
= strlen(format
) + 1;
386 head
= &marker_table
[hash
& ((1 << MARKER_HASH_BITS
)-1)];
387 hlist_for_each_entry(e
, node
, head
, hlist
) {
388 if (!strcmp(name
, e
->name
)) {
390 "Marker %s busy\n", name
);
391 return ERR_PTR(-EBUSY
); /* Already there */
395 * Using kmalloc here to allocate a variable length element. Could
396 * cause some memory fragmentation if overused.
398 e
= kmalloc(sizeof(struct marker_entry
) + name_len
+ format_len
,
401 return ERR_PTR(-ENOMEM
);
402 memcpy(&e
->name
[0], name
, name_len
);
404 e
->format
= &e
->name
[name_len
];
405 memcpy(e
->format
, format
, format_len
);
406 if (strcmp(e
->format
, MARK_NOARGS
) == 0)
407 e
->call
= marker_probe_cb_noarg
;
409 e
->call
= marker_probe_cb
;
410 trace_mark(core_marker_format
, "name %s format %s",
414 e
->call
= marker_probe_cb
;
416 e
->single
.func
= __mark_empty_function
;
417 e
->single
.probe_private
= NULL
;
420 e
->format_allocated
= 0;
423 hlist_add_head(&e
->hlist
, head
);
428 * Remove the marker from the marker hash table. Must be called with mutex_lock
431 static int remove_marker(const char *name
)
433 struct hlist_head
*head
;
434 struct hlist_node
*node
;
435 struct marker_entry
*e
;
437 size_t len
= strlen(name
) + 1;
438 u32 hash
= jhash(name
, len
-1, 0);
440 head
= &marker_table
[hash
& ((1 << MARKER_HASH_BITS
)-1)];
441 hlist_for_each_entry(e
, node
, head
, hlist
) {
442 if (!strcmp(name
, e
->name
)) {
449 if (e
->single
.func
!= __mark_empty_function
)
451 hlist_del(&e
->hlist
);
452 if (e
->format_allocated
)
454 /* Make sure the call_rcu has been executed */
462 * Set the mark_entry format to the format found in the element.
464 static int marker_set_format(struct marker_entry
*entry
, const char *format
)
466 entry
->format
= kstrdup(format
, GFP_KERNEL
);
469 entry
->format_allocated
= 1;
471 trace_mark(core_marker_format
, "name %s format %s",
472 entry
->name
, entry
->format
);
477 * Sets the probe callback corresponding to one marker.
479 static int set_marker(struct marker_entry
*entry
, struct marker
*elem
,
483 WARN_ON(strcmp(entry
->name
, elem
->name
) != 0);
486 if (strcmp(entry
->format
, elem
->format
) != 0) {
488 "Format mismatch for probe %s "
489 "(%s), marker (%s)\n",
496 ret
= marker_set_format(entry
, elem
->format
);
502 * probe_cb setup (statically known) is done here. It is
503 * asynchronous with the rest of execution, therefore we only
504 * pass from a "safe" callback (with argument) to an "unsafe"
505 * callback (does not set arguments).
507 elem
->call
= entry
->call
;
510 * We only update the single probe private data when the ptr is
511 * set to a _non_ single probe! (0 -> 1 and N -> 1, N != 1)
513 WARN_ON(elem
->single
.func
!= __mark_empty_function
514 && elem
->single
.probe_private
!= entry
->single
.probe_private
516 elem
->single
.probe_private
= entry
->single
.probe_private
;
518 * Make sure the private data is valid when we update the
522 elem
->single
.func
= entry
->single
.func
;
524 * We also make sure that the new probe callbacks array is consistent
525 * before setting a pointer to it.
527 rcu_assign_pointer(elem
->multi
, entry
->multi
);
529 * Update the function or multi probe array pointer before setting the
533 elem
->ptype
= entry
->ptype
;
535 if (elem
->tp_name
&& (active
^ elem
->state
)) {
536 WARN_ON(!elem
->tp_cb
);
538 * It is ok to directly call the probe registration because type
539 * checking has been done in the __trace_mark_tp() macro.
544 * try_module_get should always succeed because we hold
545 * lock_module() to get the tp_cb address.
547 ret
= try_module_get(__module_text_address(
548 (unsigned long)elem
->tp_cb
));
550 ret
= tracepoint_probe_register_noupdate(
554 ret
= tracepoint_probe_unregister_noupdate(
558 * tracepoint_probe_update_all() must be called
559 * before the module containing tp_cb is unloaded.
561 module_put(__module_text_address(
562 (unsigned long)elem
->tp_cb
));
565 elem
->state
= active
;
571 * Disable a marker and its probe callback.
572 * Note: only waiting an RCU period after setting elem->call to the empty
573 * function insures that the original callback is not used anymore. This insured
574 * by rcu_read_lock_sched around the call site.
576 static void disable_marker(struct marker
*elem
)
580 /* leave "call" as is. It is known statically. */
581 if (elem
->tp_name
&& elem
->state
) {
582 WARN_ON(!elem
->tp_cb
);
584 * It is ok to directly call the probe registration because type
585 * checking has been done in the __trace_mark_tp() macro.
587 ret
= tracepoint_probe_unregister_noupdate(elem
->tp_name
,
591 * tracepoint_probe_update_all() must be called
592 * before the module containing tp_cb is unloaded.
594 module_put(__module_text_address((unsigned long)elem
->tp_cb
));
597 elem
->single
.func
= __mark_empty_function
;
598 /* Update the function before setting the ptype */
600 elem
->ptype
= 0; /* single probe */
602 * Leave the private data and id there, because removal is racy and
603 * should be done only after an RCU period. These are never used until
604 * the next initialization anyway.
609 * marker_update_probe_range - Update a probe range
610 * @begin: beginning of the range
611 * @end: end of the range
613 * Updates the probe callback corresponding to a range of markers.
615 void marker_update_probe_range(struct marker
*begin
,
619 struct marker_entry
*mark_entry
;
621 mutex_lock(&markers_mutex
);
622 for (iter
= begin
; iter
< end
; iter
++) {
623 mark_entry
= get_marker(iter
->name
);
625 set_marker(mark_entry
, iter
, !!mark_entry
->refcount
);
627 * ignore error, continue
630 disable_marker(iter
);
633 mutex_unlock(&markers_mutex
);
637 * Update probes, removing the faulty probes.
639 * Internal callback only changed before the first probe is connected to it.
640 * Single probe private data can only be changed on 0 -> 1 and 2 -> 1
641 * transitions. All other transitions will leave the old private data valid.
642 * This makes the non-atomicity of the callback/private data updates valid.
644 * "special case" updates :
649 * Other updates all behave the same, just like the 2 -> 3 or 3 -> 2 updates.
650 * Site effect : marker_set_format may delete the marker entry (creating a
653 static void marker_update_probes(void)
655 /* Core kernel markers */
656 marker_update_probe_range(__start___markers
, __stop___markers
);
657 /* Markers in modules. */
658 module_update_markers();
659 tracepoint_probe_update_all();
663 * marker_probe_register - Connect a probe to a marker
665 * @format: format string
666 * @probe: probe handler
667 * @probe_private: probe private data
669 * private data must be a valid allocated memory address, or NULL.
670 * Returns 0 if ok, error value on error.
671 * The probe address must at least be aligned on the architecture pointer size.
673 int marker_probe_register(const char *name
, const char *format
,
674 marker_probe_func
*probe
, void *probe_private
)
676 struct marker_entry
*entry
;
678 struct marker_probe_closure
*old
;
680 mutex_lock(&markers_mutex
);
681 entry
= get_marker(name
);
683 entry
= add_marker(name
, format
);
685 ret
= PTR_ERR(entry
);
688 ret
= marker_set_format(entry
, format
);
689 else if (strcmp(entry
->format
, format
))
696 * If we detect that a call_rcu is pending for this marker,
697 * make sure it's executed now.
699 if (entry
->rcu_pending
)
701 old
= marker_entry_add_probe(entry
, probe
, probe_private
);
706 mutex_unlock(&markers_mutex
);
707 marker_update_probes();
708 mutex_lock(&markers_mutex
);
709 entry
= get_marker(name
);
712 if (entry
->rcu_pending
)
715 entry
->rcu_pending
= 1;
716 /* write rcu_pending before calling the RCU callback */
718 call_rcu_sched(&entry
->rcu
, free_old_closure
);
720 mutex_unlock(&markers_mutex
);
723 EXPORT_SYMBOL_GPL(marker_probe_register
);
726 * marker_probe_unregister - Disconnect a probe from a marker
728 * @probe: probe function pointer
729 * @probe_private: probe private data
731 * Returns the private data given to marker_probe_register, or an ERR_PTR().
732 * We do not need to call a synchronize_sched to make sure the probes have
733 * finished running before doing a module unload, because the module unload
734 * itself uses stop_machine(), which insures that every preempt disabled section
737 int marker_probe_unregister(const char *name
,
738 marker_probe_func
*probe
, void *probe_private
)
740 struct marker_entry
*entry
;
741 struct marker_probe_closure
*old
;
744 mutex_lock(&markers_mutex
);
745 entry
= get_marker(name
);
748 if (entry
->rcu_pending
)
750 old
= marker_entry_remove_probe(entry
, probe
, probe_private
);
751 mutex_unlock(&markers_mutex
);
752 marker_update_probes();
753 mutex_lock(&markers_mutex
);
754 entry
= get_marker(name
);
757 if (entry
->rcu_pending
)
760 entry
->rcu_pending
= 1;
761 /* write rcu_pending before calling the RCU callback */
763 call_rcu_sched(&entry
->rcu
, free_old_closure
);
764 remove_marker(name
); /* Ignore busy error message */
767 mutex_unlock(&markers_mutex
);
770 EXPORT_SYMBOL_GPL(marker_probe_unregister
);
772 static struct marker_entry
*
773 get_marker_from_private_data(marker_probe_func
*probe
, void *probe_private
)
775 struct marker_entry
*entry
;
777 struct hlist_head
*head
;
778 struct hlist_node
*node
;
780 for (i
= 0; i
< MARKER_TABLE_SIZE
; i
++) {
781 head
= &marker_table
[i
];
782 hlist_for_each_entry(entry
, node
, head
, hlist
) {
784 if (entry
->single
.func
== probe
785 && entry
->single
.probe_private
789 struct marker_probe_closure
*closure
;
790 closure
= entry
->multi
;
791 for (i
= 0; closure
[i
].func
; i
++) {
792 if (closure
[i
].func
== probe
&&
793 closure
[i
].probe_private
804 * marker_probe_unregister_private_data - Disconnect a probe from a marker
805 * @probe: probe function
806 * @probe_private: probe private data
808 * Unregister a probe by providing the registered private data.
809 * Only removes the first marker found in hash table.
810 * Return 0 on success or error value.
811 * We do not need to call a synchronize_sched to make sure the probes have
812 * finished running before doing a module unload, because the module unload
813 * itself uses stop_machine(), which insures that every preempt disabled section
816 int marker_probe_unregister_private_data(marker_probe_func
*probe
,
819 struct marker_entry
*entry
;
821 struct marker_probe_closure
*old
;
823 mutex_lock(&markers_mutex
);
824 entry
= get_marker_from_private_data(probe
, probe_private
);
829 if (entry
->rcu_pending
)
831 old
= marker_entry_remove_probe(entry
, NULL
, probe_private
);
832 mutex_unlock(&markers_mutex
);
833 marker_update_probes();
834 mutex_lock(&markers_mutex
);
835 entry
= get_marker_from_private_data(probe
, probe_private
);
838 if (entry
->rcu_pending
)
841 entry
->rcu_pending
= 1;
842 /* write rcu_pending before calling the RCU callback */
844 call_rcu_sched(&entry
->rcu
, free_old_closure
);
845 remove_marker(entry
->name
); /* Ignore busy error message */
847 mutex_unlock(&markers_mutex
);
850 EXPORT_SYMBOL_GPL(marker_probe_unregister_private_data
);
853 * marker_get_private_data - Get a marker's probe private data
855 * @probe: probe to match
856 * @num: get the nth matching probe's private data
858 * Returns the nth private data pointer (starting from 0) matching, or an
860 * Returns the private data pointer, or an ERR_PTR.
861 * The private data pointer should _only_ be dereferenced if the caller is the
862 * owner of the data, or its content could vanish. This is mostly used to
863 * confirm that a caller is the owner of a registered probe.
865 void *marker_get_private_data(const char *name
, marker_probe_func
*probe
,
868 struct hlist_head
*head
;
869 struct hlist_node
*node
;
870 struct marker_entry
*e
;
871 size_t name_len
= strlen(name
) + 1;
872 u32 hash
= jhash(name
, name_len
-1, 0);
875 head
= &marker_table
[hash
& ((1 << MARKER_HASH_BITS
)-1)];
876 hlist_for_each_entry(e
, node
, head
, hlist
) {
877 if (!strcmp(name
, e
->name
)) {
879 if (num
== 0 && e
->single
.func
== probe
)
880 return e
->single
.probe_private
;
882 struct marker_probe_closure
*closure
;
885 for (i
= 0; closure
[i
].func
; i
++) {
886 if (closure
[i
].func
!= probe
)
889 return closure
[i
].probe_private
;
895 return ERR_PTR(-ENOENT
);
897 EXPORT_SYMBOL_GPL(marker_get_private_data
);
899 #ifdef CONFIG_MODULES
901 int marker_module_notify(struct notifier_block
*self
,
902 unsigned long val
, void *data
)
904 struct module
*mod
= data
;
907 case MODULE_STATE_COMING
:
908 marker_update_probe_range(mod
->markers
,
909 mod
->markers
+ mod
->num_markers
);
911 case MODULE_STATE_GOING
:
912 marker_update_probe_range(mod
->markers
,
913 mod
->markers
+ mod
->num_markers
);
919 struct notifier_block marker_module_nb
= {
920 .notifier_call
= marker_module_notify
,
924 static int init_markers(void)
926 return register_module_notifier(&marker_module_nb
);
928 __initcall(init_markers
);
930 #endif /* CONFIG_MODULES */