https://github.com/torvalds/linux
Revision ea828131909d77ae3185991669ecc0152519ea1d authored by Linus Torvalds on 22 December 2015, 23:37:19 UTC, committed by Linus Torvalds on 22 December 2015, 23:37:19 UTC
Pull virtio fix from Michael Tsirkin:
 "This includes a single fix for virtio ccw error handling"

* tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost:
  virtio/s390: handle error values in irb
2 parent s de37937 + 74a599f
Raw File
Tip revision: ea828131909d77ae3185991669ecc0152519ea1d authored by Linus Torvalds on 22 December 2015, 23:37:19 UTC
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
Tip revision: ea82813
irq_regs.c
/* saved per-CPU IRQ register pointer
 *
 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */
#include <linux/export.h>
#include <linux/percpu.h>
#include <asm/irq_regs.h>

#ifndef ARCH_HAS_OWN_IRQ_REGS
DEFINE_PER_CPU(struct pt_regs *, __irq_regs);
EXPORT_PER_CPU_SYMBOL(__irq_regs);
#endif
back to top