diff options
Diffstat (limited to 'block/blk.h')
-rw-r--r-- | block/blk.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/block/blk.h b/block/blk.h index 7efd772336de..df5b59acbdff 100644 --- a/block/blk.h +++ b/block/blk.h | |||
@@ -164,22 +164,6 @@ static inline int queue_congestion_off_threshold(struct request_queue *q) | |||
164 | return q->nr_congestion_off; | 164 | return q->nr_congestion_off; |
165 | } | 165 | } |
166 | 166 | ||
167 | static inline int blk_cpu_to_group(int cpu) | ||
168 | { | ||
169 | int group = NR_CPUS; | ||
170 | #ifdef CONFIG_SCHED_MC | ||
171 | const struct cpumask *mask = cpu_coregroup_mask(cpu); | ||
172 | group = cpumask_first(mask); | ||
173 | #elif defined(CONFIG_SCHED_SMT) | ||
174 | group = cpumask_first(topology_thread_cpumask(cpu)); | ||
175 | #else | ||
176 | return cpu; | ||
177 | #endif | ||
178 | if (likely(group < NR_CPUS)) | ||
179 | return group; | ||
180 | return cpu; | ||
181 | } | ||
182 | |||
183 | /* | 167 | /* |
184 | * Contribute to IO statistics IFF: | 168 | * Contribute to IO statistics IFF: |
185 | * | 169 | * |