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

« back to all changes in this revision

Viewing changes to modules/linux/vmci/vmciGuestKernelIf.c

  • 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) 2007 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
/*
 
20
 * vmciGuestKernelIf.c -- 
 
21
 * 
 
22
 *      This file implements guest only OS helper functions for VMCI.
 
23
 *      This is the linux specific implementation.
 
24
 */ 
 
25
 
 
26
/* Must come before any kernel header file */
 
27
#include "driver-config.h"
 
28
 
 
29
#if !defined(linux) || defined(VMKERNEL)
 
30
#error "Wrong platform."
 
31
#endif
 
32
 
 
33
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 9)
 
34
#include <linux/moduleparam.h>
 
35
#endif
 
36
 
 
37
#include "compat_version.h"
 
38
#include "compat_pci.h"
 
39
#include "vm_basic_types.h"
 
40
#include "vmciGuestKernelIf.h"
 
41
 
 
42
 
 
43
/*
 
44
 *-----------------------------------------------------------------------------
 
45
 *
 
46
 * VMCI_ReadPortBytes --
 
47
 *
 
48
 *      Copy memory from an I/O port to kernel memory.
 
49
 *
 
50
 * Results:
 
51
 *      No results.
 
52
 *
 
53
 * Side effects:
 
54
 *      None.
 
55
 *
 
56
 *-----------------------------------------------------------------------------
 
57
 */
 
58
 
 
59
void
 
60
VMCI_ReadPortBytes(VMCIIoHandle handle,  // IN: Unused
 
61
                   VMCIIoPort port,      // IN
 
62
                   uint8 *buffer,        // OUT
 
63
                   size_t bufferLength)  // IN
 
64
{
 
65
   insb(port, buffer, bufferLength);
 
66
}