aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/bus_if.m
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2016-05-03 01:17:40 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2016-05-03 01:17:40 +0000
commit8a08b7d36b7946ba88a40afe0165de8671d4f568 (patch)
tree821b2b69afc5308c273180646eab69cb09ab3979 /sys/kern/bus_if.m
parenta38f0dafb5503e94ac5b76510e46fdd4556e96d5 (diff)
downloadsrc-8a08b7d36b7946ba88a40afe0165de8671d4f568.tar.gz
src-8a08b7d36b7946ba88a40afe0165de8671d4f568.zip
Revert bus_get_cpus() for now.
I really thought I had run this through the tinderbox before committing, but many places need <sys/types.h> -> <sys/param.h> for <sys/bus.h> now.
Notes
Notes: svn path=/head/; revision=298951
Diffstat (limited to 'sys/kern/bus_if.m')
-rw-r--r--sys/kern/bus_if.m18
1 files changed, 0 insertions, 18 deletions
diff --git a/sys/kern/bus_if.m b/sys/kern/bus_if.m
index f0115e8670a2..56673a4a0374 100644
--- a/sys/kern/bus_if.m
+++ b/sys/kern/bus_if.m
@@ -731,21 +731,3 @@ METHOD int get_domain {
device_t _child;
int *_domain;
} DEFAULT bus_generic_get_domain;
-
-/**
- * @brief Request a set of CPUs
- *
- * @param _dev the bus device
- * @param _child the child device
- * @param _op type of CPUs to request
- * @param _setsize the size of the set passed in _cpuset
- * @param _cpuset a pointer to a cpuset to receive the requested
- * set of CPUs
- */
-METHOD int get_cpus {
- device_t _dev;
- device_t _child;
- enum cpu_sets _op;
- size_t _setsize;
- cpuset_t *_cpuset;
-} DEFAULT bus_generic_get_cpus;