Re: freeing data segment

2003-10-30 Thread Terry Lambert
"Vinod R. Kashyap" wrote: > I have this huge data structure in the data segment of my scsi driver. This > data structure is initialized at driver build time, and is used only during > driver > initialization. I am trying to find out if I can free-up the memory it > occupies, > once I am done with

Re: freeing data segment

2003-10-30 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Vinod R. Kashyap" <[EMAIL PROTECTED]> writes: : : Hi, : : I have this huge data structure in the data segment of my scsi driver. This : data structure is initialized at driver build time, and is used only during : driver : initialization. I am tryin

freeing data segment

2003-10-29 Thread Vinod R. Kashyap
Hi, I have this huge data structure in the data segment of my scsi driver. This data structure is initialized at driver build time, and is used only during driver initialization. I am trying to find out if I can free-up the memory it occupies, once I am done with the driver initialization. Do