Re: [PATCH 02/13] drivers/infiniband: Remove unnecessary casts of private_data

2010-10-06 Thread Roland Dreier
thanks, applied.
--
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


Re: [PATCH 02/13] drivers/infiniband: Remove unnecessary casts of private_data

2010-09-23 Thread Jiri Kosina
On Tue, 7 Sep 2010, Ralph Campbell wrote:

> Acked-by: Ralph Campbell 

Applied, thanks.

> > Signed-off-by: Joe Perches 
> > ---
> >  drivers/infiniband/hw/qib/qib_file_ops.c |4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/infiniband/hw/qib/qib_file_ops.c 
> > b/drivers/infiniband/hw/qib/qib_file_ops.c
> > index 6b11645..cef5d67 100644
> > --- a/drivers/infiniband/hw/qib/qib_file_ops.c
> > +++ b/drivers/infiniband/hw/qib/qib_file_ops.c
> > @@ -1722,7 +1722,7 @@ static int qib_close(struct inode *in, struct file 
> > *fp)
> >  
> > mutex_lock(&qib_mutex);
> >  
> > -   fd = (struct qib_filedata *) fp->private_data;
> > +   fd = fp->private_data;
> > fp->private_data = NULL;
> > rcd = fd->rcd;
> > if (!rcd) {
> > @@ -1808,7 +1808,7 @@ static int qib_ctxt_info(struct file *fp, struct 
> > qib_ctxt_info __user *uinfo)
> > struct qib_ctxtdata *rcd = ctxt_fp(fp);
> > struct qib_filedata *fd;
> >  
> > -   fd = (struct qib_filedata *) fp->private_data;
> > +   fd = fp->private_data;
> >  
> > info.num_active = qib_count_active_units();
> > info.unit = rcd->dd->unit;

-- 
Jiri Kosina
SUSE Labs, Novell Inc.
--
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


Re: [PATCH 02/13] drivers/infiniband: Remove unnecessary casts of private_data

2010-09-07 Thread Ralph Campbell
Acked-by: Ralph Campbell 

On Sat, 2010-09-04 at 18:52 -0700, Joe Perches wrote:
> Signed-off-by: Joe Perches 
> ---
>  drivers/infiniband/hw/qib/qib_file_ops.c |4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/infiniband/hw/qib/qib_file_ops.c 
> b/drivers/infiniband/hw/qib/qib_file_ops.c
> index 6b11645..cef5d67 100644
> --- a/drivers/infiniband/hw/qib/qib_file_ops.c
> +++ b/drivers/infiniband/hw/qib/qib_file_ops.c
> @@ -1722,7 +1722,7 @@ static int qib_close(struct inode *in, struct file *fp)
>  
>   mutex_lock(&qib_mutex);
>  
> - fd = (struct qib_filedata *) fp->private_data;
> + fd = fp->private_data;
>   fp->private_data = NULL;
>   rcd = fd->rcd;
>   if (!rcd) {
> @@ -1808,7 +1808,7 @@ static int qib_ctxt_info(struct file *fp, struct 
> qib_ctxt_info __user *uinfo)
>   struct qib_ctxtdata *rcd = ctxt_fp(fp);
>   struct qib_filedata *fd;
>  
> - fd = (struct qib_filedata *) fp->private_data;
> + fd = fp->private_data;
>  
>   info.num_active = qib_count_active_units();
>   info.unit = rcd->dd->unit;


--
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