From a99b20b15bf74c6f8cee3609e0b9a6e757fdb331 Mon Sep 17 00:00:00 2001 From: jsg Date: Fri, 26 Aug 2016 00:45:50 +0000 Subject: [PATCH] correct INTR_MSG_MASK to include INTR_MSG_1 ok dlg@ --- sys/dev/pci/vmwpvs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/pci/vmwpvs.c b/sys/dev/pci/vmwpvs.c index c019062e549..5483f12c514 100644 --- a/sys/dev/pci/vmwpvs.c +++ b/sys/dev/pci/vmwpvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmwpvs.c,v 1.13 2015/09/10 18:10:34 deraadt Exp $ */ +/* $OpenBSD: vmwpvs.c,v 1.14 2016/08/26 00:45:50 jsg Exp $ */ /* * Copyright (c) 2013 David Gwynne @@ -62,7 +62,7 @@ #define VMWPVS_INTR_CMPL_MASK (VMWPVS_INTR_CMPL_0 | VMWPVS_INTR_CMPL_1) #define VMWPVS_INTR_MSG_0 (1 << 2) #define VMWPVS_INTR_MSG_1 (1 << 3) -#define VMWPVS_INTR_MSG_MASK (VMWPVS_INTR_MSG_0 | VMWPVS_INTR_MSG_0) +#define VMWPVS_INTR_MSG_MASK (VMWPVS_INTR_MSG_0 | VMWPVS_INTR_MSG_1) #define VMWPVS_INTR_ALL_MASK (VMWPVS_INTR_CMPL_MASK | VMWPVS_INTR_MSG_MASK) #define VMWPVS_PAGE_SHIFT 12 -- 2.20.1