1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-03 12:35:02 +00:00

Don't do round robin assignment of interrupts on xen

MFC after:	1 month
This commit is contained in:
Kip Macy 2008-09-18 03:19:46 +00:00
parent 425eaba985
commit 4e772e405d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=183133

View File

@ -458,6 +458,13 @@ intr_shuffle_irqs(void *arg __unused)
struct intsrc *isrc;
int i;
#ifdef XEN
/*
* Doesn't work yet
*/
return;
#endif
/* Don't bother on UP. */
if (mp_ncpus == 1)
return;