a
> smaller one since the limit apparently is 1K as stated in the reply which
> is pretty small)?
> From: Shaileshkumar Jain [saj...@vmware.com]
> Sent: Monday, October 18, 2010 4:59 PM
> To: open-vm-tools development
> Cc: Mr Ivan Lovric
18, 2010 4:59 PM
To: open-vm-tools development
Cc: Mr Ivan Lovric
Subject: RE: FreeBSD 8.1 VMHGFS patch
Ivan,
Thanks for your contribution. Could you follow the steps outlined here ?
http://open-vm-tools.sourceforge.net/contribute.php. thanks.
Sha
: open-vm-tools development
Subject: RE: FreeBSD 8.1 VMHGFS patch
I've been working on an experimental patch for mmap() support. It's
experimental since I haven't done rigorous
tests on it yet, only some basic checks. But, at least, cp works now! Taking a
look at truss on a before/aft
I've been working on an experimental patch for mmap() support. It's
experimental since I haven't done rigorous
tests on it yet, only some basic checks. But, at least, cp works now! Taking a
look at truss on a before/after:
stat("file",{ mode=-rwx-- ,inode=2884760722,size=5,blksize=4096 }) =
@@ -80,6 +80,8 @@
#define HGFS_VP_TO_FILESIZE(vp) \
HGFS_VP_TO_FP(vp)->fileSize
+#define HGFS_FILE_HT_HEAD(ht, index)(ht->hashTable[index]).next
+#define HGFS_FILE_HT_BUCKET(ht, index) (&ht->hashTable[index])
/*
* Types
_____
-tools-devel@lists.sourceforge.net
Subject: FreeBSD 8.1 VMHGFS patch
Hi there!
I've been trying to get shared folders working on FreeBSD 8.1 and came to a
couple of problems. The following
patch attempts to remedy some of the issues when compiling with regards to the
VMHGFS module. It fi
Hi there!
I've been trying to get shared folders working on FreeBSD 8.1 and came to a
couple of problems. The following
patch attempts to remedy some of the issues when compiling with regards to the
VMHGFS module. It fixes a couple
of compatability issues and also some memory leaks.
With resp