~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to modules/freebsd/vmhgfs/compat_vop.h

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2008-08-15 21:21:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080815212140-05fhxj8wroosysmj
Tags: 2008.08.08-109361-1ubuntu1
* Merge from Debian unstable (LP: #258393), remaining Ubuntu change:
  - add ubuntu_toolchain_FTBFS.dpatch patch, fix FTBFS
* Update ubuntu_toolchain_FTBFS.dpatch patch for the new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2008 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License as published by the
 
6
 * Free Software Foundation version 2 and no later version.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
10
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
11
 * for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
15
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
16
 *
 
17
 *********************************************************/
 
18
 
 
19
#ifndef __COMPAT_VOP_H__
 
20
#   define __COMPAT_VOP_H__ 1
 
21
 
 
22
#if __FreeBSD_version >= 800011
 
23
#define COMPAT_THREAD_VAR(varname, varval)
 
24
#define COMPAT_VOP_LOCK(vop, flags, threadvar) VOP_LOCK((vop), (flags))
 
25
#define COMPAT_VOP_UNLOCK(vop, flags, threadvar) VOP_UNLOCK((vop), (flags))
 
26
#define compat_lockstatus(lock, threadvar) lockstatus((lock))
 
27
#define compat_lockmgr(lock, flags, randompointerparam, threadval) lockmgr((lock), (flags), (randompointerparam))
 
28
#define compat_vn_lock(vp, flags, threadval) vn_lock((vp), (flags))
 
29
#else
 
30
#define COMPAT_THREAD_VAR(varname, varval) struct thread *varname = varval
 
31
#define COMPAT_VOP_LOCK(vop, flags, threadvar) VOP_LOCK((vop), (flags), (threadvar))
 
32
#define COMPAT_VOP_UNLOCK(vop, flags, threadvar) VOP_UNLOCK((vop), (flags), (threadvar))
 
33
#define compat_lockstatus(lock, threadvar) lockstatus((lock), (threadvar))
 
34
#define compat_vn_lock(vp, flags, threadval) vn_lock((vp), (flags), (threadval))
 
35
#define compat_lockmgr(lock, flags, randompointerparam, threadval) lockmgr((lock), (flags), (randompointerparam), (threadval))
 
36
#endif
 
37
 
 
38
/*
 
39
 * We use defines rather than typedefs here to avoid causing problems for files that
 
40
 * don't have a vnode_if.h available.
 
41
 */
 
42
#if __FreeBSD_version >= 700000
 
43
#   define compat_vop_lock_t vop_lock1_t
 
44
#   define compat_vop_lock_args struct vop_lock1_args
 
45
#   define COMPAT_VOP_LOCK_OP_ELEMENT vop_lock1
 
46
#else
 
47
#   define compat_vop_lock_t vop_lock_t
 
48
#   define compat_vop_lock_args struct vop_lock_args
 
49
#   define COMPAT_VOP_LOCK_OP_ELEMENT vop_lock
 
50
#endif
 
51
 
 
52
#endif