> +void _c4iw_free_ep(struct kref *kref)
 ...
 > +    ep = container_of(container_of(kref, struct c4iw_ep_common, kref),
 > +                      struct c4iw_ep, com);

sparse warns of some internal container_of variable shadowing itself
here.  You can avoid that and write this more simply as:

        ep = container_of(kref, struct c4iw_ep, com.kref);
-- 
Roland Dreier <rola...@cisco.com> || For corporate legal information go to:
http://www.cisco.com/web/about/doing_business/legal/cri/index.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to