mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
914b063133
In the 2.6.37 kernel the function invalidate_inodes() is no longer exported for use by modules. This memory management functionality is needed to invalidate the inodes attached to a super block without unmounting the filesystem. Because this function still exists in the kernel and the prototype is available is a common header all we strictly need is the symbol address. The address is obtained using spl_kallsyms_lookup_name() and assigned to the variable invalidate_inodes_fn. Then a #define is used to replace all instances of invalidate_inodes() with a call to the acquired address. All the complexity is hidden behind HAVE_INVALIDATE_INODES and invalidate_inodes() can be used as usual. Long term we should try to get this, or another, interface made available to modules again.
60 lines
2.1 KiB
C
60 lines
2.1 KiB
C
/*****************************************************************************\
|
|
* Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
|
|
* Copyright (C) 2007 The Regents of the University of California.
|
|
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
|
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
|
* UCRL-CODE-235197
|
|
*
|
|
* This file is part of the SPL, Solaris Porting Layer.
|
|
* For details, see <http://github.com/behlendorf/spl/>.
|
|
*
|
|
* The SPL is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* The SPL is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
|
\*****************************************************************************/
|
|
|
|
#ifndef _SPL_MM_COMPAT_H
|
|
#define _SPL_MM_COMPAT_H
|
|
|
|
#include <linux/mm.h>
|
|
#include <linux/fs.h>
|
|
|
|
/*
|
|
* Linux 2.6.31 API Change.
|
|
* Individual pages_{min,low,high} moved in to watermark array.
|
|
*/
|
|
#ifndef min_wmark_pages
|
|
#define min_wmark_pages(z) (z->pages_min)
|
|
#endif
|
|
|
|
#ifndef low_wmark_pages
|
|
#define low_wmark_pages(z) (z->pages_low)
|
|
#endif
|
|
|
|
#ifndef high_wmark_pages
|
|
#define high_wmark_pages(z) (z->pages_high)
|
|
#endif
|
|
|
|
/*
|
|
* 2.6.37 API compat,
|
|
* The function invalidate_inodes() is no longer exported by the kernel.
|
|
* The prototype however is still available which means it is safe
|
|
* to acquire the symbol's address using spl_kallsyms_lookup_name().
|
|
*/
|
|
#ifndef HAVE_INVALIDATE_INODES
|
|
typedef int (*invalidate_inodes_t)(struct super_block *sb);
|
|
extern invalidate_inodes_t invalidate_inodes_fn;
|
|
#define invalidate_inodes(sb) invalidate_inodes_fn(sb)
|
|
#endif /* HAVE_INVALIDATE_INODES */
|
|
|
|
#endif /* SPL_MM_COMPAT_H */
|