Skip to content

Commit

Permalink
Xen: fix typo in previous patch
Browse files Browse the repository at this point in the history
Correctly name the irq_chip structure to fix an immediate failure when booting
as a xen pv_ops guest with a NULL pointer exception. The missing 'x' was
introduced in commit [fb412a1] applied to
2.6.3[25]-stable trees.  The commit to mainline was
[aaca496] which did not have the problem.

Signed-off-by: James Dingwall <james@dingwall.me.uk>
Reported-by: Pawel Zuzelski <pawelz@pld-linux.org>
Tested-by: Pawel Zuzelski <pawelz@pld-linux.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
James Dingwall authored and Greg Kroah-Hartman committed Oct 1, 2010
1 parent 0ee0f94 commit 806db99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/xen/events.c
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ static struct irq_chip xen_dynamic_chip __read_mostly = {
.retrigger = retrigger_dynirq,
};

static struct irq_chip en_percpu_chip __read_mostly = {
static struct irq_chip xen_percpu_chip __read_mostly = {
.name = "xen-percpu",

.disable = disable_dynirq,
Expand Down

0 comments on commit 806db99

Please sign in to comment.