svn commit: r253382 - stable/9/sys/kern
Andriy Gapon
avg at FreeBSD.org
Tue Jul 16 08:16:05 UTC 2013
Author: avg
Date: Tue Jul 16 08:16:04 2013
New Revision: 253382
URL: http://svnweb.freebsd.org/changeset/base/253382
Log:
MFC r253075: namecache sdt: freebsd doesn't support structured
characters yet
Approved by: re (kib)
Modified:
stable/9/sys/kern/vfs_cache.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/kern/vfs_cache.c
==============================================================================
--- stable/9/sys/kern/vfs_cache.c Tue Jul 16 07:28:38 2013 (r253381)
+++ stable/9/sys/kern/vfs_cache.c Tue Jul 16 08:16:04 2013 (r253382)
@@ -68,10 +68,10 @@ SDT_PROBE_DEFINE2(vfs, namecache, enter_
"char *");
SDT_PROBE_DEFINE1(vfs, namecache, fullpath, entry, entry, "struct vnode *");
SDT_PROBE_DEFINE3(vfs, namecache, fullpath, hit, hit, "struct vnode *",
- "struct char *", "struct vnode *");
+ "char *", "struct vnode *");
SDT_PROBE_DEFINE1(vfs, namecache, fullpath, miss, miss, "struct vnode *");
SDT_PROBE_DEFINE3(vfs, namecache, fullpath, return, return, "int",
- "struct vnode *", "struct char *");
+ "struct vnode *", "char *");
SDT_PROBE_DEFINE3(vfs, namecache, lookup, hit, hit, "struct vnode *", "char *",
"struct vnode *");
SDT_PROBE_DEFINE2(vfs, namecache, lookup, hit_negative, hit-negative,
More information about the svn-src-stable-9
mailing list