[openib-general] mthca v. current ib_verbs

Roland Dreier roland at topspin.com
Mon Aug 9 18:23:34 PDT 2004


    Masanori> Those messages sometimes appear when you are building
    Masanori> your source outside linux kernel source tree. In this
    Masanori> case, especially the modules containing ib_req_notify_cq
    Masanori> or so.

Do you have any idea why?  If the code includes ib_verbs.h properly,
then the definitions below mean that no references to either
ib_poll_cq() or ib_req_notify_cq() are generated:

	static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
				     struct ib_wc *wc)
	{
		return cq->device->poll_cq(cq, num_entries, wc);
	}

	static inline int ib_req_notify_cq(struct ib_cq *cq,
					   enum ib_cq_notify cq_notify)
	{
		return cq->device->req_notify_cq(cq, cq_notify);
	}

Thanks,
  Roland



More information about the general mailing list