* [PATCH net-next] ravb: ptp: Add CONFIG mode support
@ 2015-12-01 17:04 Yoshihiro Kaneko
2015-12-03 19:28 ` David Miller
2015-12-03 21:09 ` Sergei Shtylyov
0 siblings, 2 replies; 10+ messages in thread
From: Yoshihiro Kaneko @ 2015-12-01 17:04 UTC (permalink / raw)
To: netdev; +Cc: David S. Miller, Simon Horman, Magnus Damm, linux-sh
From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
This patch makes PTP support active in CONFIG mode on R-Car Gen3.
Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
---
This patch is based on the master branch of David Miller's next networking
tree.
drivers/net/ethernet/renesas/ravb.h | 1 +
drivers/net/ethernet/renesas/ravb_main.c | 33 +++++++++++++++++++++++++++-----
2 files changed, 29 insertions(+), 5 deletions(-)
diff --git a/drivers/net/ethernet/renesas/ravb.h b/drivers/net/ethernet/renesas/ravb.h
index f9dee74..9fbe92a 100644
--- a/drivers/net/ethernet/renesas/ravb.h
+++ b/drivers/net/ethernet/renesas/ravb.h
@@ -206,6 +206,7 @@ enum CCC_BIT {
CCC_OPC_RESET = 0x00000000,
CCC_OPC_CONFIG = 0x00000001,
CCC_OPC_OPERATION = 0x00000002,
+ CCC_GAC = 0x00000080,
CCC_DTSR = 0x00000100,
CCC_CSEL = 0x00030000,
CCC_CSEL_HPB = 0x00010000,
diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
index 990dc55..293046d 100644
--- a/drivers/net/ethernet/renesas/ravb_main.c
+++ b/drivers/net/ethernet/renesas/ravb_main.c
@@ -1231,7 +1231,8 @@ static int ravb_open(struct net_device *ndev)
ravb_emac_init(ndev);
/* Initialise PTP Clock driver */
- ravb_ptp_init(ndev, priv->pdev);
+ if (priv->chip_id == RCAR_GEN2)
+ ravb_ptp_init(ndev, priv->pdev);
netif_tx_start_all_queues(ndev);
@@ -1244,7 +1245,8 @@ static int ravb_open(struct net_device *ndev)
out_ptp_stop:
/* Stop PTP Clock driver */
- ravb_ptp_stop(ndev);
+ if (priv->chip_id == RCAR_GEN2)
+ ravb_ptp_stop(ndev);
out_free_irq:
free_irq(ndev->irq, ndev);
free_irq(priv->emac_irq, ndev);
@@ -1476,7 +1478,8 @@ static int ravb_close(struct net_device *ndev)
ravb_write(ndev, 0, TIC);
/* Stop PTP Clock driver */
- ravb_ptp_stop(ndev);
+ if (priv->chip_id == RCAR_GEN2)
+ ravb_ptp_stop(ndev);
/* Set the config mode to stop the AVB-DMAC's processes */
if (ravb_stop_dma(ndev) < 0)
@@ -1781,8 +1784,16 @@ static int ravb_probe(struct platform_device *pdev)
ndev->ethtool_ops = &ravb_ethtool_ops;
/* Set AVB config mode */
- ravb_write(ndev, (ravb_read(ndev, CCC) & ~CCC_OPC) | CCC_OPC_CONFIG,
- CCC);
+ if (chip_id == RCAR_GEN2) {
+ ravb_write(ndev, (ravb_read(ndev, CCC) & ~CCC_OPC) |
+ CCC_OPC_CONFIG, CCC);
+ /* Set CSEL value */
+ ravb_write(ndev, (ravb_read(ndev, CCC) & ~CCC_CSEL) |
+ CCC_CSEL_HPB, CCC);
+ } else {
+ ravb_write(ndev, (ravb_read(ndev, CCC) & ~CCC_OPC) |
+ CCC_OPC_CONFIG | CCC_GAC | CCC_CSEL_HPB, CCC);
+ }
/* Set CSEL value */
ravb_write(ndev, (ravb_read(ndev, CCC) & ~CCC_CSEL) | CCC_CSEL_HPB,
@@ -1814,6 +1825,10 @@ static int ravb_probe(struct platform_device *pdev)
/* Initialise HW timestamp list */
INIT_LIST_HEAD(&priv->ts_skb_list);
+ /* Initialise PTP Clock driver */
+ if (chip_id != RCAR_GEN2)
+ ravb_ptp_init(ndev, pdev);
+
/* Debug message level */
priv->msg_enable = RAVB_DEF_MSG_ENABLE;
@@ -1855,6 +1870,10 @@ out_napi_del:
out_dma_free:
dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat,
priv->desc_bat_dma);
+
+ /* Stop PTP Clock driver */
+ if (chip_id != RCAR_GEN2)
+ ravb_ptp_stop(ndev);
out_release:
if (ndev)
free_netdev(ndev);
@@ -1869,6 +1888,10 @@ static int ravb_remove(struct platform_device *pdev)
struct net_device *ndev = platform_get_drvdata(pdev);
struct ravb_private *priv = netdev_priv(ndev);
+ /* Stop PTP Clock driver */
+ if (priv->chip_id != RCAR_GEN2)
+ ravb_ptp_stop(ndev);
+
dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat,
priv->desc_bat_dma);
/* Set reset mode */
--
1.9.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-01 17:04 [PATCH net-next] ravb: ptp: Add CONFIG mode support Yoshihiro Kaneko
@ 2015-12-03 19:28 ` David Miller
2015-12-03 21:10 ` Sergei Shtylyov
2015-12-03 21:09 ` Sergei Shtylyov
1 sibling, 1 reply; 10+ messages in thread
From: David Miller @ 2015-12-03 19:28 UTC (permalink / raw)
To: ykaneko0929; +Cc: netdev, horms, magnus.damm, linux-sh
From: Yoshihiro Kaneko <ykaneko0929@gmail.com>
Date: Wed, 2 Dec 2015 02:04:39 +0900
> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>
> This patch makes PTP support active in CONFIG mode on R-Car Gen3.
>
> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
Applied, thank you.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-01 17:04 [PATCH net-next] ravb: ptp: Add CONFIG mode support Yoshihiro Kaneko
2015-12-03 19:28 ` David Miller
@ 2015-12-03 21:09 ` Sergei Shtylyov
2015-12-05 10:01 ` Yoshihiro Kaneko
1 sibling, 1 reply; 10+ messages in thread
From: Sergei Shtylyov @ 2015-12-03 21:09 UTC (permalink / raw)
To: Yoshihiro Kaneko, netdev
Cc: David S. Miller, Simon Horman, Magnus Damm, linux-sh
Hello.
On 12/01/2015 08:04 PM, Yoshihiro Kaneko wrote:
> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>
> This patch makes PTP support active in CONFIG mode on R-Car Gen3.
>
> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
> ---
>
> This patch is based on the master branch of David Miller's next networking
> tree.
>
> drivers/net/ethernet/renesas/ravb.h | 1 +
> drivers/net/ethernet/renesas/ravb_main.c | 33 +++++++++++++++++++++++++++-----
> 2 files changed, 29 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/net/ethernet/renesas/ravb.h b/drivers/net/ethernet/renesas/ravb.h
> index f9dee74..9fbe92a 100644
> --- a/drivers/net/ethernet/renesas/ravb.h
> +++ b/drivers/net/ethernet/renesas/ravb.h
> @@ -206,6 +206,7 @@ enum CCC_BIT {
> CCC_OPC_RESET = 0x00000000,
> CCC_OPC_CONFIG = 0x00000001,
> CCC_OPC_OPERATION = 0x00000002,
> + CCC_GAC = 0x00000080,
I'd have added a comment that it's gen3 specific.
[...]
> diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
> index 990dc55..293046d 100644
> --- a/drivers/net/ethernet/renesas/ravb_main.c
> +++ b/drivers/net/ethernet/renesas/ravb_main.c
[...]
> @@ -1814,6 +1825,10 @@ static int ravb_probe(struct platform_device *pdev)
> /* Initialise HW timestamp list */
> INIT_LIST_HEAD(&priv->ts_skb_list);
>
> + /* Initialise PTP Clock driver */
> + if (chip_id != RCAR_GEN2)
> + ravb_ptp_init(ndev, pdev);
> +
> /* Debug message level */
> priv->msg_enable = RAVB_DEF_MSG_ENABLE;
>
> @@ -1855,6 +1870,10 @@ out_napi_del:
> out_dma_free:
> dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat,
> priv->desc_bat_dma);
> +
> + /* Stop PTP Clock driver */
> + if (chip_id != RCAR_GEN2)
> + ravb_ptp_stop(ndev);
This is clearly misplaced.
[...]
MBR, Sergei
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-03 19:28 ` David Miller
@ 2015-12-03 21:10 ` Sergei Shtylyov
2015-12-03 23:08 ` David Miller
0 siblings, 1 reply; 10+ messages in thread
From: Sergei Shtylyov @ 2015-12-03 21:10 UTC (permalink / raw)
To: David Miller, ykaneko0929; +Cc: netdev, horms, magnus.damm, linux-sh
Hello.
On 12/03/2015 10:28 PM, David Miller wrote:
>> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>
>> This patch makes PTP support active in CONFIG mode on R-Car Gen3.
>>
>> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
>
> Applied, thank you.
You were too fast for me. Alas, I overlooked it. :-/
Perhaps worth adding me to MAINTAINERS as (a new role of) a reviewer...
MBR, Sergei
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-03 21:10 ` Sergei Shtylyov
@ 2015-12-03 23:08 ` David Miller
2015-12-03 23:38 ` Sergei Shtylyov
0 siblings, 1 reply; 10+ messages in thread
From: David Miller @ 2015-12-03 23:08 UTC (permalink / raw)
To: sergei.shtylyov; +Cc: ykaneko0929, netdev, horms, magnus.damm, linux-sh
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Fri, 4 Dec 2015 00:10:56 +0300
> Perhaps worth adding me to MAINTAINERS as (a new role of) a
> reviewer...
I'll happily apply such a patch.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-03 23:08 ` David Miller
@ 2015-12-03 23:38 ` Sergei Shtylyov
2015-12-04 1:36 ` David Miller
0 siblings, 1 reply; 10+ messages in thread
From: Sergei Shtylyov @ 2015-12-03 23:38 UTC (permalink / raw)
To: David Miller; +Cc: ykaneko0929, netdev, horms, magnus.damm, linux-sh
On 12/04/2015 02:08 AM, David Miller wrote:
>> Perhaps worth adding me to MAINTAINERS as (a new role of) a
>> reviewer...
>
> I'll happily apply such a patch.
OK, net.git would be OK as a base?
MBR, Sergei
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-03 23:38 ` Sergei Shtylyov
@ 2015-12-04 1:36 ` David Miller
0 siblings, 0 replies; 10+ messages in thread
From: David Miller @ 2015-12-04 1:36 UTC (permalink / raw)
To: sergei.shtylyov; +Cc: ykaneko0929, netdev, horms, magnus.damm, linux-sh
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Fri, 4 Dec 2015 02:38:30 +0300
> On 12/04/2015 02:08 AM, David Miller wrote:
>
>>> Perhaps worth adding me to MAINTAINERS as (a new role of) a
>>> reviewer...
>>
>> I'll happily apply such a patch.
>
> OK, net.git would be OK as a base?
Absolutely.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-03 21:09 ` Sergei Shtylyov
@ 2015-12-05 10:01 ` Yoshihiro Kaneko
2015-12-06 19:19 ` Sergei Shtylyov
0 siblings, 1 reply; 10+ messages in thread
From: Yoshihiro Kaneko @ 2015-12-05 10:01 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: netdev, David S. Miller, Simon Horman, Magnus Damm, Linux-sh list
Hello Sergei,
Thanks for your review.
2015-12-04 6:09 GMT+09:00 Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>:
> Hello.
>
> On 12/01/2015 08:04 PM, Yoshihiro Kaneko wrote:
>
>> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>
>> This patch makes PTP support active in CONFIG mode on R-Car Gen3.
>>
>> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
>> ---
>>
>> This patch is based on the master branch of David Miller's next networking
>> tree.
>>
>> drivers/net/ethernet/renesas/ravb.h | 1 +
>> drivers/net/ethernet/renesas/ravb_main.c | 33
>> +++++++++++++++++++++++++++-----
>> 2 files changed, 29 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/net/ethernet/renesas/ravb.h
>> b/drivers/net/ethernet/renesas/ravb.h
>> index f9dee74..9fbe92a 100644
>> --- a/drivers/net/ethernet/renesas/ravb.h
>> +++ b/drivers/net/ethernet/renesas/ravb.h
>> @@ -206,6 +206,7 @@ enum CCC_BIT {
>> CCC_OPC_RESET = 0x00000000,
>> CCC_OPC_CONFIG = 0x00000001,
>> CCC_OPC_OPERATION = 0x00000002,
>> + CCC_GAC = 0x00000080,
>
>
> I'd have added a comment that it's gen3 specific.
>
> [...]
>>
>> diff --git a/drivers/net/ethernet/renesas/ravb_main.c
>> b/drivers/net/ethernet/renesas/ravb_main.c
>> index 990dc55..293046d 100644
>> --- a/drivers/net/ethernet/renesas/ravb_main.c
>> +++ b/drivers/net/ethernet/renesas/ravb_main.c
>
> [...]
>>
>> @@ -1814,6 +1825,10 @@ static int ravb_probe(struct platform_device *pdev)
>> /* Initialise HW timestamp list */
>> INIT_LIST_HEAD(&priv->ts_skb_list);
>>
>> + /* Initialise PTP Clock driver */
>> + if (chip_id != RCAR_GEN2)
>> + ravb_ptp_init(ndev, pdev);
>> +
>> /* Debug message level */
>> priv->msg_enable = RAVB_DEF_MSG_ENABLE;
>>
>> @@ -1855,6 +1870,10 @@ out_napi_del:
>> out_dma_free:
>> dma_free_coherent(ndev->dev.parent, priv->desc_bat_size,
>> priv->desc_bat,
>> priv->desc_bat_dma);
>> +
>> + /* Stop PTP Clock driver */
>> + if (chip_id != RCAR_GEN2)
>> + ravb_ptp_stop(ndev);
>
>
> This is clearly misplaced.
It's my fault.
>
> [...]
>
> MBR, Sergei
>
Regards,
Kaneko
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-05 10:01 ` Yoshihiro Kaneko
@ 2015-12-06 19:19 ` Sergei Shtylyov
2015-12-07 14:47 ` Yoshihiro Kaneko
0 siblings, 1 reply; 10+ messages in thread
From: Sergei Shtylyov @ 2015-12-06 19:19 UTC (permalink / raw)
To: Yoshihiro Kaneko
Cc: netdev, David S. Miller, Simon Horman, Magnus Damm, Linux-sh list
Hello.
On 12/05/2015 01:01 PM, Yoshihiro Kaneko wrote:
> Thanks for your review.
From now on, it'll be my duty. :-)
> 2015-12-04 6:09 GMT+09:00 Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>:
>> Hello.
>>
>> On 12/01/2015 08:04 PM, Yoshihiro Kaneko wrote:
>>
>>> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>>
>>> This patch makes PTP support active in CONFIG mode on R-Car Gen3.
>>>
>>> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
>>> ---
>>>
>>> This patch is based on the master branch of David Miller's next networking
>>> tree.
>>>
>>> drivers/net/ethernet/renesas/ravb.h | 1 +
>>> drivers/net/ethernet/renesas/ravb_main.c | 33
>>> +++++++++++++++++++++++++++-----
>>> 2 files changed, 29 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/drivers/net/ethernet/renesas/ravb.h
>>> b/drivers/net/ethernet/renesas/ravb.h
>>> index f9dee74..9fbe92a 100644
>>> --- a/drivers/net/ethernet/renesas/ravb.h
>>> +++ b/drivers/net/ethernet/renesas/ravb.h
[...]
>>> diff --git a/drivers/net/ethernet/renesas/ravb_main.c
>>> b/drivers/net/ethernet/renesas/ravb_main.c
>>> index 990dc55..293046d 100644
>>> --- a/drivers/net/ethernet/renesas/ravb_main.c
>>> +++ b/drivers/net/ethernet/renesas/ravb_main.c
[...]
>>> @@ -1855,6 +1870,10 @@ out_napi_del:
>>> out_dma_free:
>>> dma_free_coherent(ndev->dev.parent, priv->desc_bat_size,
>>> priv->desc_bat,
>>> priv->desc_bat_dma);
>>> +
>>> + /* Stop PTP Clock driver */
>>> + if (chip_id != RCAR_GEN2)
>>> + ravb_ptp_stop(ndev);
>>
>>
>> This is clearly misplaced.
>
> It's my fault.
Should we expect a new patch fixing this issue?
[...]
> Regards,
> Kaneko
MBR, Sergei
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH net-next] ravb: ptp: Add CONFIG mode support
2015-12-06 19:19 ` Sergei Shtylyov
@ 2015-12-07 14:47 ` Yoshihiro Kaneko
0 siblings, 0 replies; 10+ messages in thread
From: Yoshihiro Kaneko @ 2015-12-07 14:47 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: netdev, David S. Miller, Simon Horman, Magnus Damm, Linux-sh list
Hello Sergei,
2015-12-07 4:19 GMT+09:00 Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>:
> Hello.
>
> On 12/05/2015 01:01 PM, Yoshihiro Kaneko wrote:
>
>> Thanks for your review.
>
>
> From now on, it'll be my duty. :-)
Thank you always for your help.
>
>> 2015-12-04 6:09 GMT+09:00 Sergei Shtylyov
>> <sergei.shtylyov@cogentembedded.com>:
>>>
>>> Hello.
>>>
>>> On 12/01/2015 08:04 PM, Yoshihiro Kaneko wrote:
>>>
>>>> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>>>
>>>> This patch makes PTP support active in CONFIG mode on R-Car Gen3.
>>>>
>>>> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>>> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
>>>> ---
>>>>
>>>> This patch is based on the master branch of David Miller's next
>>>> networking
>>>> tree.
>>>>
>>>> drivers/net/ethernet/renesas/ravb.h | 1 +
>>>> drivers/net/ethernet/renesas/ravb_main.c | 33
>>>> +++++++++++++++++++++++++++-----
>>>> 2 files changed, 29 insertions(+), 5 deletions(-)
>>>>
>>>> diff --git a/drivers/net/ethernet/renesas/ravb.h
>>>> b/drivers/net/ethernet/renesas/ravb.h
>>>> index f9dee74..9fbe92a 100644
>>>> --- a/drivers/net/ethernet/renesas/ravb.h
>>>> +++ b/drivers/net/ethernet/renesas/ravb.h
>
> [...]
>
>>>> diff --git a/drivers/net/ethernet/renesas/ravb_main.c
>>>> b/drivers/net/ethernet/renesas/ravb_main.c
>>>> index 990dc55..293046d 100644
>>>> --- a/drivers/net/ethernet/renesas/ravb_main.c
>>>> +++ b/drivers/net/ethernet/renesas/ravb_main.c
>
> [...]
>>>>
>>>> @@ -1855,6 +1870,10 @@ out_napi_del:
>>>> out_dma_free:
>>>> dma_free_coherent(ndev->dev.parent, priv->desc_bat_size,
>>>> priv->desc_bat,
>>>> priv->desc_bat_dma);
>>>> +
>>>> + /* Stop PTP Clock driver */
>>>> + if (chip_id != RCAR_GEN2)
>>>> + ravb_ptp_stop(ndev);
>>>
>>>
>>>
>>> This is clearly misplaced.
>>
>>
>> It's my fault.
>
>
> Should we expect a new patch fixing this issue?
Sure, I will do.
>
> [...]
>
>> Regards,
>> Kaneko
>
>
> MBR, Sergei
>
Thanks,
Kaneko
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2015-12-07 14:47 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-01 17:04 [PATCH net-next] ravb: ptp: Add CONFIG mode support Yoshihiro Kaneko
2015-12-03 19:28 ` David Miller
2015-12-03 21:10 ` Sergei Shtylyov
2015-12-03 23:08 ` David Miller
2015-12-03 23:38 ` Sergei Shtylyov
2015-12-04 1:36 ` David Miller
2015-12-03 21:09 ` Sergei Shtylyov
2015-12-05 10:01 ` Yoshihiro Kaneko
2015-12-06 19:19 ` Sergei Shtylyov
2015-12-07 14:47 ` Yoshihiro Kaneko
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).