blob: 0accf3889a638d571f259e66539fa0934ac14154 [file] [log] [blame]
Duy Truong790f06d2013-02-13 16:38:12 -08001/* Copyright (c) 2011, The Linux Foundation. All rights reserved.
Amar Singhalf49d99b2011-08-22 19:02:04 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14struct rq_data {
15 unsigned int rq_avg;
16 unsigned long rq_poll_jiffies;
17 unsigned long def_timer_jiffies;
18 unsigned long rq_poll_last_jiffy;
19 unsigned long rq_poll_total_jiffies;
20 unsigned long def_timer_last_jiffy;
21 unsigned int def_interval;
Archana Sathyakumar8c7101a2013-02-20 10:35:35 -070022 unsigned int hotplug_disabled;
Amar Singhalf49d99b2011-08-22 19:02:04 -070023 int64_t def_start_time;
24 struct attribute_group *attr_group;
25 struct kobject *kobj;
26 struct work_struct def_timer_work;
27 int init;
28};
29
30extern spinlock_t rq_lock;
31extern struct rq_data rq_info;
32extern struct workqueue_struct *rq_wq;