From mboxrd@z Thu Jan 1 00:00:00 1970 From: oulijun Subject: Re: [PATCH rdma-core 5/7] libhns: Add verbs of qp support Date: Thu, 27 Oct 2016 10:25:48 +0800 Message-ID: <581165AC.9050501@huawei.com> References: <1477487048-62256-1-git-send-email-oulijun@huawei.com> <1477487048-62256-6-git-send-email-oulijun@huawei.com> <20161026162321.GF24898@obsidianresearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <20161026162321.GF24898-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> Sender: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Jason Gunthorpe Cc: dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org, linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linuxarm-hv44wF8Li93QT0dZR+AlfA@public.gmane.org List-Id: linux-rdma@vger.kernel.org 在 2016/10/27 0:23, Jason Gunthorpe 写道: > On Wed, Oct 26, 2016 at 09:04:06PM +0800, Lijun Ou wrote: > >> +#ifndef min >> +#define min(a, b) \ >> + ({ typeof (a) _a = (a); \ >> + typeof (b) _b = (b); \ >> + _a < _b ? _a : _b; }) >> +#endif > > Nope, use the ccan header > > Jason > thanks your reivew. I will fix it in next patch thanks Lijun Ou > -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html