Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102008227
D47174.id145148.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D47174.id145148.diff
View Options
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c
--- a/sys/kern/subr_bus.c
+++ b/sys/kern/subr_bus.c
@@ -35,6 +35,7 @@
#include <sys/conf.h>
#include <sys/domainset.h>
#include <sys/eventhandler.h>
+#include <sys/jail.h>
#include <sys/lock.h>
#include <sys/kernel.h>
#include <sys/limits.h>
@@ -2538,10 +2539,7 @@
else if (error != 0)
return (error);
- CURVNET_SET_QUIET(vnet0);
- error = device_attach(dev);
- CURVNET_RESTORE();
- return error;
+ return (device_attach(dev));
}
/**
@@ -2577,6 +2575,10 @@
return (ENXIO);
}
+ KASSERT(IS_DEFAULT_VNET(TD_TO_VNET(curthread)),
+ ("device_attach: curthread is not in default vnet"));
+ CURVNET_SET_QUIET(TD_TO_VNET(curthread));
+
device_sysctl_init(dev);
if (!device_is_quiet(dev))
device_print_child(dev->parent, dev);
@@ -2609,8 +2611,10 @@
KASSERT(dev->busy == 0, ("attach failed but busy"));
dev->state = DS_NOTPRESENT;
}
+ CURVNET_RESTORE();
return (error);
}
+ CURVNET_RESTORE();
dev->flags |= DF_ATTACHED_ONCE;
/*
* We only need the low bits of this time, but ranges from tens to thousands
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Nov 7, 11:58 AM (21 h, 28 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14266807
Default Alt Text
D47174.id145148.diff (1 KB)
Attached To
Mode
D47174: bus: Set the current VNET in device_attach()
Attached
Detach File
Event Timeline
Log In to Comment