> OK so, what options do I have right now -- compile a new kernel and
    > apply patches and
    > continue, or is there some patch that I can apply ?

I don't think anyone has prepared a kzalloc() patch, but just adding
something like

        static void *kzalloc(size_t size, unsigned int flags)
        {
                void *ret = kmalloc(size, flags);
                if (ret)
                        memset(ret, 0, size);
                return ret;
        }

to files that use kzalloc() should let you use 2.6.13 (assuming there
are no other incompatibilities).

 - R.
_______________________________________________
openib-general mailing list
[email protected]
http://openib.org/mailman/listinfo/openib-general

To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general

Reply via email to