[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [PV-on-HVM] Allow platform interrupt to be used for entropy.
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxx # Date 1168612813 0 # Node ID c6cea93d3cd9bd9336a075762430e3a08bce2f07 # Parent 7ad205a162a8f4fb1213a4be4e69787bcf98ce9d [PV-on-HVM] Allow platform interrupt to be used for entropy. Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> --- unmodified_drivers/linux-2.6/platform-pci/platform-pci.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff -r 7ad205a162a8 -r c6cea93d3cd9 unmodified_drivers/linux-2.6/platform-pci/platform-pci.c --- a/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c Fri Jan 12 14:38:30 2007 +0000 +++ b/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c Fri Jan 12 14:40:13 2007 +0000 @@ -250,10 +250,10 @@ static int __devinit platform_pci_init(s if ((ret = init_xen_info())) goto out; - if ((ret = request_irq(pdev->irq, evtchn_interrupt, SA_SHIRQ, - "xen-platform-pci", pdev))) { - goto out; - } + if ((ret = request_irq(pdev->irq, evtchn_interrupt, + SA_SHIRQ | SA_SAMPLE_RANDOM, + "xen-platform-pci", pdev))) + goto out; if ((ret = set_callback_via(callback_via))) goto out; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |