Are you ignoring compile warnings about class_device_create()?  Since
2.6.15 is out, the OpenIB svn does not support 2.6.14 any more, so you
may run into problems like this.

You will probably need to restore the compatibility hack removed in
r4784 by adding something like

#include <linux/version.h>

#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,15)
#define class_device_create(cls, parent, devt, device, fmt, arg...) \
       class_device_create(cls, devt, device, fmt, ## arg)
#endif

to <rdma/ib_verbs.h>.

 - R.
_______________________________________________
openib-general mailing list
openib-general@openib.org
http://openib.org/mailman/listinfo/openib-general

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

Reply via email to