2014-02-11 20:01:00 +00:00
|
|
|
/*
|
|
|
|
* kpatch.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Seth Jennings <sjenning@redhat.com>
|
2014-03-13 20:08:08 +00:00
|
|
|
* Copyright (C) 2013-2014 Josh Poimboeuf <jpoimboe@redhat.com>
|
2014-02-11 20:01:00 +00:00
|
|
|
*
|
2014-03-05 03:34:03 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2014-02-13 16:51:00 +00:00
|
|
|
* Contains the API for the core kpatch module used by the patch modules
|
2014-02-11 20:01:00 +00:00
|
|
|
*/
|
|
|
|
|
2014-02-11 16:25:48 +00:00
|
|
|
#ifndef _KPATCH_H_
|
|
|
|
#define _KPATCH_H_
|
|
|
|
|
2014-03-14 21:41:00 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2014-02-11 16:25:48 +00:00
|
|
|
struct kpatch_func {
|
2014-03-14 18:22:59 +00:00
|
|
|
unsigned long new_addr;
|
2014-04-21 16:49:58 +00:00
|
|
|
unsigned long new_size;
|
2014-03-14 18:22:59 +00:00
|
|
|
unsigned long old_addr;
|
|
|
|
unsigned long old_size;
|
2014-03-14 21:41:00 +00:00
|
|
|
struct hlist_node node;
|
2014-04-23 01:58:45 +00:00
|
|
|
bool updating;
|
2014-02-11 16:25:48 +00:00
|
|
|
};
|
|
|
|
|
2014-04-21 16:29:01 +00:00
|
|
|
struct kpatch_module {
|
|
|
|
struct module *mod;
|
|
|
|
struct kpatch_func *funcs;
|
|
|
|
int num_funcs;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern int kpatch_register(struct kpatch_module *kpmod);
|
|
|
|
extern int kpatch_unregister(struct kpatch_module *kpmod);
|
2014-02-11 16:25:48 +00:00
|
|
|
|
|
|
|
#endif /* _KPATCH_H_ */
|