Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/external/bsd/drm2/linux sdt probe naming style.



details:   https://anonhg.NetBSD.org/src/rev/3179122039da
branches:  trunk
changeset: 835483:3179122039da
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Aug 27 15:24:53 2018 +0000

description:
sdt probe naming style.

diffstat:

 sys/external/bsd/drm2/linux/linux_idr.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 3eb478407fcb -r 3179122039da sys/external/bsd/drm2/linux/linux_idr.c
--- a/sys/external/bsd/drm2/linux/linux_idr.c   Mon Aug 27 15:24:40 2018 +0000
+++ b/sys/external/bsd/drm2/linux/linux_idr.c   Mon Aug 27 15:24:53 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: linux_idr.c,v 1.11 2018/08/27 15:07:29 riastradh Exp $ */
+/*     $NetBSD: linux_idr.c,v 1.12 2018/08/27 15:24:53 riastradh Exp $ */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_idr.c,v 1.11 2018/08/27 15:07:29 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_idr.c,v 1.12 2018/08/27 15:24:53 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -68,7 +68,7 @@
 SDT_PROBE_DEFINE3(sdt, linux, idr, remove,
     "struct idr *"/*idr*/, "int"/*id*/, "void *"/*data*/);
 SDT_PROBE_DEFINE0(sdt, linux, idr, preload);
-SDT_PROBE_DEFINE0(sdt, linux, idr, preload_end);
+SDT_PROBE_DEFINE0(sdt, linux, idr, preload__end);
 SDT_PROBE_DEFINE3(sdt, linux, idr, alloc,
     "struct idr *"/*idr*/, "int"/*id*/, "void *"/*data*/);
 
@@ -374,7 +374,7 @@
 {
        struct idr_cache *cache;
 
-       SDT_PROBE0(sdt, linux, idr, preload_end);
+       SDT_PROBE0(sdt, linux, idr, preload__end);
 
        /* Get the cache, or bail if it's not there.  */
        cache = lwp_getspecific(idr_cache_key);



Home | Main Index | Thread Index | Old Index