2016-02-04 05:33:40 +07:00
|
|
|
/*
|
2016-02-15 11:22:17 +07:00
|
|
|
* Copyright(c) 2015, 2016 Intel Corporation.
|
2016-02-04 05:33:40 +07:00
|
|
|
*
|
|
|
|
* This file is provided under a dual BSD/GPLv2 license. When using or
|
|
|
|
* redistributing this file, you may do so under either license.
|
|
|
|
*
|
|
|
|
* GPL LICENSE SUMMARY
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of version 2 of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* - Neither the name of Intel Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <linux/topology.h>
|
|
|
|
#include <linux/cpumask.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
|
|
|
|
#include "hfi.h"
|
|
|
|
#include "affinity.h"
|
|
|
|
#include "sdma.h"
|
|
|
|
#include "trace.h"
|
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
struct hfi1_affinity_node_list node_affinity = {
|
|
|
|
.list = LIST_HEAD_INIT(node_affinity.list),
|
|
|
|
.lock = __SPIN_LOCK_UNLOCKED(&node_affinity.lock),
|
|
|
|
};
|
|
|
|
|
2016-02-04 05:33:40 +07:00
|
|
|
/* Name of IRQ types, indexed by enum irq_type */
|
|
|
|
static const char * const irq_type_names[] = {
|
|
|
|
"SDMA",
|
|
|
|
"RCVCTXT",
|
|
|
|
"GENERAL",
|
|
|
|
"OTHER",
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline void init_cpu_mask_set(struct cpu_mask_set *set)
|
|
|
|
{
|
|
|
|
cpumask_clear(&set->mask);
|
|
|
|
cpumask_clear(&set->used);
|
|
|
|
set->gen = 0;
|
|
|
|
}
|
|
|
|
|
2016-04-13 01:30:08 +07:00
|
|
|
/* Initialize non-HT cpu cores mask */
|
2016-07-25 21:52:36 +07:00
|
|
|
void init_real_cpu_mask(void)
|
2016-04-13 01:30:08 +07:00
|
|
|
{
|
|
|
|
int possible, curr_cpu, i, ht;
|
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
cpumask_clear(&node_affinity.real_cpu_mask);
|
2016-04-13 01:30:08 +07:00
|
|
|
|
|
|
|
/* Start with cpu online mask as the real cpu mask */
|
2016-07-25 21:52:36 +07:00
|
|
|
cpumask_copy(&node_affinity.real_cpu_mask, cpu_online_mask);
|
2016-04-13 01:30:08 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove HT cores from the real cpu mask. Do this in two steps below.
|
|
|
|
*/
|
2016-07-25 21:52:36 +07:00
|
|
|
possible = cpumask_weight(&node_affinity.real_cpu_mask);
|
2016-04-13 01:30:08 +07:00
|
|
|
ht = cpumask_weight(topology_sibling_cpumask(
|
2016-07-25 21:52:36 +07:00
|
|
|
cpumask_first(&node_affinity.real_cpu_mask)));
|
2016-04-13 01:30:08 +07:00
|
|
|
/*
|
|
|
|
* Step 1. Skip over the first N HT siblings and use them as the
|
|
|
|
* "real" cores. Assumes that HT cores are not enumerated in
|
|
|
|
* succession (except in the single core case).
|
|
|
|
*/
|
2016-07-25 21:52:36 +07:00
|
|
|
curr_cpu = cpumask_first(&node_affinity.real_cpu_mask);
|
2016-04-13 01:30:08 +07:00
|
|
|
for (i = 0; i < possible / ht; i++)
|
2016-07-25 21:52:36 +07:00
|
|
|
curr_cpu = cpumask_next(curr_cpu, &node_affinity.real_cpu_mask);
|
2016-04-13 01:30:08 +07:00
|
|
|
/*
|
|
|
|
* Step 2. Remove the remaining HT siblings. Use cpumask_next() to
|
|
|
|
* skip any gaps.
|
|
|
|
*/
|
|
|
|
for (; i < possible; i++) {
|
2016-07-25 21:52:36 +07:00
|
|
|
cpumask_clear_cpu(curr_cpu, &node_affinity.real_cpu_mask);
|
|
|
|
curr_cpu = cpumask_next(curr_cpu, &node_affinity.real_cpu_mask);
|
2016-04-13 01:30:08 +07:00
|
|
|
}
|
2016-07-25 21:52:36 +07:00
|
|
|
}
|
2016-04-13 01:30:08 +07:00
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
void node_affinity_init(void)
|
|
|
|
{
|
|
|
|
cpumask_copy(&node_affinity.proc.mask, cpu_online_mask);
|
|
|
|
/*
|
|
|
|
* The real cpu mask is part of the affinity struct but it has to be
|
|
|
|
* initialized early. It is needed to calculate the number of user
|
|
|
|
* contexts in set_up_context_variables().
|
|
|
|
*/
|
|
|
|
init_real_cpu_mask();
|
|
|
|
}
|
|
|
|
|
|
|
|
void node_affinity_destroy(void)
|
|
|
|
{
|
|
|
|
struct list_head *pos, *q;
|
|
|
|
struct hfi1_affinity_node *entry;
|
|
|
|
|
|
|
|
spin_lock(&node_affinity.lock);
|
|
|
|
list_for_each_safe(pos, q, &node_affinity.list) {
|
|
|
|
entry = list_entry(pos, struct hfi1_affinity_node,
|
|
|
|
list);
|
|
|
|
list_del(pos);
|
|
|
|
kfree(entry);
|
|
|
|
}
|
|
|
|
spin_unlock(&node_affinity.lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct hfi1_affinity_node *node_affinity_allocate(int node)
|
|
|
|
{
|
|
|
|
struct hfi1_affinity_node *entry;
|
|
|
|
|
|
|
|
entry = kzalloc(sizeof(*entry), GFP_KERNEL);
|
|
|
|
if (!entry)
|
|
|
|
return NULL;
|
|
|
|
entry->node = node;
|
|
|
|
INIT_LIST_HEAD(&entry->list);
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It appends an entry to the list.
|
|
|
|
* It *must* be called with node_affinity.lock held.
|
|
|
|
*/
|
|
|
|
static void node_affinity_add_tail(struct hfi1_affinity_node *entry)
|
|
|
|
{
|
|
|
|
list_add_tail(&entry->list, &node_affinity.list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* It must be called with node_affinity.lock held */
|
|
|
|
static struct hfi1_affinity_node *node_affinity_lookup(int node)
|
|
|
|
{
|
|
|
|
struct list_head *pos;
|
|
|
|
struct hfi1_affinity_node *entry;
|
|
|
|
|
|
|
|
list_for_each(pos, &node_affinity.list) {
|
|
|
|
entry = list_entry(pos, struct hfi1_affinity_node, list);
|
|
|
|
if (entry->node == node)
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2016-04-13 01:30:08 +07:00
|
|
|
}
|
|
|
|
|
2016-02-04 05:33:40 +07:00
|
|
|
/*
|
|
|
|
* Interrupt affinity.
|
|
|
|
*
|
|
|
|
* non-rcv avail gets a default mask that
|
|
|
|
* starts as possible cpus with threads reset
|
|
|
|
* and each rcv avail reset.
|
|
|
|
*
|
|
|
|
* rcv avail gets node relative 1 wrapping back
|
|
|
|
* to the node relative 1 as necessary.
|
|
|
|
*
|
|
|
|
*/
|
2016-07-25 21:52:36 +07:00
|
|
|
int hfi1_dev_affinity_init(struct hfi1_devdata *dd)
|
2016-02-04 05:33:40 +07:00
|
|
|
{
|
|
|
|
int node = pcibus_to_node(dd->pcidev->bus);
|
2016-07-25 21:52:36 +07:00
|
|
|
struct hfi1_affinity_node *entry;
|
2016-02-04 05:33:40 +07:00
|
|
|
const struct cpumask *local_mask;
|
2016-04-13 01:30:08 +07:00
|
|
|
int curr_cpu, possible, i;
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
if (node < 0)
|
|
|
|
node = numa_node_id();
|
|
|
|
dd->node = node;
|
|
|
|
|
|
|
|
local_mask = cpumask_of_node(dd->node);
|
|
|
|
if (cpumask_first(local_mask) >= nr_cpu_ids)
|
|
|
|
local_mask = topology_core_cpumask(0);
|
2016-07-25 21:52:36 +07:00
|
|
|
|
|
|
|
spin_lock(&node_affinity.lock);
|
|
|
|
entry = node_affinity_lookup(dd->node);
|
|
|
|
spin_unlock(&node_affinity.lock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is the first time this NUMA node's affinity is used,
|
|
|
|
* create an entry in the global affinity structure and initialize it.
|
|
|
|
*/
|
|
|
|
if (!entry) {
|
|
|
|
entry = node_affinity_allocate(node);
|
|
|
|
if (!entry) {
|
|
|
|
dd_dev_err(dd,
|
|
|
|
"Unable to allocate global affinity node\n");
|
|
|
|
return -ENOMEM;
|
2016-02-04 05:33:40 +07:00
|
|
|
}
|
2016-07-25 21:52:36 +07:00
|
|
|
init_cpu_mask_set(&entry->def_intr);
|
|
|
|
init_cpu_mask_set(&entry->rcv_intr);
|
|
|
|
/* Use the "real" cpu mask of this node as the default */
|
|
|
|
cpumask_and(&entry->def_intr.mask, &node_affinity.real_cpu_mask,
|
|
|
|
local_mask);
|
|
|
|
|
|
|
|
/* fill in the receive list */
|
|
|
|
possible = cpumask_weight(&entry->def_intr.mask);
|
|
|
|
curr_cpu = cpumask_first(&entry->def_intr.mask);
|
|
|
|
|
|
|
|
if (possible == 1) {
|
|
|
|
/* only one CPU, everyone will use it */
|
|
|
|
cpumask_set_cpu(curr_cpu, &entry->rcv_intr.mask);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Retain the first CPU in the default list for the
|
|
|
|
* control context.
|
|
|
|
*/
|
|
|
|
curr_cpu = cpumask_next(curr_cpu,
|
|
|
|
&entry->def_intr.mask);
|
2016-02-04 05:33:40 +07:00
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
/*
|
|
|
|
* Remove the remaining kernel receive queues from
|
|
|
|
* the default list and add them to the receive list.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < dd->n_krcv_queues - 1; i++) {
|
|
|
|
cpumask_clear_cpu(curr_cpu,
|
|
|
|
&entry->def_intr.mask);
|
|
|
|
cpumask_set_cpu(curr_cpu,
|
|
|
|
&entry->rcv_intr.mask);
|
|
|
|
curr_cpu = cpumask_next(curr_cpu,
|
|
|
|
&entry->def_intr.mask);
|
|
|
|
if (curr_cpu >= nr_cpu_ids)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-02-04 05:33:40 +07:00
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_lock(&node_affinity.lock);
|
|
|
|
node_affinity_add_tail(entry);
|
|
|
|
spin_unlock(&node_affinity.lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2016-02-04 05:33:40 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
int hfi1_get_irq_affinity(struct hfi1_devdata *dd, struct hfi1_msix_entry *msix)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
cpumask_var_t diff;
|
2016-07-25 21:52:36 +07:00
|
|
|
struct hfi1_affinity_node *entry;
|
2016-02-04 05:33:40 +07:00
|
|
|
struct cpu_mask_set *set;
|
|
|
|
struct sdma_engine *sde = NULL;
|
|
|
|
struct hfi1_ctxtdata *rcd = NULL;
|
|
|
|
char extra[64];
|
|
|
|
int cpu = -1;
|
|
|
|
|
|
|
|
extra[0] = '\0';
|
|
|
|
cpumask_clear(&msix->mask);
|
|
|
|
|
|
|
|
ret = zalloc_cpumask_var(&diff, GFP_KERNEL);
|
|
|
|
if (!ret)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_lock(&node_affinity.lock);
|
|
|
|
entry = node_affinity_lookup(dd->node);
|
|
|
|
spin_unlock(&node_affinity.lock);
|
|
|
|
|
2016-02-04 05:33:40 +07:00
|
|
|
switch (msix->type) {
|
|
|
|
case IRQ_SDMA:
|
|
|
|
sde = (struct sdma_engine *)msix->arg;
|
|
|
|
scnprintf(extra, 64, "engine %u", sde->this_idx);
|
|
|
|
/* fall through */
|
|
|
|
case IRQ_GENERAL:
|
2016-07-25 21:52:36 +07:00
|
|
|
set = &entry->def_intr;
|
2016-02-04 05:33:40 +07:00
|
|
|
break;
|
|
|
|
case IRQ_RCVCTXT:
|
|
|
|
rcd = (struct hfi1_ctxtdata *)msix->arg;
|
|
|
|
if (rcd->ctxt == HFI1_CTRL_CTXT) {
|
2016-07-25 21:52:36 +07:00
|
|
|
set = &entry->def_intr;
|
2016-02-04 05:33:40 +07:00
|
|
|
cpu = cpumask_first(&set->mask);
|
|
|
|
} else {
|
2016-07-25 21:52:36 +07:00
|
|
|
set = &entry->rcv_intr;
|
2016-02-04 05:33:40 +07:00
|
|
|
}
|
|
|
|
scnprintf(extra, 64, "ctxt %u", rcd->ctxt);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dd_dev_err(dd, "Invalid IRQ type %d\n", msix->type);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The control receive context is placed on a particular CPU, which
|
|
|
|
* is set above. Skip accounting for it. Everything else finds its
|
|
|
|
* CPU here.
|
|
|
|
*/
|
2016-07-25 21:52:36 +07:00
|
|
|
if (cpu == -1 && set) {
|
|
|
|
spin_lock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
if (cpumask_equal(&set->mask, &set->used)) {
|
|
|
|
/*
|
|
|
|
* We've used up all the CPUs, bump up the generation
|
|
|
|
* and reset the 'used' map
|
|
|
|
*/
|
|
|
|
set->gen++;
|
|
|
|
cpumask_clear(&set->used);
|
|
|
|
}
|
|
|
|
cpumask_andnot(diff, &set->mask, &set->used);
|
|
|
|
cpu = cpumask_first(diff);
|
|
|
|
cpumask_set_cpu(cpu, &set->used);
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_unlock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (msix->type) {
|
|
|
|
case IRQ_SDMA:
|
|
|
|
sde->cpu = cpu;
|
|
|
|
break;
|
|
|
|
case IRQ_GENERAL:
|
|
|
|
case IRQ_RCVCTXT:
|
|
|
|
case IRQ_OTHER:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpumask_set_cpu(cpu, &msix->mask);
|
|
|
|
dd_dev_info(dd, "IRQ vector: %u, type %s %s -> cpu: %d\n",
|
|
|
|
msix->msix.vector, irq_type_names[msix->type],
|
|
|
|
extra, cpu);
|
|
|
|
irq_set_affinity_hint(msix->msix.vector, &msix->mask);
|
|
|
|
|
|
|
|
free_cpumask_var(diff);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hfi1_put_irq_affinity(struct hfi1_devdata *dd,
|
|
|
|
struct hfi1_msix_entry *msix)
|
|
|
|
{
|
|
|
|
struct cpu_mask_set *set = NULL;
|
|
|
|
struct hfi1_ctxtdata *rcd;
|
2016-07-25 21:52:36 +07:00
|
|
|
struct hfi1_affinity_node *entry;
|
|
|
|
|
|
|
|
spin_lock(&node_affinity.lock);
|
|
|
|
entry = node_affinity_lookup(dd->node);
|
|
|
|
spin_unlock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
switch (msix->type) {
|
|
|
|
case IRQ_SDMA:
|
|
|
|
case IRQ_GENERAL:
|
2016-07-25 21:52:36 +07:00
|
|
|
set = &entry->def_intr;
|
2016-02-04 05:33:40 +07:00
|
|
|
break;
|
|
|
|
case IRQ_RCVCTXT:
|
|
|
|
rcd = (struct hfi1_ctxtdata *)msix->arg;
|
|
|
|
/* only do accounting for non control contexts */
|
|
|
|
if (rcd->ctxt != HFI1_CTRL_CTXT)
|
2016-07-25 21:52:36 +07:00
|
|
|
set = &entry->rcv_intr;
|
2016-02-04 05:33:40 +07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (set) {
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_lock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
cpumask_andnot(&set->used, &set->used, &msix->mask);
|
|
|
|
if (cpumask_empty(&set->used) && set->gen) {
|
|
|
|
set->gen--;
|
|
|
|
cpumask_copy(&set->used, &set->mask);
|
|
|
|
}
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_unlock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
irq_set_affinity_hint(msix->msix.vector, NULL);
|
|
|
|
cpumask_clear(&msix->mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
int hfi1_get_proc_affinity(struct hfi1_devdata *dd, int node)
|
|
|
|
{
|
|
|
|
int cpu = -1, ret;
|
|
|
|
cpumask_var_t diff, mask, intrs;
|
2016-07-25 21:52:36 +07:00
|
|
|
struct hfi1_affinity_node *entry;
|
2016-02-04 05:33:40 +07:00
|
|
|
const struct cpumask *node_mask,
|
|
|
|
*proc_mask = tsk_cpus_allowed(current);
|
2016-07-25 21:52:36 +07:00
|
|
|
struct cpu_mask_set *set = &node_affinity.proc;
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* check whether process/context affinity has already
|
|
|
|
* been set
|
|
|
|
*/
|
|
|
|
if (cpumask_weight(proc_mask) == 1) {
|
2016-05-31 14:54:36 +07:00
|
|
|
hfi1_cdbg(PROC, "PID %u %s affinity set to CPU %*pbl",
|
|
|
|
current->pid, current->comm,
|
|
|
|
cpumask_pr_args(proc_mask));
|
2016-02-04 05:33:40 +07:00
|
|
|
/*
|
|
|
|
* Mark the pre-set CPU as used. This is atomic so we don't
|
|
|
|
* need the lock
|
|
|
|
*/
|
|
|
|
cpu = cpumask_first(proc_mask);
|
|
|
|
cpumask_set_cpu(cpu, &set->used);
|
|
|
|
goto done;
|
|
|
|
} else if (cpumask_weight(proc_mask) < cpumask_weight(&set->mask)) {
|
2016-05-31 14:54:36 +07:00
|
|
|
hfi1_cdbg(PROC, "PID %u %s affinity set to CPU set(s) %*pbl",
|
|
|
|
current->pid, current->comm,
|
|
|
|
cpumask_pr_args(proc_mask));
|
2016-02-04 05:33:40 +07:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The process does not have a preset CPU affinity so find one to
|
|
|
|
* recommend. We prefer CPUs on the same NUMA as the device.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = zalloc_cpumask_var(&diff, GFP_KERNEL);
|
|
|
|
if (!ret)
|
|
|
|
goto done;
|
|
|
|
ret = zalloc_cpumask_var(&mask, GFP_KERNEL);
|
|
|
|
if (!ret)
|
|
|
|
goto free_diff;
|
|
|
|
ret = zalloc_cpumask_var(&intrs, GFP_KERNEL);
|
|
|
|
if (!ret)
|
|
|
|
goto free_mask;
|
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_lock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
/*
|
|
|
|
* If we've used all available CPUs, clear the mask and start
|
|
|
|
* overloading.
|
|
|
|
*/
|
|
|
|
if (cpumask_equal(&set->mask, &set->used)) {
|
|
|
|
set->gen++;
|
|
|
|
cpumask_clear(&set->used);
|
|
|
|
}
|
|
|
|
|
2016-07-25 21:52:36 +07:00
|
|
|
entry = node_affinity_lookup(dd->node);
|
2016-02-04 05:33:40 +07:00
|
|
|
/* CPUs used by interrupt handlers */
|
2016-07-25 21:52:36 +07:00
|
|
|
cpumask_copy(intrs, (entry->def_intr.gen ?
|
|
|
|
&entry->def_intr.mask :
|
|
|
|
&entry->def_intr.used));
|
|
|
|
cpumask_or(intrs, intrs, (entry->rcv_intr.gen ?
|
|
|
|
&entry->rcv_intr.mask :
|
|
|
|
&entry->rcv_intr.used));
|
2016-05-31 14:54:36 +07:00
|
|
|
hfi1_cdbg(PROC, "CPUs used by interrupts: %*pbl",
|
|
|
|
cpumask_pr_args(intrs));
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If we don't have a NUMA node requested, preference is towards
|
|
|
|
* device NUMA node
|
|
|
|
*/
|
|
|
|
if (node == -1)
|
|
|
|
node = dd->node;
|
|
|
|
node_mask = cpumask_of_node(node);
|
2016-05-31 14:54:36 +07:00
|
|
|
hfi1_cdbg(PROC, "device on NUMA %u, CPUs %*pbl", node,
|
|
|
|
cpumask_pr_args(node_mask));
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
/* diff will hold all unused cpus */
|
|
|
|
cpumask_andnot(diff, &set->mask, &set->used);
|
2016-05-31 14:54:36 +07:00
|
|
|
hfi1_cdbg(PROC, "unused CPUs (all) %*pbl", cpumask_pr_args(diff));
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
/* get cpumask of available CPUs on preferred NUMA */
|
|
|
|
cpumask_and(mask, diff, node_mask);
|
2016-05-31 14:54:36 +07:00
|
|
|
hfi1_cdbg(PROC, "available cpus on NUMA %*pbl", cpumask_pr_args(mask));
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* At first, we don't want to place processes on the same
|
|
|
|
* CPUs as interrupt handlers.
|
|
|
|
*/
|
|
|
|
cpumask_andnot(diff, mask, intrs);
|
|
|
|
if (!cpumask_empty(diff))
|
|
|
|
cpumask_copy(mask, diff);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if we don't have a cpu on the preferred NUMA, get
|
|
|
|
* the list of the remaining available CPUs
|
|
|
|
*/
|
|
|
|
if (cpumask_empty(mask)) {
|
|
|
|
cpumask_andnot(diff, &set->mask, &set->used);
|
|
|
|
cpumask_andnot(mask, diff, node_mask);
|
|
|
|
}
|
2016-05-31 14:54:36 +07:00
|
|
|
hfi1_cdbg(PROC, "possible CPUs for process %*pbl",
|
|
|
|
cpumask_pr_args(mask));
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
cpu = cpumask_first(mask);
|
|
|
|
if (cpu >= nr_cpu_ids) /* empty */
|
|
|
|
cpu = -1;
|
|
|
|
else
|
|
|
|
cpumask_set_cpu(cpu, &set->used);
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_unlock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
free_cpumask_var(intrs);
|
|
|
|
free_mask:
|
|
|
|
free_cpumask_var(mask);
|
|
|
|
free_diff:
|
|
|
|
free_cpumask_var(diff);
|
|
|
|
done:
|
|
|
|
return cpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hfi1_put_proc_affinity(struct hfi1_devdata *dd, int cpu)
|
|
|
|
{
|
2016-07-25 21:52:36 +07:00
|
|
|
struct cpu_mask_set *set = &node_affinity.proc;
|
2016-02-04 05:33:40 +07:00
|
|
|
|
|
|
|
if (cpu < 0)
|
|
|
|
return;
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_lock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
cpumask_clear_cpu(cpu, &set->used);
|
|
|
|
if (cpumask_empty(&set->used) && set->gen) {
|
|
|
|
set->gen--;
|
|
|
|
cpumask_copy(&set->used, &set->mask);
|
|
|
|
}
|
2016-07-25 21:52:36 +07:00
|
|
|
spin_unlock(&node_affinity.lock);
|
2016-02-04 05:33:40 +07:00
|
|
|
}
|
|
|
|
|