From 96e755c8514d99fa491e193def76cc7c5eff8006 Mon Sep 17 00:00:00 2001 From: Vadim Kuznetsov Date: Sat, 17 Mar 2012 16:35:20 +0000 Subject: open-vm-tools: version bump svn path=/trunk/; revision=538 --- .../open-vm-tools-kmod/files/moduleparam.patch | 12 ------ .../open-vm-tools-kmod/files/setnlink.patch | 45 ---------------------- 2 files changed, 57 deletions(-) delete mode 100644 app-emulation/open-vm-tools-kmod/files/moduleparam.patch delete mode 100644 app-emulation/open-vm-tools-kmod/files/setnlink.patch (limited to 'app-emulation/open-vm-tools-kmod/files') diff --git a/app-emulation/open-vm-tools-kmod/files/moduleparam.patch b/app-emulation/open-vm-tools-kmod/files/moduleparam.patch deleted file mode 100644 index 6589705..0000000 --- a/app-emulation/open-vm-tools-kmod/files/moduleparam.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/modules/linux/vmhgfs/tcp.c b/modules/linux/vmhgfs/tcp.c -index c7070a6..31a40df 100644 ---- a/modules/linux/vmhgfs/tcp.c -+++ b/modules/linux/vmhgfs/tcp.c -@@ -32,6 +32,7 @@ - #include - #include - #include -+#include - #include - #include - diff --git a/app-emulation/open-vm-tools-kmod/files/setnlink.patch b/app-emulation/open-vm-tools-kmod/files/setnlink.patch deleted file mode 100644 index 9ae4fe7..0000000 --- a/app-emulation/open-vm-tools-kmod/files/setnlink.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff --git a/modules/linux/vmhgfs/fsutil.c b/modules/linux/vmhgfs/fsutil.c -index 0c5102b..a978005 100644 ---- a/modules/linux/vmhgfs/fsutil.c -+++ b/modules/linux/vmhgfs/fsutil.c -@@ -62,6 +62,31 @@ static int HgfsPackGetattrRequest(HgfsReq *req, - * Private function implementations. - */ - -+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 2, 0) -+/* -+ *---------------------------------------------------------------------------- -+ * -+ * set_nlink -- -+ * -+ * Set an inode's link count. -+ * -+ * Results: -+ * None -+ * -+ * Side effects: -+ * None -+ * -+ *---------------------------------------------------------------------------- -+ */ -+ -+static inline void -+set_nlink(struct inode *inode, unsigned int nlink) -+{ -+ inode->i_nlink = nlink; -+} -+#endif -+ -+ - /* - *---------------------------------------------------------------------- - * -@@ -607,7 +632,7 @@ HgfsChangeFileAttributes(struct inode *inode, // IN/OUT: Inode - * account for '.' and ".."), and find printed a hard link error. So until - * we have getattr support for nlink, everyone gets 1. - */ -- inode->i_nlink = 1; -+ set_nlink(inode, 1); - - /* - * Use the stored uid and gid if we were given them at mount-time, or if -- cgit v1.2.3-65-gdbad