Displaying 2 results from an estimated 2 matches for "pxe_irq_vector".
Did you mean:
pci_irq_vector
2017 Mar 19
1
[PATCH] pxe: Never chain to the original ISR
...static DECLARE_INIT_SEMAPHORE(pxe_receive_thread_sem, 0);
static DECLARE_INIT_SEMAPHORE(pxe_poll_thread_sem, 0);
static struct thread *pxe_thread, *poll_thread;
+static far_ptr_t old_pxe_isr;
#ifndef PXE_POLL_FORCE
# define PXE_POLL_FORCE 0
@@ -252,7 +253,7 @@ void pxe_start_isr(void)
pxe_irq_vector = irq;
if (irq) {
- if (!install_irq_vector(irq, pxe_isr, &pxe_irq_chain))
+ if (!install_irq_vector(irq, pxe_isr, &old_pxe_isr))
irq = 0; /* Install failed or stuck interrupt */
}
@@ -290,7 +291,7 @@ int reset_pxe(void)
printf("PXENV_UNDI_CLOSE failed: 0x%x\...
2013 Mar 07
4
Syslinux-5.10-pre1
...pxe: Move the tftp implementation into it's own file
pxe: Move the gpxe url reading code into it's own file.
pxe: hook up the interrupt routine and the lwip receive routine
core thread: Make the code a little clearer.
core: pxeisr.inc: The name of the globals is pxe_irq_vector not pxe_irq_num
core pxe: Switch threads if more than one runnable.
core pxe: Ensure all parameters in pxe_get_cached_info are initialized.
lwip: In mem.h define mem_realloc as static inline
lwip: Disable lwip's malloc routines
undiif: Fix weird include order madn...