~n-muench/ubuntu/quantal/open-vm-tools/open-vm-tools.may2.sid-sync

« back to all changes in this revision

Viewing changes to modules/linux/vmblock/autoconf/cachector1.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-30 09:48:43 UTC
  • mfrom: (1.1.5 upstream) (2.4.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090530094843-gdpza57r5iqsf124
Tags: 2009.05.22-167859-1
MergingĀ upstreamĀ versionĀ 2009.05.22-167859.

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
 
#include <linux/autoconf.h>
20
 
#include <linux/version.h>
21
 
 
22
 
/*
23
 
 * Between 2.6.27-rc1 and 2.6.27-rc2 ctor prototype was changed from
24
 
 * ctor(cache, ptr) to ctor(ptr).  Unfortunately there
25
 
 * is no typedef for ctor, so we have to redefine kmem_cache_create
26
 
 * to find out ctor prototype.  If prototype matches, then this is old
27
 
 * kernel.
28
 
 */
29
 
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28)
30
 
#error "This test intentionally fails on 2.6.28 and newer kernels."
31
 
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 26)
32
 
#include <linux/slab.h>
33
 
 
34
 
struct kmem_cache *kmem_cache_create(const char *, size_t, size_t,
35
 
                                     unsigned long,
36
 
                                     void (*)(struct kmem_cache *, void *));
37
 
                                                
38
 
#endif