linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
@ 2015-09-21 10:18 Sudip Mukherjee
  2015-09-21 10:18 ` [PATCH 1/3] sgi-gru: use time_before() Sudip Mukherjee
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Sudip Mukherjee @ 2015-09-21 10:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Arnd Bergmann, Dimitri Sivanich
  Cc: linux-kernel, Sudip Mukherjee

Hi Dimitri,
I have taken these patches which were having ACK from you. Apart from
these I saw another series of 25 patches from Jack Steiner <steiner@sgi.com>
which will still apply almost cleanly but there was no ACK or review.
Can you please have a look at: https://lkml.org/lkml/2010/7/19/289
or if you want I can take them and mail to you.

Hi Greg,
As discussed the first two are the old unapplied patches with maintainer
ACK. I have mentioned the reference url individually in each patch for
your verification. I have only considered those which are having
maintainer ACK.
The last patch is a new one by me. There was another pending patch with
maintainer ACK but that patch will not apply and is not relevant now.
But the error which my new patch solves was found while checking that
old patch.

Ohhh .. and there was also one more old patch from 2009, git log shows
that also was not applied. Just guess who the submitter was ......

gregkh@suse.de  :)

reference at: https://patchwork.kernel.org/patch/58189/

regards
sudip

Manuel Schölling (1):
  sgi-gru: use time_before()

Rickard Strandqvist (1):
  misc: sgi-gru: gruhandles.c: Remove unused function

Sudip Mukherjee (1):
  drivers/misc/sgi-gru: fix return of error

 drivers/misc/sgi-gru/gruhandles.c  |  6 ------
 drivers/misc/sgi-gru/gruhandles.h  |  1 -
 drivers/misc/sgi-gru/grumain.c     |  4 +++-
 drivers/misc/sgi-gru/grutlbpurge.c | 20 ++++++++++----------
 4 files changed, 13 insertions(+), 18 deletions(-)

-- 
1.9.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/3] sgi-gru: use time_before()
  2015-09-21 10:18 [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Sudip Mukherjee
@ 2015-09-21 10:18 ` Sudip Mukherjee
  2015-09-21 10:18 ` [PATCH 2/3] misc: sgi-gru: gruhandles.c: Remove unused function Sudip Mukherjee
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 12+ messages in thread
From: Sudip Mukherjee @ 2015-09-21 10:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Arnd Bergmann, Dimitri Sivanich
  Cc: linux-kernel, Sudip Mukherjee

From: Manuel Schölling <manuel.schoelling@gmx.de>

To be future-proof and for better readability the time comparisons are
modified to use time_before() instead of plain, error-prone math.

Signed-off-by: Manuel Schölling <manuel.schoelling@gmx.de>
Acked-by: Dimitri Sivanich <sivanich@sgi.com>
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---

reference at: https://patchwork.kernel.org/patch/4270701/

 drivers/misc/sgi-gru/grumain.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/misc/sgi-gru/grumain.c b/drivers/misc/sgi-gru/grumain.c
index ae16c8c..1525870 100644
--- a/drivers/misc/sgi-gru/grumain.c
+++ b/drivers/misc/sgi-gru/grumain.c
@@ -930,6 +930,7 @@ int gru_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
 {
 	struct gru_thread_state *gts;
 	unsigned long paddr, vaddr;
+	unsigned long expires;
 
 	vaddr = (unsigned long)vmf->virtual_address;
 	gru_dbg(grudev, "vma %p, vaddr 0x%lx (0x%lx)\n",
@@ -954,7 +955,8 @@ again:
 			mutex_unlock(&gts->ts_ctxlock);
 			set_current_state(TASK_INTERRUPTIBLE);
 			schedule_timeout(GRU_ASSIGN_DELAY);  /* true hack ZZZ */
-			if (gts->ts_steal_jiffies + GRU_STEAL_DELAY < jiffies)
+			expires = gts->ts_steal_jiffies + GRU_STEAL_DELAY;
+			if (time_before(expires, jiffies))
 				gru_steal_context(gts);
 			goto again;
 		}
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/3] misc: sgi-gru: gruhandles.c: Remove unused function
  2015-09-21 10:18 [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Sudip Mukherjee
  2015-09-21 10:18 ` [PATCH 1/3] sgi-gru: use time_before() Sudip Mukherjee
@ 2015-09-21 10:18 ` Sudip Mukherjee
  2015-09-21 10:18 ` [PATCH 3/3] drivers/misc/sgi-gru: fix return of error Sudip Mukherjee
  2015-09-23 17:48 ` [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Dimitri Sivanich
  3 siblings, 0 replies; 12+ messages in thread
From: Sudip Mukherjee @ 2015-09-21 10:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Arnd Bergmann, Dimitri Sivanich
  Cc: linux-kernel, Sudip Mukherjee

From: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>

Remove the function tfh_restart() that is not used anywhere.

This was partially found by using a static code analysis program called cppcheck.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Acked-by: Dimitri Sivanich <sivanich@sgi.com>
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---

reference at: https://patchwork.kernel.org/patch/5557141/

 drivers/misc/sgi-gru/gruhandles.c | 6 ------
 drivers/misc/sgi-gru/gruhandles.h | 1 -
 2 files changed, 7 deletions(-)

diff --git a/drivers/misc/sgi-gru/gruhandles.c b/drivers/misc/sgi-gru/gruhandles.c
index 2f30bad..1ee8e82 100644
--- a/drivers/misc/sgi-gru/gruhandles.c
+++ b/drivers/misc/sgi-gru/gruhandles.c
@@ -196,12 +196,6 @@ void tfh_write_restart(struct gru_tlb_fault_handle *tfh,
 	start_instruction(tfh);
 }
 
-void tfh_restart(struct gru_tlb_fault_handle *tfh)
-{
-	tfh->opc = TFHOP_RESTART;
-	start_instruction(tfh);
-}
-
 void tfh_user_polling_mode(struct gru_tlb_fault_handle *tfh)
 {
 	tfh->opc = TFHOP_USER_POLLING_MODE;
diff --git a/drivers/misc/sgi-gru/gruhandles.h b/drivers/misc/sgi-gru/gruhandles.h
index 3f998b9..3d7bd36 100644
--- a/drivers/misc/sgi-gru/gruhandles.h
+++ b/drivers/misc/sgi-gru/gruhandles.h
@@ -524,7 +524,6 @@ int tfh_write_only(struct gru_tlb_fault_handle *tfh, unsigned long paddr,
 	int gaa, unsigned long vaddr, int asid, int dirty, int pagesize);
 void tfh_write_restart(struct gru_tlb_fault_handle *tfh, unsigned long paddr,
 	int gaa, unsigned long vaddr, int asid, int dirty, int pagesize);
-void tfh_restart(struct gru_tlb_fault_handle *tfh);
 void tfh_user_polling_mode(struct gru_tlb_fault_handle *tfh);
 void tfh_exception(struct gru_tlb_fault_handle *tfh);
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/3] drivers/misc/sgi-gru: fix return of error
  2015-09-21 10:18 [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Sudip Mukherjee
  2015-09-21 10:18 ` [PATCH 1/3] sgi-gru: use time_before() Sudip Mukherjee
  2015-09-21 10:18 ` [PATCH 2/3] misc: sgi-gru: gruhandles.c: Remove unused function Sudip Mukherjee
@ 2015-09-21 10:18 ` Sudip Mukherjee
  2015-09-26 12:44   ` Dimitri Sivanich
  2015-09-23 17:48 ` [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Dimitri Sivanich
  3 siblings, 1 reply; 12+ messages in thread
From: Sudip Mukherjee @ 2015-09-21 10:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Arnd Bergmann, Dimitri Sivanich
  Cc: linux-kernel, Sudip Mukherjee

If kzalloc() fails then gms is NULL and we are returning NULL, but the
functions which called this function gru_register_mmu_notifier() are not
expecting NULL as the return. They are expecting either a valid pointer
or the error code in ERR_PTR.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---

The patch at https://patchwork.kernel.org/patch/6394911/ is not applied
and not relevant now as gms is checked before gru_dbg. But the idea for
this patch was obtained from that one.

 drivers/misc/sgi-gru/grutlbpurge.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/misc/sgi-gru/grutlbpurge.c b/drivers/misc/sgi-gru/grutlbpurge.c
index 757a8e9..e936d43 100644
--- a/drivers/misc/sgi-gru/grutlbpurge.c
+++ b/drivers/misc/sgi-gru/grutlbpurge.c
@@ -306,16 +306,16 @@ struct gru_mm_struct *gru_register_mmu_notifier(void)
 		atomic_inc(&gms->ms_refcnt);
 	} else {
 		gms = kzalloc(sizeof(*gms), GFP_KERNEL);
-		if (gms) {
-			STAT(gms_alloc);
-			spin_lock_init(&gms->ms_asid_lock);
-			gms->ms_notifier.ops = &gru_mmuops;
-			atomic_set(&gms->ms_refcnt, 1);
-			init_waitqueue_head(&gms->ms_wait_queue);
-			err = __mmu_notifier_register(&gms->ms_notifier, current->mm);
-			if (err)
-				goto error;
-		}
+		if (!gms)
+			return ERR_PTR(-ENOMEM);
+		STAT(gms_alloc);
+		spin_lock_init(&gms->ms_asid_lock);
+		gms->ms_notifier.ops = &gru_mmuops;
+		atomic_set(&gms->ms_refcnt, 1);
+		init_waitqueue_head(&gms->ms_wait_queue);
+		err = __mmu_notifier_register(&gms->ms_notifier, current->mm);
+		if (err)
+			goto error;
 	}
 	if (gms)
 		gru_dbg(grudev, "gms %p, refcnt %d\n", gms,
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
  2015-09-21 10:18 [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Sudip Mukherjee
                   ` (2 preceding siblings ...)
  2015-09-21 10:18 ` [PATCH 3/3] drivers/misc/sgi-gru: fix return of error Sudip Mukherjee
@ 2015-09-23 17:48 ` Dimitri Sivanich
  2015-09-24  7:01   ` Sudip Mukherjee
  3 siblings, 1 reply; 12+ messages in thread
From: Dimitri Sivanich @ 2015-09-23 17:48 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

Sudip,

I can take a look at the Jack Steiner patches.  Was there anything in the set
of 3 patches that you sent that still needs a review?

On Mon, Sep 21, 2015 at 03:48:16PM +0530, Sudip Mukherjee wrote:
> Hi Dimitri,
> I have taken these patches which were having ACK from you. Apart from
> these I saw another series of 25 patches from Jack Steiner <steiner@sgi.com>
> which will still apply almost cleanly but there was no ACK or review.
> Can you please have a look at: https://lkml.org/lkml/2010/7/19/289
> or if you want I can take them and mail to you.
> 
> Hi Greg,
> As discussed the first two are the old unapplied patches with maintainer
> ACK. I have mentioned the reference url individually in each patch for
> your verification. I have only considered those which are having
> maintainer ACK.
> The last patch is a new one by me. There was another pending patch with
> maintainer ACK but that patch will not apply and is not relevant now.
> But the error which my new patch solves was found while checking that
> old patch.
> 
> Ohhh .. and there was also one more old patch from 2009, git log shows
> that also was not applied. Just guess who the submitter was ......
> 
> gregkh@suse.de  :)
> 
> reference at: https://patchwork.kernel.org/patch/58189/
> 
> regards
> sudip
> 
> Manuel Schölling (1):
>   sgi-gru: use time_before()
> 
> Rickard Strandqvist (1):
>   misc: sgi-gru: gruhandles.c: Remove unused function
> 
> Sudip Mukherjee (1):
>   drivers/misc/sgi-gru: fix return of error
> 
>  drivers/misc/sgi-gru/gruhandles.c  |  6 ------
>  drivers/misc/sgi-gru/gruhandles.h  |  1 -
>  drivers/misc/sgi-gru/grumain.c     |  4 +++-
>  drivers/misc/sgi-gru/grutlbpurge.c | 20 ++++++++++----------
>  4 files changed, 13 insertions(+), 18 deletions(-)
> 
> -- 
> 1.9.1

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
  2015-09-23 17:48 ` [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Dimitri Sivanich
@ 2015-09-24  7:01   ` Sudip Mukherjee
  2015-10-05 15:13     ` Sudip Mukherjee
  0 siblings, 1 reply; 12+ messages in thread
From: Sudip Mukherjee @ 2015-09-24  7:01 UTC (permalink / raw)
  To: Dimitri Sivanich; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

On Wed, Sep 23, 2015 at 12:48:25PM -0500, Dimitri Sivanich wrote:
> Sudip,
> 
> I can take a look at the Jack Steiner patches.  Was there anything in the set
> of 3 patches that you sent that still needs a review?
Yes. The 3/3 patch please. That one is new. I found that problem while
checking another old patch.
If Jack Steiner patches looks ok then you can send the series to Greg or
if you want me to send please do let me know.

regards
sudip

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/3] drivers/misc/sgi-gru: fix return of error
  2015-09-21 10:18 ` [PATCH 3/3] drivers/misc/sgi-gru: fix return of error Sudip Mukherjee
@ 2015-09-26 12:44   ` Dimitri Sivanich
  0 siblings, 0 replies; 12+ messages in thread
From: Dimitri Sivanich @ 2015-09-26 12:44 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

Acked-by: Dimitri Sivanich <sivanich@sgi.com>

On Mon, Sep 21, 2015 at 03:48:19PM +0530, Sudip Mukherjee wrote:
> If kzalloc() fails then gms is NULL and we are returning NULL, but the
> functions which called this function gru_register_mmu_notifier() are not
> expecting NULL as the return. They are expecting either a valid pointer
> or the error code in ERR_PTR.
> 
> Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> ---
> 
> The patch at https://patchwork.kernel.org/patch/6394911/ is not applied
> and not relevant now as gms is checked before gru_dbg. But the idea for
> this patch was obtained from that one.
> 
>  drivers/misc/sgi-gru/grutlbpurge.c | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/misc/sgi-gru/grutlbpurge.c b/drivers/misc/sgi-gru/grutlbpurge.c
> index 757a8e9..e936d43 100644
> --- a/drivers/misc/sgi-gru/grutlbpurge.c
> +++ b/drivers/misc/sgi-gru/grutlbpurge.c
> @@ -306,16 +306,16 @@ struct gru_mm_struct *gru_register_mmu_notifier(void)
>  		atomic_inc(&gms->ms_refcnt);
>  	} else {
>  		gms = kzalloc(sizeof(*gms), GFP_KERNEL);
> -		if (gms) {
> -			STAT(gms_alloc);
> -			spin_lock_init(&gms->ms_asid_lock);
> -			gms->ms_notifier.ops = &gru_mmuops;
> -			atomic_set(&gms->ms_refcnt, 1);
> -			init_waitqueue_head(&gms->ms_wait_queue);
> -			err = __mmu_notifier_register(&gms->ms_notifier, current->mm);
> -			if (err)
> -				goto error;
> -		}
> +		if (!gms)
> +			return ERR_PTR(-ENOMEM);
> +		STAT(gms_alloc);
> +		spin_lock_init(&gms->ms_asid_lock);
> +		gms->ms_notifier.ops = &gru_mmuops;
> +		atomic_set(&gms->ms_refcnt, 1);
> +		init_waitqueue_head(&gms->ms_wait_queue);
> +		err = __mmu_notifier_register(&gms->ms_notifier, current->mm);
> +		if (err)
> +			goto error;
>  	}
>  	if (gms)
>  		gru_dbg(grudev, "gms %p, refcnt %d\n", gms,
> -- 
> 1.9.1

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
  2015-09-24  7:01   ` Sudip Mukherjee
@ 2015-10-05 15:13     ` Sudip Mukherjee
  2015-10-05 15:18       ` Dimitri Sivanich
  0 siblings, 1 reply; 12+ messages in thread
From: Sudip Mukherjee @ 2015-10-05 15:13 UTC (permalink / raw)
  To: Dimitri Sivanich; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

On Thu, Sep 24, 2015 at 12:31:01PM +0530, Sudip Mukherjee wrote:
> On Wed, Sep 23, 2015 at 12:48:25PM -0500, Dimitri Sivanich wrote:
> > Sudip,
> > 
> > I can take a look at the Jack Steiner patches.  Was there anything in the set
> > of 3 patches that you sent that still needs a review?
> Yes. The 3/3 patch please. That one is new. I found that problem while
> checking another old patch.
> If Jack Steiner patches looks ok then you can send the series to Greg or
> if you want me to send please do let me know.

Hi Dimitri,
Greg has picked up this series. Did you have a chance to look at the
series of Jack Steiner or shall i repost for your review?

regards
sudip

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
  2015-10-05 15:13     ` Sudip Mukherjee
@ 2015-10-05 15:18       ` Dimitri Sivanich
  2015-10-14  4:52         ` Sudip Mukherjee
  0 siblings, 1 reply; 12+ messages in thread
From: Dimitri Sivanich @ 2015-10-05 15:18 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

On Mon, Oct 05, 2015 at 08:43:07PM +0530, Sudip Mukherjee wrote:
> On Thu, Sep 24, 2015 at 12:31:01PM +0530, Sudip Mukherjee wrote:
> > On Wed, Sep 23, 2015 at 12:48:25PM -0500, Dimitri Sivanich wrote:
> > > Sudip,
> > > 
> > > I can take a look at the Jack Steiner patches.  Was there anything in the set
> > > of 3 patches that you sent that still needs a review?
> > Yes. The 3/3 patch please. That one is new. I found that problem while
> > checking another old patch.
> > If Jack Steiner patches looks ok then you can send the series to Greg or
> > if you want me to send please do let me know.
> 
> Hi Dimitri,
> Greg has picked up this series. Did you have a chance to look at the
> series of Jack Steiner or shall i repost for your review?
>
I haven't had a chance to fully review those yet.
 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
  2015-10-05 15:18       ` Dimitri Sivanich
@ 2015-10-14  4:52         ` Sudip Mukherjee
  2015-10-14 14:33           ` Dimitri Sivanich
  0 siblings, 1 reply; 12+ messages in thread
From: Sudip Mukherjee @ 2015-10-14  4:52 UTC (permalink / raw)
  To: Dimitri Sivanich; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

On Mon, Oct 05, 2015 at 10:18:32AM -0500, Dimitri Sivanich wrote:
> On Mon, Oct 05, 2015 at 08:43:07PM +0530, Sudip Mukherjee wrote:
> > On Thu, Sep 24, 2015 at 12:31:01PM +0530, Sudip Mukherjee wrote:
> > > On Wed, Sep 23, 2015 at 12:48:25PM -0500, Dimitri Sivanich wrote:
> > > > Sudip,
> > > > 
> > > > I can take a look at the Jack Steiner patches.  Was there anything in the set
> > > > of 3 patches that you sent that still needs a review?
> > > Yes. The 3/3 patch please. That one is new. I found that problem while
> > > checking another old patch.
> > > If Jack Steiner patches looks ok then you can send the series to Greg or
> > > if you want me to send please do let me know.
> > 
> > Hi Dimitri,
> > Greg has picked up this series. Did you have a chance to look at the
> > series of Jack Steiner or shall i repost for your review?
> >
> I haven't had a chance to fully review those yet.

Hi Dimitri,
will it help if I repost them as patch? I understand it will be
difficult to review patches in webpage from where you can not apply and
test. Please do let me know if i can be of any help.

regards
sudip

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
  2015-10-14  4:52         ` Sudip Mukherjee
@ 2015-10-14 14:33           ` Dimitri Sivanich
  2015-10-26  9:15             ` Sudip Mukherjee
  0 siblings, 1 reply; 12+ messages in thread
From: Dimitri Sivanich @ 2015-10-14 14:33 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

On Wed, Oct 14, 2015 at 10:22:25AM +0530, Sudip Mukherjee wrote:
> On Mon, Oct 05, 2015 at 10:18:32AM -0500, Dimitri Sivanich wrote:
> > On Mon, Oct 05, 2015 at 08:43:07PM +0530, Sudip Mukherjee wrote:
> > > On Thu, Sep 24, 2015 at 12:31:01PM +0530, Sudip Mukherjee wrote:
> > > > On Wed, Sep 23, 2015 at 12:48:25PM -0500, Dimitri Sivanich wrote:
> > > > > Sudip,
> > > > > 
> > > > > I can take a look at the Jack Steiner patches.  Was there anything in the set
> > > > > of 3 patches that you sent that still needs a review?
> > > > Yes. The 3/3 patch please. That one is new. I found that problem while
> > > > checking another old patch.
> > > > If Jack Steiner patches looks ok then you can send the series to Greg or
> > > > if you want me to send please do let me know.
> > > 
> > > Hi Dimitri,
> > > Greg has picked up this series. Did you have a chance to look at the
> > > series of Jack Steiner or shall i repost for your review?
> > >
> > I haven't had a chance to fully review those yet.
> 
> Hi Dimitri,
> will it help if I repost them as patch? I understand it will be
> difficult to review patches in webpage from where you can not apply and
> test. Please do let me know if i can be of any help.
>
Go ahead and send as a patch (or patches?). 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one
  2015-10-14 14:33           ` Dimitri Sivanich
@ 2015-10-26  9:15             ` Sudip Mukherjee
  0 siblings, 0 replies; 12+ messages in thread
From: Sudip Mukherjee @ 2015-10-26  9:15 UTC (permalink / raw)
  To: Dimitri Sivanich; +Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel

On Wed, Oct 14, 2015 at 09:33:55AM -0500, Dimitri Sivanich wrote:
> On Wed, Oct 14, 2015 at 10:22:25AM +0530, Sudip Mukherjee wrote:
> > On Mon, Oct 05, 2015 at 10:18:32AM -0500, Dimitri Sivanich wrote:
> > > On Mon, Oct 05, 2015 at 08:43:07PM +0530, Sudip Mukherjee wrote:
> > > > On Thu, Sep 24, 2015 at 12:31:01PM +0530, Sudip Mukherjee wrote:
> > > > > On Wed, Sep 23, 2015 at 12:48:25PM -0500, Dimitri Sivanich wrote:
> > > > > > Sudip,
> > > > > > 
> > > > > > I can take a look at the Jack Steiner patches.  Was there anything in the set
> > > > > > of 3 patches that you sent that still needs a review?
> > > > > Yes. The 3/3 patch please. That one is new. I found that problem while
> > > > > checking another old patch.
> > > > > If Jack Steiner patches looks ok then you can send the series to Greg or
> > > > > if you want me to send please do let me know.
> > > > 
> > > > Hi Dimitri,
> > > > Greg has picked up this series. Did you have a chance to look at the
> > > > series of Jack Steiner or shall i repost for your review?
> > > >
> > > I haven't had a chance to fully review those yet.
> > 
> > Hi Dimitri,
> > will it help if I repost them as patch? I understand it will be
> > difficult to review patches in webpage from where you can not apply and
> > test. Please do let me know if i can be of any help.
> >
> Go ahead and send as a patch (or patches?). 

Sorry for the delay in reply, was on my annual leave. I will send them
tomorrow.

regards
sudip

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-10-26  9:15 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-21 10:18 [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Sudip Mukherjee
2015-09-21 10:18 ` [PATCH 1/3] sgi-gru: use time_before() Sudip Mukherjee
2015-09-21 10:18 ` [PATCH 2/3] misc: sgi-gru: gruhandles.c: Remove unused function Sudip Mukherjee
2015-09-21 10:18 ` [PATCH 3/3] drivers/misc/sgi-gru: fix return of error Sudip Mukherjee
2015-09-26 12:44   ` Dimitri Sivanich
2015-09-23 17:48 ` [PATCH 0/3] drivers/misc/sgi-gru: unapplied patches and a new one Dimitri Sivanich
2015-09-24  7:01   ` Sudip Mukherjee
2015-10-05 15:13     ` Sudip Mukherjee
2015-10-05 15:18       ` Dimitri Sivanich
2015-10-14  4:52         ` Sudip Mukherjee
2015-10-14 14:33           ` Dimitri Sivanich
2015-10-26  9:15             ` Sudip Mukherjee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).