cregit-Linux how code gets into the kernel

Release 4.7 virt/kvm/irqchip.c

Directory: virt/kvm
/*
 * irqchip.c: Common API for in kernel interrupt controllers
 * Copyright (c) 2007, Intel Corporation.
 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
 * Copyright (c) 2013, Alexander Graf <agraf@suse.de>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope 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.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 * Place - Suite 330, Boston, MA 02111-1307 USA.
 *
 * This file is derived from virt/kvm/irq_comm.c.
 *
 * Authors:
 *   Yaozu (Eddie) Dong <Eddie.dong@intel.com>
 *   Alexander Graf <agraf@suse.de>
 */

#include <linux/kvm_host.h>
#include <linux/slab.h>
#include <linux/srcu.h>
#include <linux/export.h>
#include <trace/events/kvm.h>
#include "irq.h"


int kvm_irq_map_gsi(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *entries, int gsi) { struct kvm_irq_routing_table *irq_rt; struct kvm_kernel_irq_routing_entry *e; int n = 0; irq_rt = srcu_dereference_check(kvm->irq_routing, &kvm->irq_srcu, lockdep_is_held(&kvm->irq_lock)); if (irq_rt && gsi < irq_rt->nr_rt_entries) { hlist_for_each_entry(e, &irq_rt->map[gsi], link) { entries[n] = *e; ++n; } } return n; }

Contributors

PersonTokensPropCommitsCommitProp
paul mackerraspaul mackerras8997.80%266.67%
paolo bonzinipaolo bonzini22.20%133.33%
Total91100.00%3100.00%


int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin) { struct kvm_irq_routing_table *irq_rt; irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu); return irq_rt->chip[irqchip][pin]; }

Contributors

PersonTokensPropCommitsCommitProp
paul mackerraspaul mackerras46100.00%2100.00%
Total46100.00%2100.00%


int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi) { struct kvm_kernel_irq_routing_entry route; if (!irqchip_in_kernel(kvm) || msi->flags != 0) return -EINVAL; route.msi.address_lo = msi->address_lo; route.msi.address_hi = msi->address_hi; route.msi.data = msi->data; return kvm_set_msi(&route, kvm, KVM_USERSPACE_IRQ_SOURCE_ID, 1, false); }

Contributors

PersonTokensPropCommitsCommitProp
alexander grafalexander graf82100.00%1100.00%
Total82100.00%1100.00%

/* * Return value: * < 0 Interrupt was ignored (masked or not delivered for other reasons) * = 0 Interrupt was coalesced (previous irq is still pending) * > 0 Number of CPUs interrupt was delivered to */
int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level, bool line_status) { struct kvm_kernel_irq_routing_entry irq_set[KVM_NR_IRQCHIPS]; int ret = -1, i, idx; trace_kvm_set_irq(irq, level, irq_source_id); /* Not possible to detect if the guest uses the PIC or the * IOAPIC. So set the bit in both. The guest will ignore * writes to the unused one. */ idx = srcu_read_lock(&kvm->irq_srcu); i = kvm_irq_map_gsi(kvm, irq_set, irq); srcu_read_unlock(&kvm->irq_srcu, idx); while (i--) { int r; r = irq_set[i].set(&irq_set[i], kvm, irq_source_id, level, line_status); if (r < 0) continue; ret = r + ((ret < 0) ? 0 : ret); } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
alexander grafalexander graf11481.43%125.00%
christian borntraegerchristian borntraeger2014.29%125.00%
paul mackerraspaul mackerras64.29%250.00%
Total140100.00%4100.00%


static void free_irq_routing_table(struct kvm_irq_routing_table *rt) { int i; if (!rt) return; for (i = 0; i < rt->nr_rt_entries; ++i) { struct kvm_kernel_irq_routing_entry *e; struct hlist_node *n; hlist_for_each_entry_safe(e, n, &rt->map[i], link) { hlist_del(&e->link); kfree(e); } } kfree(rt); }

Contributors

PersonTokensPropCommitsCommitProp
joerg roedeljoerg roedel77100.00%1100.00%
Total77100.00%1100.00%


void kvm_free_irq_routing(struct kvm *kvm) { /* Called only during vm destruction. Nobody can use the pointer at this stage */ struct kvm_irq_routing_table *rt = rcu_access_pointer(kvm->irq_routing); free_irq_routing_table(rt); }

Contributors

PersonTokensPropCommitsCommitProp
alexander grafalexander graf1760.71%150.00%
joerg roedeljoerg roedel1139.29%150.00%
Total28100.00%2100.00%


static int setup_routing_entry(struct kvm_irq_routing_table *rt, struct kvm_kernel_irq_routing_entry *e, const struct kvm_irq_routing_entry *ue) { int r = -EINVAL; struct kvm_kernel_irq_routing_entry *ei; /* * Do not allow GSI to be mapped to the same irqchip more than once. * Allow only one to one mapping between GSI and non-irqchip routing. */ hlist_for_each_entry(ei, &rt->map[ue->gsi], link) if (ei->type != KVM_IRQ_ROUTING_IRQCHIP || ue->type != KVM_IRQ_ROUTING_IRQCHIP || ue->u.irqchip.irqchip == ei->irqchip.irqchip) return r; e->gsi = ue->gsi; e->type = ue->type; r = kvm_set_routing_entry(e, ue); if (r) goto out; if (e->type == KVM_IRQ_ROUTING_IRQCHIP) rt->chip[e->irqchip.irqchip][e->irqchip.pin] = e->gsi; hlist_add_head(&e->link, &rt->map[e->gsi]); r = 0; out: return r; }

Contributors

PersonTokensPropCommitsCommitProp
alexander grafalexander graf12778.40%133.33%
paul mackerraspaul mackerras3018.52%133.33%
andrey smetaninandrey smetanin53.09%133.33%
Total162100.00%3100.00%

void __attribute__((weak)) kvm_arch_irq_routing_update(struct kvm *kvm) { }
int kvm_set_irq_routing(struct kvm *kvm, const struct kvm_irq_routing_entry *ue, unsigned nr, unsigned flags) { struct kvm_irq_routing_table *new, *old; u32 i, j, nr_rt_entries = 0; int r; for (i = 0; i < nr; ++i) { if (ue[i].gsi >= KVM_MAX_IRQ_ROUTES) return -EINVAL; nr_rt_entries = max(nr_rt_entries, ue[i].gsi); } nr_rt_entries += 1; new = kzalloc(sizeof(*new) + (nr_rt_entries * sizeof(struct hlist_head)), GFP_KERNEL); if (!new) return -ENOMEM; new->nr_rt_entries = nr_rt_entries; for (i = 0; i < KVM_NR_IRQCHIPS; i++) for (j = 0; j < KVM_IRQCHIP_NUM_PINS; j++) new->chip[i][j] = -1; for (i = 0; i < nr; ++i) { struct kvm_kernel_irq_routing_entry *e; r = -ENOMEM; e = kzalloc(sizeof(*e), GFP_KERNEL); if (!e) goto out; r = -EINVAL; if (ue->flags) { kfree(e); goto out; } r = setup_routing_entry(new, e, ue); if (r) { kfree(e); goto out; } ++ue; } mutex_lock(&kvm->irq_lock); old = kvm->irq_routing; rcu_assign_pointer(kvm->irq_routing, new); kvm_irq_routing_update(kvm); kvm_arch_irq_routing_update(kvm); mutex_unlock(&kvm->irq_lock); kvm_arch_post_irq_routing_update(kvm); synchronize_srcu_expedited(&kvm->irq_srcu); new = old; r = 0; out: free_irq_routing_table(new); return r; }

Contributors

PersonTokensPropCommitsCommitProp
alexander grafalexander graf26278.44%114.29%
joerg roedeljoerg roedel339.88%114.29%
sudip mukherjeesudip mukherjee144.19%114.29%
paul mackerraspaul mackerras82.40%114.29%
christian borntraegerchristian borntraeger72.10%114.29%
andrey smetaninandrey smetanin61.80%114.29%
steve rutherfordsteve rutherford41.20%114.29%
Total334100.00%7100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
alexander grafalexander graf61962.21%218.18%
paul mackerraspaul mackerras17917.99%218.18%
joerg roedeljoerg roedel12112.16%19.09%
christian borntraegerchristian borntraeger303.02%19.09%
andrey smetaninandrey smetanin262.61%218.18%
sudip mukherjeesudip mukherjee141.41%19.09%
steve rutherfordsteve rutherford40.40%19.09%
paolo bonzinipaolo bonzini20.20%19.09%
Total995100.00%11100.00%
Directory: virt/kvm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}