[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5fe4d1ce-2c08-ebc1-5b05-3bb051b35069@nvidia.com>
Date: Mon, 7 Sep 2020 15:34:28 +0300
From: Maor Gottlieb <maorg@...dia.com>
To: Christoph Hellwig <hch@....de>, Leon Romanovsky <leon@...nel.org>
CC: Doug Ledford <dledford@...hat.com>,
Jason Gunthorpe <jgg@...dia.com>,
<linux-kernel@...r.kernel.org>, <linux-rdma@...r.kernel.org>
Subject: Re: [PATCH rdma-next 2/4] lib/scatterlist: Add support in dynamically
allocation of SG entries
On 9/7/2020 10:29 AM, Christoph Hellwig wrote:
>> +static inline void _sg_chain(struct scatterlist *chain_sg,
>> + struct scatterlist *sgl)
>> +{
>> + /*
>> + * offset and length are unused for chain entry. Clear them.
>> + */
>> + chain_sg->offset = 0;
>> + chain_sg->length = 0;
>> +
>> + /*
>> + * Set lowest bit to indicate a link pointer, and make sure to clear
>> + * the termination bit if it happens to be set.
>> + */
>> + chain_sg->page_link = ((unsigned long) sgl | SG_CHAIN) & ~SG_END;
>> +}
> Please call this __sg_chain to stick with our normal kernel naming
> convention.
Will do.
Powered by blists - more mailing lists