-
Notifications
You must be signed in to change notification settings - Fork 25
/
pmfs_test.c
50 lines (44 loc) · 1.2 KB
/
pmfs_test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* BRIEF DESCRIPTION
*
* pmfs test module.
*
* Copyright 2012-2013 Intel Corporation
* Copyright 2009-2011 Marco Stornelli <marco.stornelli@gmail.com>
* Copyright 2003 Sony Corporation
* Copyright 2003 Matsushita Electric Industrial Co., Ltd.
* 2003-2004 (c) MontaVista Software, Inc. , Steve Longerbeam
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed "as is" without any
* warranty of any kind, whether express or implied.
*/
#include <linux/module.h>
#include <linux/version.h>
#include <linux/init.h>
#include <linux/fs.h>
#include "pmfs.h"
int __init test_pmfs_write(void)
{
struct pmfs_super_block *psb;
psb = get_pmfs_super();
if (!psb) {
printk(KERN_ERR
"%s: PMFS super block not found (not mounted?)\n",
__func__);
return 1;
}
/*
* Attempt an unprotected clear of checksum information in the
* superblock, this should cause a kernel page protection fault.
*/
printk("%s: writing to kernel VA %p\n", __func__, psb);
psb->s_sum = 0;
return 0;
}
void test_pmfs_write_cleanup(void)
{
}
/* Module information */
MODULE_LICENSE("GPL");
module_init(test_pmfs_write);
module_exit(test_pmfs_write_cleanup);