Fix build errors (redundant declarations)

PR:			152283
Submitted by:		fumifumi@abacustech.jp
This commit is contained in:
Martin Blapp 2010-11-16 07:42:44 +00:00
parent 8a6e3fb242
commit e189332abb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=264630
3 changed files with 40 additions and 2 deletions

View file

@ -0,0 +1,11 @@
--- modules/freebsd/vmhgfs/kernelStubs.h.orig 2010-10-20 05:19:54.000000000 +0900
+++ modules/freebsd/vmhgfs/kernelStubs.h 2010-11-16 13:26:24.000000000 +0900
@@ -132,7 +132,7 @@
* Stub functions we provide.
*/
-void Panic(const char *fmt, ...);
+/* void Panic(const char *fmt, ...); -> vm_assert.h */
char *Str_Strcpy(char *buf, const char *src, size_t maxSize);
int Str_Vsnprintf(char *str, size_t size, const char *format,

View file

@ -1,5 +1,5 @@
--- modules/freebsd/vmhgfs/state.c.orig 2009-02-28 23:06:10.000000000 +0100
+++ modules/freebsd/vmhgfs/state.c 2009-02-28 23:08:59.000000000 +0100
--- modules/freebsd/vmhgfs/state.c.orig 2010-10-20 05:19:54.000000000 +0900
+++ modules/freebsd/vmhgfs/state.c 2010-11-16 13:27:57.000000000 +0900
@@ -770,6 +770,12 @@
goto destroyVnode;
}
@ -13,3 +13,19 @@
/*
* Now we'll initialize the vnode. We need to set the file type, vnode
* operations, flags, filesystem pointer, reference count, and device.
@@ -1277,6 +1283,7 @@
*----------------------------------------------------------------------------
*/
+#if 0 /* never used */
void
HgfsMarkFileMmapped(struct vnode *vp, // vnode which state is being changed
Bool mmapped) // New mapping state
@@ -1286,6 +1293,7 @@
fp = HGFS_VP_TO_FP(vp);
fp->mmapped = mmapped;
}
+#endif
/* Adding/finding/removing file state from hash table */

View file

@ -0,0 +1,11 @@
--- modules/freebsd/vmhgfs/vnopscommon.c.orig 2010-10-20 05:19:54.000000000 +0900
+++ modules/freebsd/vmhgfs/vnopscommon.c 2010-11-16 13:26:55.000000000 +0900
@@ -50,7 +50,7 @@
static int HgfsDoGetattrInt(const char *path, const HgfsHandle handle, HgfsSuperInfo *sip,
HgfsAttrV2 *hgfsAttrV2);
static int HgfsDoGetattrByName(const char *path, HgfsSuperInfo *sip, HgfsAttrV2 *hgfsAttrV2);
-int HgfsReadlinkInt(struct vnode *vp, struct uio *uiop);
+/* int HgfsReadlinkInt(struct vnode *vp, struct uio *uiop); -> vnopscommon.h */
static int HgfsQueryAttrInt(const char *path, HgfsHandle handle, HgfsSuperInfo *sip,
HgfsKReqHandle req);
static int HgfsRefreshHandle(struct vnode *vp, HgfsSuperInfo *sip, HgfsHandle *handle);