Nikola Ciprich wrote:
Hi,
anon_inode_getfd flag parameter was added after 2.6.26
following patch fixes compilation
please apply
thanks
nik



------------------------------------------------------------------------

diff -Naur kvm-72/kernel/anon_inodes.c 
kvm-72-fix-2.6.26-anon-inode/kernel/anon_inodes.c
--- kvm-72/kernel/anon_inodes.c 2008-07-27 12:08:56.000000000 +0200
+++ kvm-72-fix-2.6.26-anon-inode/kernel/anon_inodes.c   2008-07-29 
10:36:51.000000000 +0200
@@ -245,6 +245,15 @@
        return fd;
 }
+#elif LINUX_VERSION_CODE == KERNEL_VERSION(2,6,26)

Should that be ">=" for future use?

+
+int kvm_anon_inode_getfd(const char *name,
+                        const struct file_operations *fops,
+                        void *priv, int flags)
+{
+       return anon_inode_getfd(name, fops, priv);
+}
+
 #else
int kvm_anon_inode_getfd(const char *name,


--
Bill Davidsen <[EMAIL PROTECTED]>
  "We have more to fear from the bungling of the incompetent than from
the machinations of the wicked."  - from Slashdot
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to