Displaying 4 results from an estimated 4 matches for "pre_intr_init_hook".
2007 Apr 18
0
[PATCH 2/5] Interrupts subarch cleanup.patch
A brave attempt to be rid of an unnecessary subarch hook and clean things
up a bit. First, all subarches use IRQ-2 as a cascade IRQ. So do that in
the common code. Second, there is no need for a pre_intr_init_hook. We
can set up the interrupt gates at any time, as this doesn't touch any
real hardware, just the processor gates. Now the subarch code still needs
to setup the appropriate irq descriptors, fill in any custom interrupt
gates, and initialize controllers, but it can do that all at once.
This r...
2007 Apr 18
0
[PATCH 2/5] Interrupts subarch cleanup.patch
A brave attempt to be rid of an unnecessary subarch hook and clean things
up a bit. First, all subarches use IRQ-2 as a cascade IRQ. So do that in
the common code. Second, there is no need for a pre_intr_init_hook. We
can set up the interrupt gates at any time, as this doesn't touch any
real hardware, just the processor gates. Now the subarch code still needs
to setup the appropriate irq descriptors, fill in any custom interrupt
gates, and initialize controllers, but it can do that all at once.
This r...
2007 Apr 18
7
[RFC, PATCH 5/24] i386 Vmi code patching
...=%ld, nops=%ld, extra native = %ld bytes\n",
+ a - (struct vmi_annotation *)start + 1, (unsigned long)(end-start),
+ translation_size, nop_size, extra_native_bytes);
+}
+
+static void scan_builtin_annotations(void)
+{
+ scan_annotations(__vmi_annotation, __vmi_annotation_end);
+}
+
+/**
+ * pre_intr_init_hook - initialisation prior to setting up interrupt vectors
+ *
+ * Description:
+ * Perform any necessary interrupt initialisation prior to setting up
+ * the "ordinary" interrupt call gates. For legacy reasons, the ISA
+ * interrupts should be initialised here if the machine emulates a PC
+...
2007 Apr 18
7
[RFC, PATCH 5/24] i386 Vmi code patching
...=%ld, nops=%ld, extra native = %ld bytes\n",
+ a - (struct vmi_annotation *)start + 1, (unsigned long)(end-start),
+ translation_size, nop_size, extra_native_bytes);
+}
+
+static void scan_builtin_annotations(void)
+{
+ scan_annotations(__vmi_annotation, __vmi_annotation_end);
+}
+
+/**
+ * pre_intr_init_hook - initialisation prior to setting up interrupt vectors
+ *
+ * Description:
+ * Perform any necessary interrupt initialisation prior to setting up
+ * the "ordinary" interrupt call gates. For legacy reasons, the ISA
+ * interrupts should be initialised here if the machine emulates a PC
+...