From mboxrd@z Thu Jan 1 00:00:00 1970 From: hamo.by@gmail.com Subject: [PATCH] KVM: fix undeclared MAY_{READ,WRITE,ACCESS} Date: Sat, 24 Dec 2011 13:46:35 +0800 Message-ID: <1324705595-4035-1-git-send-email-hamo.by@gmail.com> Cc: hamo.by@gmail.com, kvm@vger.kernel.org, linux-kernel@vger.kernel.org To: avi@redhat.com, mtosatti@redhat.com Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org From: Yang Bai commit 08a95a511af91a2a6c42f2a8f13b99402a39e84b checks device assignment permission but forgot to include the definition of MAY_{READ,WRITE,ACCESS} in linux/fs.h Include it and this fix the build error here: http://buildbot.b1-systems.de/kvm/builders/i386/builds/401 Signed-off-by: Yang Bai --- virt/kvm/assigned-dev.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/virt/kvm/assigned-dev.c b/virt/kvm/assigned-dev.c index da9690e..1d9dad0 100644 --- a/virt/kvm/assigned-dev.c +++ b/virt/kvm/assigned-dev.c @@ -18,6 +18,7 @@ #include #include #include +#include #include "irq.h" static struct kvm_assigned_dev_kernel *kvm_find_assigned_dev(struct list_head *head, -- 1.7.7.3