[IMPROVE] x86: apply jumper for US probes installing
[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/module.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 /**
50  * @brief Create file in debugfs for rational struct
51  *
52  * @param parent Dentry parent
53  * @param r Pointer to the rational struct
54  * @param num_name File name of numerator
55  * @param denom_name File name of denominator
56  * @return Error code
57  */
58 int create_rational_files(struct dentry *parent, struct rational *r,
59                           const char *num_name, const char *denom_name)
60 {
61         struct dentry *d_num, *d_denom;
62
63         d_num = debugfs_create_u64(num_name, 0600, parent, &r->num);
64         if (d_num == NULL)
65                 return -ENOMEM;
66
67         d_denom = debugfs_create_file(denom_name, 0600, parent, &r->denom,
68                                   &fops_denom);
69         if (d_denom == NULL) {
70                 debugfs_remove(d_num);
71                 return -ENOMEM;
72         }
73
74         return 0;
75 }