From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Tull Subject: Re: [PATCH v4 23/24] fpga: dfl: afu: add user afu sub feature support Date: Wed, 21 Mar 2018 18:50:54 -0500 Message-ID: References: <1518513893-4719-1-git-send-email-hao.wu@intel.com> <1518513893-4719-24-git-send-email-hao.wu@intel.com> <20180320071037.GB31239@hao-dev> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: In-Reply-To: <20180320071037.GB31239@hao-dev> Sender: linux-kernel-owner@vger.kernel.org To: Wu Hao Cc: Moritz Fischer , linux-fpga@vger.kernel.org, linux-kernel , linux-api@vger.kernel.org, "Kang, Luwei" , "Zhang, Yi Z" , Xiao Guangrong , Tim Whisonant , Enno Luebbers , Shiva Rao , Christopher Rauer List-Id: linux-api@vger.kernel.org On Tue, Mar 20, 2018 at 2:10 AM, Wu Hao wrote: >> > +static int afu_mmap(struct file *filp, struct vm_area_struct *vma) >> > +{ >> > + struct fpga_afu_region region; >> > + struct platform_device *pdev = filp->private_data; >> > + struct feature_platform_data *pdata = dev_get_platdata(&pdev->dev); >> > + u64 size = vma->vm_end - vma->vm_start; >> > + u64 offset; >> > + int ret; >> > + >> > + if (!(vma->vm_flags & VM_SHARED)) >> > + return -EINVAL; >> > + >> > + offset = vma->vm_pgoff << PAGE_SHIFT; >> > + ret = afu_get_region_by_offset(pdata, offset, size, ®ion); Most of the functions here are afu_region_*, but there's also afu_get_region_by_*. Better if afu_region_get_by_* to be consistent. >> > + if (ret) >> > + return ret; >> > + >> > + if (!(region.flags & FPGA_REGION_MMAP)) >> >> FPGA_REGION_*? We already have FPGA regions which are something >> different. Please call this something else. > > Yes, will replace it with DFL_FPGA_*.