[openib-general] OpenSM crash with today's trunk
Roland Dreier
rolandd at cisco.com
Fri Oct 28 13:56:56 PDT 2005
> 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.
More information about the general
mailing list