[IMPROVE] Driver: implement kernel -> user connect
[kernel/swap-modules.git] / energy / rational_debugfs.c
1 /*
2  *  Dynamic Binary Instrumentation Module based on KProbes
3  *  energy/rational_debugfs.c
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Copyright (C) Samsung Electronics, 2013
20  *
21  * 2013         Vyacheslav Cherkashin <v.cherkashin@samsung.com>
22  *
23  */
24
25
26 #include <linux/dcache.h>
27 #include <linux/debugfs.h>
28 #include <linux/export.h>
29 #include "rational_debugfs.h"
30
31
32 static int denom_set(void *data, u64 val)
33 {
34         if (val == 0)
35                 return -EINVAL;
36
37         *(u64 *)data = val;
38         return 0;
39 }
40
41 static int denom_get(void *data, u64 *val)
42 {
43         *val = *(u64 *)data;
44         return 0;
45 }
46
47 DEFINE_SIMPLE_ATTRIBUTE(fops_denom, denom_get, denom_set, "%llu\n");
48
49 int create_rational_files(struct dentry *parent, struct rational *r,
50                           const char *num_name, const char *denom_name)
51 {
52         struct dentry *d_num, *d_denom;
53
54         d_num = debugfs_create_u64(num_name, 0600, parent, &r->num);
55         if (d_num == NULL)
56                 return -ENOMEM;
57
58         d_denom = debugfs_create_file(denom_name, 0600, parent, &r->denom,
59                                   &fops_denom);
60         if (d_denom == NULL) {
61                 debugfs_remove(d_num);
62                 return -ENOMEM;
63         }
64
65         return 0;
66 }