Commit 45afb324 authored by Michael J. Ruhl's avatar Michael J. Ruhl Committed by Doug Ledford

IB/hfi1: Refactor get_base_info

The IOCTL is a bit unwieldy.  Refactor to a common pattern.
Reviewed-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarMichael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 033c16d7
...@@ -85,8 +85,7 @@ static int init_user_ctxt(struct hfi1_filedata *fd, ...@@ -85,8 +85,7 @@ static int init_user_ctxt(struct hfi1_filedata *fd,
struct hfi1_ctxtdata *uctxt); struct hfi1_ctxtdata *uctxt);
static void user_init(struct hfi1_ctxtdata *uctxt); static void user_init(struct hfi1_ctxtdata *uctxt);
static int get_ctxt_info(struct hfi1_filedata *fd, unsigned long arg, u32 len); static int get_ctxt_info(struct hfi1_filedata *fd, unsigned long arg, u32 len);
static int get_base_info(struct hfi1_filedata *fd, void __user *ubase, static int get_base_info(struct hfi1_filedata *fd, unsigned long arg, u32 len);
__u32 len);
static int setup_base_ctxt(struct hfi1_filedata *fd, static int setup_base_ctxt(struct hfi1_filedata *fd,
struct hfi1_ctxtdata *uctxt); struct hfi1_ctxtdata *uctxt);
static int setup_subctxt(struct hfi1_ctxtdata *uctxt); static int setup_subctxt(struct hfi1_ctxtdata *uctxt);
...@@ -243,9 +242,9 @@ static long hfi1_file_ioctl(struct file *fp, unsigned int cmd, ...@@ -243,9 +242,9 @@ static long hfi1_file_ioctl(struct file *fp, unsigned int cmd,
break; break;
case HFI1_IOCTL_USER_INFO: case HFI1_IOCTL_USER_INFO:
ret = get_base_info(fd, (void __user *)(unsigned long)arg, ret = get_base_info(fd, arg, _IOC_SIZE(cmd));
sizeof(struct hfi1_base_info));
break; break;
case HFI1_IOCTL_CREDIT_UPD: case HFI1_IOCTL_CREDIT_UPD:
if (uctxt) if (uctxt)
sc_return_credits(uctxt->sc); sc_return_credits(uctxt->sc);
...@@ -1341,18 +1340,18 @@ static int setup_base_ctxt(struct hfi1_filedata *fd, ...@@ -1341,18 +1340,18 @@ static int setup_base_ctxt(struct hfi1_filedata *fd,
return ret; return ret;
} }
static int get_base_info(struct hfi1_filedata *fd, void __user *ubase, static int get_base_info(struct hfi1_filedata *fd, unsigned long arg, u32 len)
__u32 len)
{ {
struct hfi1_base_info binfo; struct hfi1_base_info binfo;
struct hfi1_ctxtdata *uctxt = fd->uctxt; struct hfi1_ctxtdata *uctxt = fd->uctxt;
struct hfi1_devdata *dd = uctxt->dd; struct hfi1_devdata *dd = uctxt->dd;
ssize_t sz;
unsigned offset; unsigned offset;
int ret = 0;
trace_hfi1_uctxtdata(uctxt->dd, uctxt, fd->subctxt); trace_hfi1_uctxtdata(uctxt->dd, uctxt, fd->subctxt);
if (sizeof(binfo) != len)
return -EINVAL;
memset(&binfo, 0, sizeof(binfo)); memset(&binfo, 0, sizeof(binfo));
binfo.hw_version = dd->revision; binfo.hw_version = dd->revision;
binfo.sw_version = HFI1_KERN_SWVERSION; binfo.sw_version = HFI1_KERN_SWVERSION;
...@@ -1411,10 +1410,11 @@ static int get_base_info(struct hfi1_filedata *fd, void __user *ubase, ...@@ -1411,10 +1410,11 @@ static int get_base_info(struct hfi1_filedata *fd, void __user *ubase,
uctxt->ctxt, uctxt->ctxt,
fd->subctxt, 0); fd->subctxt, 0);
} }
sz = (len < sizeof(binfo)) ? len : sizeof(binfo);
if (copy_to_user(ubase, &binfo, sz)) if (copy_to_user((void __user *)arg, &binfo, len))
ret = -EFAULT; return -EFAULT;
return ret;
return 0;
} }
static unsigned int poll_urgent(struct file *fp, static unsigned int poll_urgent(struct file *fp,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment