Re: [PATCH 2/2] pci: Repair pci_save/restore_state so we can restore one save many times.

2007-03-12 Thread Kok, Auke
Eric W. Biederman wrote: Because we do not reserve space for the pci-x and pci-e state in struct pci dev we need to dynamically allocate it. However because we need to support restore being called multiple times after a single save it is never safe to free the buffers we have allocated to hold

Re: [PATCH 2/2] pci: Repair pci_save/restore_state so we can restore one save many times.

2007-03-12 Thread Kok, Auke
Eric W. Biederman wrote: Because we do not reserve space for the pci-x and pci-e state in struct pci dev we need to dynamically allocate it. However because we need to support restore being called multiple times after a single save it is never safe to free the buffers we have allocated to hold

[PATCH 2/2] pci: Repair pci_save/restore_state so we can restore one save many times.

2007-03-08 Thread Eric W. Biederman
Because we do not reserve space for the pci-x and pci-e state in struct pci dev we need to dynamically allocate it. However because we need to support restore being called multiple times after a single save it is never safe to free the buffers we have allocated to hold the state. So this patch

[PATCH 2/2] pci: Repair pci_save/restore_state so we can restore one save many times.

2007-03-08 Thread Eric W. Biederman
Because we do not reserve space for the pci-x and pci-e state in struct pci dev we need to dynamically allocate it. However because we need to support restore being called multiple times after a single save it is never safe to free the buffers we have allocated to hold the state. So this patch