svn commit: r271854 - head/etc/devd

Hiroki Sato hrs at FreeBSD.org
Fri Sep 19 07:18:46 UTC 2014


Author: hrs
Date: Fri Sep 19 07:18:45 2014
New Revision: 271854
URL: http://svnweb.freebsd.org/changeset/base/271854

Log:
  Fix cdev.  It is a device node name, not a pathname.

Modified:
  head/etc/devd/hyperv.conf

Modified: head/etc/devd/hyperv.conf
==============================================================================
--- head/etc/devd/hyperv.conf	Fri Sep 19 05:43:38 2014	(r271853)
+++ head/etc/devd/hyperv.conf	Fri Sep 19 07:18:45 2014	(r271854)
@@ -6,7 +6,7 @@ notify 10 {
 	match "system"		"DEVFS";
 	match "subsystem"	"CDEV";
 	match "type"		"CREATE";
-	match "cdev"		"/dev/hv_kvp_dev";
+	match "cdev"		"hv_kvp_dev";
 	action "/usr/sbin/hv_kvp_daemon";
 };
 
@@ -14,6 +14,6 @@ notify 10 {
 	match "system"		"DEVFS";
 	match "subsystem"	"CDEV";
 	match "type"		"DESTROY";
-	match "cdev"		"/dev/hv_kvp_dev";
+	match "cdev"		"hv_kvp_dev";
 	action "pkill -x hv_kvp_daemon";
 };


More information about the svn-src-all mailing list