3c3ceb87d3
Remove unncessary function and data structure for rq_stats since no driver relies on this information. Keep the defer_timer kobj since irq balancer still needs this. Change-Id: I20516fd7ed8496426ef75246c7b77c1937c696dc Signed-off-by: Runmin Wang <runminw@codeaurora.org> [aparnam@codeaurora.org: Removed unused variables] Signed-off-by: Rama Aparna Mallavarapu <aparnam@codeaurora.org>
18 lines
454 B
C
18 lines
454 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2011,2013-2014,2019, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
struct rq_data {
|
|
unsigned long def_timer_jiffies;
|
|
unsigned long def_timer_last_jiffy;
|
|
int64_t def_start_time;
|
|
struct attribute_group *attr_group;
|
|
struct kobject *kobj;
|
|
struct work_struct def_timer_work;
|
|
int init;
|
|
};
|
|
|
|
extern spinlock_t rq_lock;
|
|
extern struct rq_data rq_info;
|
|
extern struct workqueue_struct *rq_wq;
|