All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2 0/13] OMAP: dmtimer: hwmod
@ 2010-08-14 15:39 Tarun Kanti DebBarma
  2010-08-15 10:48 ` Igor Grinberg
  2010-08-24  0:22 ` Kevin Hilman
  0 siblings, 2 replies; 6+ messages in thread
From: Tarun Kanti DebBarma @ 2010-08-14 15:39 UTC (permalink / raw)
  To: linux-omap

This patch series contains:
(*) most of the comments provided in v1 implemented and
(*) OMAP4 timers support

The comment details are availabe in respective patch series.

The comment regarding usage of "dmtimer" name will be resolved
after final round of consultation with members.

Baseline: "origin/pm-wip/hwmods-omap4"
Test info: Tested on OMAP4430SDP, OMAP3630SDP

Tarun Kanti DebBarma (13):
  dmtimer: hwmod: OMAP4: add device names to flck nodes
  dmtimer: hwmod: add omap3xxx database
  dmtimer: hwmod: OMAP: rev field to identify timer version
  dmtimer: hwmod: OMAP: api to read omap_hwmod _clk
  dmtimer: hwmod: OMAP: conversion to platform driver
  dmtimer: OMAP: multi-platform register map definitions
  dmtimer: hwmod: OMAP2PLUS: device registration
  dmtimer: OMAP: multi-platform register access support
  dmtimer: hwmod: OMAP3: add device names to flck nodes
  dmtimer: hwmod: add omap2430 database
  dmtimer: hwmod: add omap2420 database
  dmtimer: hwmod: OMAP2: add device names to flck nodes
  dmtimer: hwmod: OMAP1: device registration

 arch/arm/mach-omap1/Makefile                 |    2 +-
 arch/arm/mach-omap1/dmtimer.c                |  146 +++++
 arch/arm/mach-omap1/timer32k.c               |    3 -
 arch/arm/mach-omap2/Makefile                 |    2 +-
 arch/arm/mach-omap2/clock2420_data.c         |   12 +
 arch/arm/mach-omap2/clock2430_data.c         |   12 +
 arch/arm/mach-omap2/clock3xxx_data.c         |   24 +-
 arch/arm/mach-omap2/clock44xx_data.c         |   22 +-
 arch/arm/mach-omap2/dmtimer.c                |  403 +++++++++++++
 arch/arm/mach-omap2/dmtimer.h                |   19 +
 arch/arm/mach-omap2/io.c                     |    2 +
 arch/arm/mach-omap2/omap_hwmod.c             |   21 +
 arch/arm/mach-omap2/omap_hwmod_2420_data.c   |  597 ++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_2430_data.c   |  595 ++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c   |  674 ++++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_44xx_data.c   |    3 +
 arch/arm/mach-omap2/timer-gp.c               |    1 -
 arch/arm/plat-omap/dmtimer.c                 |  781 ++++++++++++--------------
 arch/arm/plat-omap/include/plat/dmtimer.h    |   15 +-
 arch/arm/plat-omap/include/plat/omap_hwmod.h |    1 +
 20 files changed, 2894 insertions(+), 441 deletions(-)
 mode change 100644 => 100755 arch/arm/mach-omap1/Makefile
 create mode 100755 arch/arm/mach-omap1/dmtimer.c
 mode change 100644 => 100755 arch/arm/mach-omap1/timer32k.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock2420_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock2430_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock3xxx_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock44xx_data.c
 create mode 100755 arch/arm/mach-omap2/dmtimer.c
 create mode 100755 arch/arm/mach-omap2/dmtimer.h
 mode change 100644 => 100755 arch/arm/mach-omap2/io.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2420_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2430_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_44xx_data.c
 mode change 100644 => 100755 arch/arm/plat-omap/dmtimer.c
 mode change 100644 => 100755 arch/arm/plat-omap/include/plat/dmtimer.h
 mode change 100644 => 100755 arch/arm/plat-omap/include/plat/omap_hwmod.h


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

* Re: [PATCHv2 0/13] OMAP: dmtimer: hwmod
  2010-08-14 15:39 [PATCHv2 0/13] OMAP: dmtimer: hwmod Tarun Kanti DebBarma
@ 2010-08-15 10:48 ` Igor Grinberg
  2010-08-16  4:24   ` DebBarma, Tarun Kanti
  2010-08-24  0:22 ` Kevin Hilman
  1 sibling, 1 reply; 6+ messages in thread
From: Igor Grinberg @ 2010-08-15 10:48 UTC (permalink / raw)
  To: Tarun Kanti DebBarma; +Cc: linux-omap



On 08/14/10 18:39, Tarun Kanti DebBarma wrote:
> This patch series contains:
> (*) most of the comments provided in v1 implemented and
> (*) OMAP4 timers support
>
> The comment details are availabe in respective patch series.
>
> The comment regarding usage of "dmtimer" name will be resolved
> after final round of consultation with members.
>
> Baseline: "origin/pm-wip/hwmods-omap4"
> Test info: Tested on OMAP4430SDP, OMAP3630SDP
>
> Tarun Kanti DebBarma (13):
>   dmtimer: hwmod: OMAP4: add device names to flck nodes
>   dmtimer: hwmod: add omap3xxx database
>   dmtimer: hwmod: OMAP: rev field to identify timer version
>   dmtimer: hwmod: OMAP: api to read omap_hwmod _clk
>   dmtimer: hwmod: OMAP: conversion to platform driver
>   dmtimer: OMAP: multi-platform register map definitions
>   dmtimer: hwmod: OMAP2PLUS: device registration
>   dmtimer: OMAP: multi-platform register access support
>   dmtimer: hwmod: OMAP3: add device names to flck nodes
>   dmtimer: hwmod: add omap2430 database
>   dmtimer: hwmod: add omap2420 database
>   dmtimer: hwmod: OMAP2: add device names to flck nodes
>   dmtimer: hwmod: OMAP1: device registration
>
>  arch/arm/mach-omap1/Makefile                 |    2 +-
>  arch/arm/mach-omap1/dmtimer.c                |  146 +++++
>  arch/arm/mach-omap1/timer32k.c               |    3 -
>  arch/arm/mach-omap2/Makefile                 |    2 +-
>  arch/arm/mach-omap2/clock2420_data.c         |   12 +
>  arch/arm/mach-omap2/clock2430_data.c         |   12 +
>  arch/arm/mach-omap2/clock3xxx_data.c         |   24 +-
>  arch/arm/mach-omap2/clock44xx_data.c         |   22 +-
>  arch/arm/mach-omap2/dmtimer.c                |  403 +++++++++++++
>  arch/arm/mach-omap2/dmtimer.h                |   19 +
>  arch/arm/mach-omap2/io.c                     |    2 +
>  arch/arm/mach-omap2/omap_hwmod.c             |   21 +
>  arch/arm/mach-omap2/omap_hwmod_2420_data.c   |  597 ++++++++++++++++++++
>  arch/arm/mach-omap2/omap_hwmod_2430_data.c   |  595 ++++++++++++++++++++
>  arch/arm/mach-omap2/omap_hwmod_3xxx_data.c   |  674 ++++++++++++++++++++++
>  arch/arm/mach-omap2/omap_hwmod_44xx_data.c   |    3 +
>  arch/arm/mach-omap2/timer-gp.c               |    1 -
>  arch/arm/plat-omap/dmtimer.c                 |  781 ++++++++++++--------------
>  arch/arm/plat-omap/include/plat/dmtimer.h    |   15 +-
>  arch/arm/plat-omap/include/plat/omap_hwmod.h |    1 +
>  20 files changed, 2894 insertions(+), 441 deletions(-)
>  mode change 100644 => 100755 arch/arm/mach-omap1/Makefile
>  create mode 100755 arch/arm/mach-omap1/dmtimer.c
>  mode change 100644 => 100755 arch/arm/mach-omap1/timer32k.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/clock2420_data.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/clock2430_data.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/clock3xxx_data.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/clock44xx_data.c
>  create mode 100755 arch/arm/mach-omap2/dmtimer.c
>  create mode 100755 arch/arm/mach-omap2/dmtimer.h
>  mode change 100644 => 100755 arch/arm/mach-omap2/io.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2420_data.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2430_data.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
>  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_44xx_data.c
>  mode change 100644 => 100755 arch/arm/plat-omap/dmtimer.c
>  mode change 100644 => 100755 arch/arm/plat-omap/include/plat/dmtimer.h
>  mode change 100644 => 100755 arch/arm/plat-omap/include/plat/omap_hwmod.h
>   

What the point of all this mode changes? What's wrong with 644?

> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>   

-- 
Regards,
Igor.


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

* RE: [PATCHv2 0/13] OMAP: dmtimer: hwmod
  2010-08-15 10:48 ` Igor Grinberg
@ 2010-08-16  4:24   ` DebBarma, Tarun Kanti
  0 siblings, 0 replies; 6+ messages in thread
From: DebBarma, Tarun Kanti @ 2010-08-16  4:24 UTC (permalink / raw)
  To: Igor Grinberg; +Cc: linux-omap

Igor,

> -----Original Message-----
> From: Igor Grinberg [mailto:grinberg@compulab.co.il]
> Sent: Sunday, August 15, 2010 4:19 PM
> To: DebBarma, Tarun Kanti
> Cc: linux-omap@vger.kernel.org
> Subject: Re: [PATCHv2 0/13] OMAP: dmtimer: hwmod
> 
> 
> 
> On 08/14/10 18:39, Tarun Kanti DebBarma wrote:
> > This patch series contains:
> > (*) most of the comments provided in v1 implemented and
> > (*) OMAP4 timers support
> >
> > The comment details are availabe in respective patch series.
> >
> > The comment regarding usage of "dmtimer" name will be resolved
> > after final round of consultation with members.
> >
> > Baseline: "origin/pm-wip/hwmods-omap4"
> > Test info: Tested on OMAP4430SDP, OMAP3630SDP
> >
> > Tarun Kanti DebBarma (13):
> >   dmtimer: hwmod: OMAP4: add device names to flck nodes
> >   dmtimer: hwmod: add omap3xxx database
> >   dmtimer: hwmod: OMAP: rev field to identify timer version
> >   dmtimer: hwmod: OMAP: api to read omap_hwmod _clk
> >   dmtimer: hwmod: OMAP: conversion to platform driver
> >   dmtimer: OMAP: multi-platform register map definitions
> >   dmtimer: hwmod: OMAP2PLUS: device registration
> >   dmtimer: OMAP: multi-platform register access support
> >   dmtimer: hwmod: OMAP3: add device names to flck nodes
> >   dmtimer: hwmod: add omap2430 database
> >   dmtimer: hwmod: add omap2420 database
> >   dmtimer: hwmod: OMAP2: add device names to flck nodes
> >   dmtimer: hwmod: OMAP1: device registration
> >
> >  arch/arm/mach-omap1/Makefile                 |    2 +-
> >  arch/arm/mach-omap1/dmtimer.c                |  146 +++++
> >  arch/arm/mach-omap1/timer32k.c               |    3 -
> >  arch/arm/mach-omap2/Makefile                 |    2 +-
> >  arch/arm/mach-omap2/clock2420_data.c         |   12 +
> >  arch/arm/mach-omap2/clock2430_data.c         |   12 +
> >  arch/arm/mach-omap2/clock3xxx_data.c         |   24 +-
> >  arch/arm/mach-omap2/clock44xx_data.c         |   22 +-
> >  arch/arm/mach-omap2/dmtimer.c                |  403 +++++++++++++
> >  arch/arm/mach-omap2/dmtimer.h                |   19 +
> >  arch/arm/mach-omap2/io.c                     |    2 +
> >  arch/arm/mach-omap2/omap_hwmod.c             |   21 +
> >  arch/arm/mach-omap2/omap_hwmod_2420_data.c   |  597
> ++++++++++++++++++++
> >  arch/arm/mach-omap2/omap_hwmod_2430_data.c   |  595
> ++++++++++++++++++++
> >  arch/arm/mach-omap2/omap_hwmod_3xxx_data.c   |  674
> ++++++++++++++++++++++
> >  arch/arm/mach-omap2/omap_hwmod_44xx_data.c   |    3 +
> >  arch/arm/mach-omap2/timer-gp.c               |    1 -
> >  arch/arm/plat-omap/dmtimer.c                 |  781 ++++++++++++-------
> -------
> >  arch/arm/plat-omap/include/plat/dmtimer.h    |   15 +-
> >  arch/arm/plat-omap/include/plat/omap_hwmod.h |    1 +
> >  20 files changed, 2894 insertions(+), 441 deletions(-)
> >  mode change 100644 => 100755 arch/arm/mach-omap1/Makefile
> >  create mode 100755 arch/arm/mach-omap1/dmtimer.c
> >  mode change 100644 => 100755 arch/arm/mach-omap1/timer32k.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/clock2420_data.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/clock2430_data.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/clock3xxx_data.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/clock44xx_data.c
> >  create mode 100755 arch/arm/mach-omap2/dmtimer.c
> >  create mode 100755 arch/arm/mach-omap2/dmtimer.h
> >  mode change 100644 => 100755 arch/arm/mach-omap2/io.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2420_data.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2430_data.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
> >  mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_44xx_data.c
> >  mode change 100644 => 100755 arch/arm/plat-omap/dmtimer.c
> >  mode change 100644 => 100755 arch/arm/plat-omap/include/plat/dmtimer.h
> >  mode change 100644 => 100755 arch/arm/plat-
> omap/include/plat/omap_hwmod.h
> >
> 
> What the point of all this mode changes? What's wrong with 644?
> 
That's a mistake. I will correct them.

> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >
> >
> 
> --
> Regards,
> Igor.


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

* Re: [PATCHv2 0/13] OMAP: dmtimer: hwmod
  2010-08-14 15:39 [PATCHv2 0/13] OMAP: dmtimer: hwmod Tarun Kanti DebBarma
  2010-08-15 10:48 ` Igor Grinberg
@ 2010-08-24  0:22 ` Kevin Hilman
  2010-09-01  9:23   ` DebBarma, Tarun Kanti
  1 sibling, 1 reply; 6+ messages in thread
From: Kevin Hilman @ 2010-08-24  0:22 UTC (permalink / raw)
  To: Tarun Kanti DebBarma; +Cc: linux-omap

Tarun Kanti DebBarma <tarun.kanti@ti.com> writes:

> This patch series contains:
> (*) most of the comments provided in v1 implemented and
> (*) OMAP4 timers support
>
> The comment details are availabe in respective patch series.
>
> The comment regarding usage of "dmtimer" name will be resolved
> after final round of consultation with members.
>
> Baseline: "origin/pm-wip/hwmods-omap4"

This branch has no hwmods for OMAP4 timers.  Please rebase to recent
version of same brach and include OMAP4 hwmod data.

> Test info: Tested on OMAP4430SDP, OMAP3630SDP

Any 3430 testing?

Please also test on OMAP2 and OMAP1.

Kevin

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

* RE: [PATCHv2 0/13] OMAP: dmtimer: hwmod
  2010-08-24  0:22 ` Kevin Hilman
@ 2010-09-01  9:23   ` DebBarma, Tarun Kanti
  0 siblings, 0 replies; 6+ messages in thread
From: DebBarma, Tarun Kanti @ 2010-09-01  9:23 UTC (permalink / raw)
  To: Kevin Hilman; +Cc: linux-omap

Kevin,

> -----Original Message-----
> From: Kevin Hilman [mailto:khilman@deeprootsystems.com]
> Sent: Tuesday, August 24, 2010 5:52 AM
> To: DebBarma, Tarun Kanti
> Cc: linux-omap@vger.kernel.org
> Subject: Re: [PATCHv2 0/13] OMAP: dmtimer: hwmod
> 
> Tarun Kanti DebBarma <tarun.kanti@ti.com> writes:
> 
> > This patch series contains:
> > (*) most of the comments provided in v1 implemented and
> > (*) OMAP4 timers support
> >
> > The comment details are availabe in respective patch series.
> >
> > The comment regarding usage of "dmtimer" name will be resolved
> > after final round of consultation with members.
> >
> > Baseline: "origin/pm-wip/hwmods-omap4"
> 
> This branch has no hwmods for OMAP4 timers.  Please rebase to recent
> version of same brach and include OMAP4 hwmod data.
> 
> > Test info: Tested on OMAP4430SDP, OMAP3630SDP
> 
> Any 3430 testing?
> 
Not yet, I will.

> Please also test on OMAP2 and OMAP1.
> 
OK.

-tarun

> Kevin

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

* [PATCHv2 0/13] OMAP: dmtimer: hwmod
@ 2010-08-14 15:46 Tarun Kanti DebBarma
  0 siblings, 0 replies; 6+ messages in thread
From: Tarun Kanti DebBarma @ 2010-08-14 15:46 UTC (permalink / raw)
  To: linux-omap

This patch series contains:
(*) most of the comments provided in v1 implemented and
(*) OMAP4 timers support

The comment details are availabe in respective patch series.

The comment regarding usage of "dmtimer" name will be resolved
after final round of consultation with members.

Baseline: "origin/pm-wip/hwmods-omap4"
Test info: Tested on OMAP4430SDP, OMAP3630SDP

Tarun Kanti DebBarma (13):
  dmtimer: hwmod: OMAP4: add device names to flck nodes
  dmtimer: hwmod: add omap3xxx database
  dmtimer: hwmod: OMAP: rev field to identify timer version
  dmtimer: hwmod: OMAP: api to read omap_hwmod _clk
  dmtimer: hwmod: OMAP: conversion to platform driver
  dmtimer: OMAP: multi-platform register map definitions
  dmtimer: hwmod: OMAP2PLUS: device registration
  dmtimer: OMAP: multi-platform register access support
  dmtimer: hwmod: OMAP3: add device names to flck nodes
  dmtimer: hwmod: add omap2430 database
  dmtimer: hwmod: add omap2420 database
  dmtimer: hwmod: OMAP2: add device names to flck nodes
  dmtimer: hwmod: OMAP1: device registration

 arch/arm/mach-omap1/Makefile                 |    2 +-
 arch/arm/mach-omap1/dmtimer.c                |  146 +++++
 arch/arm/mach-omap1/timer32k.c               |    3 -
 arch/arm/mach-omap2/Makefile                 |    2 +-
 arch/arm/mach-omap2/clock2420_data.c         |   12 +
 arch/arm/mach-omap2/clock2430_data.c         |   12 +
 arch/arm/mach-omap2/clock3xxx_data.c         |   24 +-
 arch/arm/mach-omap2/clock44xx_data.c         |   22 +-
 arch/arm/mach-omap2/dmtimer.c                |  403 +++++++++++++
 arch/arm/mach-omap2/dmtimer.h                |   19 +
 arch/arm/mach-omap2/io.c                     |    2 +
 arch/arm/mach-omap2/omap_hwmod.c             |   21 +
 arch/arm/mach-omap2/omap_hwmod_2420_data.c   |  597 ++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_2430_data.c   |  595 ++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c   |  674 ++++++++++++++++++++++
 arch/arm/mach-omap2/omap_hwmod_44xx_data.c   |    3 +
 arch/arm/mach-omap2/timer-gp.c               |    1 -
 arch/arm/plat-omap/dmtimer.c                 |  781 ++++++++++++--------------
 arch/arm/plat-omap/include/plat/dmtimer.h    |   15 +-
 arch/arm/plat-omap/include/plat/omap_hwmod.h |    1 +
 20 files changed, 2894 insertions(+), 441 deletions(-)
 mode change 100644 => 100755 arch/arm/mach-omap1/Makefile
 create mode 100755 arch/arm/mach-omap1/dmtimer.c
 mode change 100644 => 100755 arch/arm/mach-omap1/timer32k.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock2420_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock2430_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock3xxx_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/clock44xx_data.c
 create mode 100755 arch/arm/mach-omap2/dmtimer.c
 create mode 100755 arch/arm/mach-omap2/dmtimer.h
 mode change 100644 => 100755 arch/arm/mach-omap2/io.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2420_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_2430_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
 mode change 100644 => 100755 arch/arm/mach-omap2/omap_hwmod_44xx_data.c
 mode change 100644 => 100755 arch/arm/plat-omap/dmtimer.c
 mode change 100644 => 100755 arch/arm/plat-omap/include/plat/dmtimer.h
 mode change 100644 => 100755 arch/arm/plat-omap/include/plat/omap_hwmod.h


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

end of thread, other threads:[~2010-09-01  9:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-14 15:39 [PATCHv2 0/13] OMAP: dmtimer: hwmod Tarun Kanti DebBarma
2010-08-15 10:48 ` Igor Grinberg
2010-08-16  4:24   ` DebBarma, Tarun Kanti
2010-08-24  0:22 ` Kevin Hilman
2010-09-01  9:23   ` DebBarma, Tarun Kanti
2010-08-14 15:46 Tarun Kanti DebBarma

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.