2014-11-21 10:51:34 +00:00
|
|
|
/*
|
|
|
|
* MARS Long Distance Replication Software
|
|
|
|
*
|
|
|
|
* This file is part of MARS project: http://schoebel.github.io/mars/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2014 Thomas Schoebel-Theuer
|
|
|
|
* Copyright (C) 2011-2014 1&1 Internet AG
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2013-01-23 11:21:22 +00:00
|
|
|
#ifndef MARS_LIB_MAPFREE_H
|
|
|
|
#define MARS_LIB_MAPFREE_H
|
|
|
|
|
|
|
|
/* Mapfree infrastructure.
|
|
|
|
*
|
|
|
|
* Purposes:
|
|
|
|
*
|
|
|
|
* 1) Open files only once when possible, do ref-counting on struct mapfree_info
|
|
|
|
*
|
|
|
|
* 2) Automatically call invalidate_mapping_pages() in the background on
|
|
|
|
* "unused" areas to free resources.
|
|
|
|
* Used areas can be indicated by calling mapfree_set() frequently.
|
|
|
|
* Usage model: tailored to sequential logfiles.
|
|
|
|
*
|
|
|
|
* 3) Do it all in a completely decoupled manner, in order to prevent resource deadlocks.
|
|
|
|
*
|
|
|
|
* 4) Also to prevent deadlocks: always set mapping_set_gfp_mask() accordingly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mars.h"
|
|
|
|
|
|
|
|
extern int mapfree_period_sec;
|
2013-09-16 09:51:03 +00:00
|
|
|
extern int mapfree_grace_keep_mb;
|
2013-01-23 11:21:22 +00:00
|
|
|
|
|
|
|
struct mapfree_info {
|
|
|
|
struct list_head mf_head;
|
2014-03-30 06:18:47 +00:00
|
|
|
struct list_head mf_dirty_anchor;
|
2013-01-23 11:21:22 +00:00
|
|
|
char *mf_name;
|
|
|
|
struct file *mf_filp;
|
|
|
|
int mf_flags;
|
2015-02-10 09:45:40 +00:00
|
|
|
int mf_mode;
|
2013-01-23 11:21:22 +00:00
|
|
|
atomic_t mf_count;
|
|
|
|
spinlock_t mf_lock;
|
|
|
|
loff_t mf_min[2];
|
|
|
|
loff_t mf_last;
|
2013-04-16 07:37:54 +00:00
|
|
|
loff_t mf_max;
|
2013-01-23 11:21:22 +00:00
|
|
|
long long mf_jiffies;
|
|
|
|
};
|
|
|
|
|
2014-03-30 06:18:47 +00:00
|
|
|
struct dirty_info {
|
|
|
|
struct list_head dirty_head;
|
|
|
|
struct mref_object *dirty_mref;
|
|
|
|
int dirty_stage;
|
|
|
|
};
|
|
|
|
|
2013-01-23 11:21:22 +00:00
|
|
|
struct mapfree_info *mapfree_get(const char *filename, int flags);
|
|
|
|
|
|
|
|
void mapfree_put(struct mapfree_info *mf);
|
|
|
|
|
2013-04-16 07:37:54 +00:00
|
|
|
void mapfree_set(struct mapfree_info *mf, loff_t min, loff_t max);
|
2013-01-23 11:21:22 +00:00
|
|
|
|
2014-03-30 06:18:47 +00:00
|
|
|
////////////////// dirty IOs on the fly //////////////////
|
|
|
|
|
|
|
|
void mf_insert_dirty(struct mapfree_info *mf, struct dirty_info *di);
|
|
|
|
void mf_remove_dirty(struct mapfree_info *mf, struct dirty_info *di);
|
|
|
|
void mf_get_dirty(struct mapfree_info *mf, loff_t *min, loff_t *max, int min_stage, int max_stage);
|
|
|
|
void mf_get_any_dirty(const char *filename, loff_t *min, loff_t *max, int min_stage, int max_stage);
|
|
|
|
|
2013-01-23 11:21:22 +00:00
|
|
|
////////////////// module init stuff /////////////////////////
|
|
|
|
|
|
|
|
int __init init_mars_mapfree(void);
|
|
|
|
|
2014-04-23 11:16:26 +00:00
|
|
|
void exit_mars_mapfree(void);
|
2013-01-23 11:21:22 +00:00
|
|
|
|
|
|
|
#endif
|