All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] mfd: 88pm80x: refine irq bit operation
@ 2015-06-07  9:03 Qiao Zhou
  2015-06-24  8:31 ` Lee Jones
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Qiao Zhou @ 2015-06-07  9:03 UTC (permalink / raw)
  To: kernel-janitors

Set_bit/clear_bit for wu_flag may be corrupted if irq > 5(or 6 for
aarch64). The maximum irq number from 88pm80x chip series is 24.
Here we refine the code to protect the potential memory corruption.

Also change wu_flag to wakeup_flag for easier understanding.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Qiao Zhou <zhouqiao@marvell.com>
---
 drivers/input/misc/88pm80x_onkey.c | 2 +-
 drivers/mfd/88pm80x.c              | 4 ++--
 drivers/rtc/rtc-88pm80x.c          | 2 +-
 include/linux/mfd/88pm80x.h        | 9 ++++++---
 4 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/drivers/input/misc/88pm80x_onkey.c b/drivers/input/misc/88pm80x_onkey.c
index cf9908f..b1fd83c 100644
--- a/drivers/input/misc/88pm80x_onkey.c
+++ b/drivers/input/misc/88pm80x_onkey.c
@@ -76,7 +76,7 @@ static int pm80x_onkey_probe(struct platform_device *pdev)
 	info->pm80x = chip;
 
 	info->irq = platform_get_irq(pdev, 0);
-	if (info->irq < 0) {
+	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
 		dev_err(&pdev->dev, "No IRQ resource!\n");
 		err = -EINVAL;
 		goto out;
diff --git a/drivers/mfd/88pm80x.c b/drivers/mfd/88pm80x.c
index 5e72f65..e1d803a 100644
--- a/drivers/mfd/88pm80x.c
+++ b/drivers/mfd/88pm80x.c
@@ -136,7 +136,7 @@ static int pm80x_suspend(struct device *dev)
 	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
 	struct pm80x_chip *chip = i2c_get_clientdata(client);
 
-	if (chip && chip->wu_flag)
+	if (chip && chip->wakeup_flag)
 		if (device_may_wakeup(chip->dev))
 			enable_irq_wake(chip->irq);
 
@@ -148,7 +148,7 @@ static int pm80x_resume(struct device *dev)
 	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
 	struct pm80x_chip *chip = i2c_get_clientdata(client);
 
-	if (chip && chip->wu_flag)
+	if (chip && chip->wakeup_flag)
 		if (device_may_wakeup(chip->dev))
 			disable_irq_wake(chip->irq);
 
diff --git a/drivers/rtc/rtc-88pm80x.c b/drivers/rtc/rtc-88pm80x.c
index 7df0579..d53fa18 100644
--- a/drivers/rtc/rtc-88pm80x.c
+++ b/drivers/rtc/rtc-88pm80x.c
@@ -268,7 +268,7 @@ static int pm80x_rtc_probe(struct platform_device *pdev)
 	if (!info)
 		return -ENOMEM;
 	info->irq = platform_get_irq(pdev, 0);
-	if (info->irq < 0) {
+	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
 		dev_err(&pdev->dev, "No IRQ resource!\n");
 		ret = -EINVAL;
 		goto out;
diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h
index 97cb283..60cff11 100644
--- a/include/linux/mfd/88pm80x.h
+++ b/include/linux/mfd/88pm80x.h
@@ -276,6 +276,9 @@ enum {
 #define PM805_EARPHONE_SETTING			(0x29)
 #define PM805_AUTO_SEQ_SETTING			(0x2A)
 
+/* supported 24 sub-irq */
+#define PM80X_MAX_IRQ			24
+
 struct pm80x_rtc_pdata {
 	int		vrtc;
 	int		rtc_wakeup;
@@ -301,7 +304,7 @@ struct pm80x_chip {
 	int type;
 	int irq;
 	int irq_mode;
-	unsigned long wu_flag;
+	unsigned long wakeup_flag;
 	spinlock_t lock;
 };
 
@@ -349,7 +352,7 @@ static inline int pm80x_dev_suspend(struct device *dev)
 	int irq = platform_get_irq(pdev, 0);
 
 	if (device_may_wakeup(dev))
-		set_bit((1 << irq), &chip->wu_flag);
+		set_bit(irq, &chip->wakeup_flag);
 
 	return 0;
 }
@@ -361,7 +364,7 @@ static inline int pm80x_dev_resume(struct device *dev)
 	int irq = platform_get_irq(pdev, 0);
 
 	if (device_may_wakeup(dev))
-		clear_bit((1 << irq), &chip->wu_flag);
+		clear_bit(irq, &chip->wakeup_flag);
 
 	return 0;
 }
-- 
1.9.1


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

* Re: [PATCH v2] mfd: 88pm80x: refine irq bit operation
  2015-06-07  9:03 [PATCH v2] mfd: 88pm80x: refine irq bit operation Qiao Zhou
@ 2015-06-24  8:31 ` Lee Jones
  2015-06-24  8:47 ` zhouqiao
  2015-06-24 16:47 ` Dmitry Torokhov
  2 siblings, 0 replies; 4+ messages in thread
From: Lee Jones @ 2015-06-24  8:31 UTC (permalink / raw)
  To: kernel-janitors

On Sun, 07 Jun 2015, Qiao Zhou wrote:

> Set_bit/clear_bit for wu_flag may be corrupted if irq > 5(or 6 for
> aarch64). The maximum irq number from 88pm80x chip series is 24.
> Here we refine the code to protect the potential memory corruption.
> 
> Also change wu_flag to wakeup_flag for easier understanding.
> 
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Qiao Zhou <zhouqiao@marvell.com>
> ---
>  drivers/input/misc/88pm80x_onkey.c | 2 +-
>  drivers/mfd/88pm80x.c              | 4 ++--
>  drivers/rtc/rtc-88pm80x.c          | 2 +-
>  include/linux/mfd/88pm80x.h        | 9 ++++++---
>  4 files changed, 10 insertions(+), 7 deletions(-)

For my own reference:
 Acked-by: Lee Jones <lee.jones@linaro.org>

... but I need Acks for Input and RTC before I can merge the patch.

> diff --git a/drivers/input/misc/88pm80x_onkey.c b/drivers/input/misc/88pm80x_onkey.c
> index cf9908f..b1fd83c 100644
> --- a/drivers/input/misc/88pm80x_onkey.c
> +++ b/drivers/input/misc/88pm80x_onkey.c
> @@ -76,7 +76,7 @@ static int pm80x_onkey_probe(struct platform_device *pdev)
>  	info->pm80x = chip;
>  
>  	info->irq = platform_get_irq(pdev, 0);
> -	if (info->irq < 0) {
> +	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
>  		dev_err(&pdev->dev, "No IRQ resource!\n");
>  		err = -EINVAL;
>  		goto out;
> diff --git a/drivers/mfd/88pm80x.c b/drivers/mfd/88pm80x.c
> index 5e72f65..e1d803a 100644
> --- a/drivers/mfd/88pm80x.c
> +++ b/drivers/mfd/88pm80x.c
> @@ -136,7 +136,7 @@ static int pm80x_suspend(struct device *dev)
>  	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
>  	struct pm80x_chip *chip = i2c_get_clientdata(client);
>  
> -	if (chip && chip->wu_flag)
> +	if (chip && chip->wakeup_flag)
>  		if (device_may_wakeup(chip->dev))
>  			enable_irq_wake(chip->irq);
>  
> @@ -148,7 +148,7 @@ static int pm80x_resume(struct device *dev)
>  	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
>  	struct pm80x_chip *chip = i2c_get_clientdata(client);
>  
> -	if (chip && chip->wu_flag)
> +	if (chip && chip->wakeup_flag)
>  		if (device_may_wakeup(chip->dev))
>  			disable_irq_wake(chip->irq);
>  
> diff --git a/drivers/rtc/rtc-88pm80x.c b/drivers/rtc/rtc-88pm80x.c
> index 7df0579..d53fa18 100644
> --- a/drivers/rtc/rtc-88pm80x.c
> +++ b/drivers/rtc/rtc-88pm80x.c
> @@ -268,7 +268,7 @@ static int pm80x_rtc_probe(struct platform_device *pdev)
>  	if (!info)
>  		return -ENOMEM;
>  	info->irq = platform_get_irq(pdev, 0);
> -	if (info->irq < 0) {
> +	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
>  		dev_err(&pdev->dev, "No IRQ resource!\n");
>  		ret = -EINVAL;
>  		goto out;
> diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h
> index 97cb283..60cff11 100644
> --- a/include/linux/mfd/88pm80x.h
> +++ b/include/linux/mfd/88pm80x.h
> @@ -276,6 +276,9 @@ enum {
>  #define PM805_EARPHONE_SETTING			(0x29)
>  #define PM805_AUTO_SEQ_SETTING			(0x2A)
>  
> +/* supported 24 sub-irq */
> +#define PM80X_MAX_IRQ			24
> +
>  struct pm80x_rtc_pdata {
>  	int		vrtc;
>  	int		rtc_wakeup;
> @@ -301,7 +304,7 @@ struct pm80x_chip {
>  	int type;
>  	int irq;
>  	int irq_mode;
> -	unsigned long wu_flag;
> +	unsigned long wakeup_flag;
>  	spinlock_t lock;
>  };
>  
> @@ -349,7 +352,7 @@ static inline int pm80x_dev_suspend(struct device *dev)
>  	int irq = platform_get_irq(pdev, 0);
>  
>  	if (device_may_wakeup(dev))
> -		set_bit((1 << irq), &chip->wu_flag);
> +		set_bit(irq, &chip->wakeup_flag);
>  
>  	return 0;
>  }
> @@ -361,7 +364,7 @@ static inline int pm80x_dev_resume(struct device *dev)
>  	int irq = platform_get_irq(pdev, 0);
>  
>  	if (device_may_wakeup(dev))
> -		clear_bit((1 << irq), &chip->wu_flag);
> +		clear_bit(irq, &chip->wakeup_flag);
>  
>  	return 0;
>  }

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH v2] mfd: 88pm80x: refine irq bit operation
  2015-06-07  9:03 [PATCH v2] mfd: 88pm80x: refine irq bit operation Qiao Zhou
  2015-06-24  8:31 ` Lee Jones
@ 2015-06-24  8:47 ` zhouqiao
  2015-06-24 16:47 ` Dmitry Torokhov
  2 siblings, 0 replies; 4+ messages in thread
From: zhouqiao @ 2015-06-24  8:47 UTC (permalink / raw)
  To: kernel-janitors

Hi Dmitry, Alessandro

Could you please review below patches? Sorry that I didn't add you earlier.

On 06/24/2015 04:31 PM, Lee Jones wrote:
> On Sun, 07 Jun 2015, Qiao Zhou wrote:
>
>> Set_bit/clear_bit for wu_flag may be corrupted if irq > 5(or 6 for
>> aarch64). The maximum irq number from 88pm80x chip series is 24.
>> Here we refine the code to protect the potential memory corruption.
>>
>> Also change wu_flag to wakeup_flag for easier understanding.
>>
>> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
>> Signed-off-by: Qiao Zhou <zhouqiao@marvell.com>
>> ---
>>   drivers/input/misc/88pm80x_onkey.c | 2 +-
>>   drivers/mfd/88pm80x.c              | 4 ++--
>>   drivers/rtc/rtc-88pm80x.c          | 2 +-
>>   include/linux/mfd/88pm80x.h        | 9 ++++++---
>>   4 files changed, 10 insertions(+), 7 deletions(-)
> For my own reference:
>   Acked-by: Lee Jones <lee.jones@linaro.org>
>
> ... but I need Acks for Input and RTC before I can merge the patch.
>
>> diff --git a/drivers/input/misc/88pm80x_onkey.c b/drivers/input/misc/88pm80x_onkey.c
>> index cf9908f..b1fd83c 100644
>> --- a/drivers/input/misc/88pm80x_onkey.c
>> +++ b/drivers/input/misc/88pm80x_onkey.c
>> @@ -76,7 +76,7 @@ static int pm80x_onkey_probe(struct platform_device *pdev)
>>   	info->pm80x = chip;
>>   
>>   	info->irq = platform_get_irq(pdev, 0);
>> -	if (info->irq < 0) {
>> +	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
>>   		dev_err(&pdev->dev, "No IRQ resource!\n");
>>   		err = -EINVAL;
>>   		goto out;
>> diff --git a/drivers/mfd/88pm80x.c b/drivers/mfd/88pm80x.c
>> index 5e72f65..e1d803a 100644
>> --- a/drivers/mfd/88pm80x.c
>> +++ b/drivers/mfd/88pm80x.c
>> @@ -136,7 +136,7 @@ static int pm80x_suspend(struct device *dev)
>>   	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
>>   	struct pm80x_chip *chip = i2c_get_clientdata(client);
>>   
>> -	if (chip && chip->wu_flag)
>> +	if (chip && chip->wakeup_flag)
>>   		if (device_may_wakeup(chip->dev))
>>   			enable_irq_wake(chip->irq);
>>   
>> @@ -148,7 +148,7 @@ static int pm80x_resume(struct device *dev)
>>   	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
>>   	struct pm80x_chip *chip = i2c_get_clientdata(client);
>>   
>> -	if (chip && chip->wu_flag)
>> +	if (chip && chip->wakeup_flag)
>>   		if (device_may_wakeup(chip->dev))
>>   			disable_irq_wake(chip->irq);
>>   
>> diff --git a/drivers/rtc/rtc-88pm80x.c b/drivers/rtc/rtc-88pm80x.c
>> index 7df0579..d53fa18 100644
>> --- a/drivers/rtc/rtc-88pm80x.c
>> +++ b/drivers/rtc/rtc-88pm80x.c
>> @@ -268,7 +268,7 @@ static int pm80x_rtc_probe(struct platform_device *pdev)
>>   	if (!info)
>>   		return -ENOMEM;
>>   	info->irq = platform_get_irq(pdev, 0);
>> -	if (info->irq < 0) {
>> +	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
>>   		dev_err(&pdev->dev, "No IRQ resource!\n");
>>   		ret = -EINVAL;
>>   		goto out;
>> diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h
>> index 97cb283..60cff11 100644
>> --- a/include/linux/mfd/88pm80x.h
>> +++ b/include/linux/mfd/88pm80x.h
>> @@ -276,6 +276,9 @@ enum {
>>   #define PM805_EARPHONE_SETTING			(0x29)
>>   #define PM805_AUTO_SEQ_SETTING			(0x2A)
>>   
>> +/* supported 24 sub-irq */
>> +#define PM80X_MAX_IRQ			24
>> +
>>   struct pm80x_rtc_pdata {
>>   	int		vrtc;
>>   	int		rtc_wakeup;
>> @@ -301,7 +304,7 @@ struct pm80x_chip {
>>   	int type;
>>   	int irq;
>>   	int irq_mode;
>> -	unsigned long wu_flag;
>> +	unsigned long wakeup_flag;
>>   	spinlock_t lock;
>>   };
>>   
>> @@ -349,7 +352,7 @@ static inline int pm80x_dev_suspend(struct device *dev)
>>   	int irq = platform_get_irq(pdev, 0);
>>   
>>   	if (device_may_wakeup(dev))
>> -		set_bit((1 << irq), &chip->wu_flag);
>> +		set_bit(irq, &chip->wakeup_flag);
>>   
>>   	return 0;
>>   }
>> @@ -361,7 +364,7 @@ static inline int pm80x_dev_resume(struct device *dev)
>>   	int irq = platform_get_irq(pdev, 0);
>>   
>>   	if (device_may_wakeup(dev))
>> -		clear_bit((1 << irq), &chip->wu_flag);
>> +		clear_bit(irq, &chip->wakeup_flag);
>>   
>>   	return 0;
>>   }

-- 
Best Regards
Qiao


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

* Re: [PATCH v2] mfd: 88pm80x: refine irq bit operation
  2015-06-07  9:03 [PATCH v2] mfd: 88pm80x: refine irq bit operation Qiao Zhou
  2015-06-24  8:31 ` Lee Jones
  2015-06-24  8:47 ` zhouqiao
@ 2015-06-24 16:47 ` Dmitry Torokhov
  2 siblings, 0 replies; 4+ messages in thread
From: Dmitry Torokhov @ 2015-06-24 16:47 UTC (permalink / raw)
  To: kernel-janitors

On Wed, Jun 24, 2015 at 04:47:03PM +0800, zhouqiao wrote:
> Hi Dmitry, Alessandro
> 
> Could you please review below patches? Sorry that I didn't add you earlier.

This looks fine to me.

Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

> 
> On 06/24/2015 04:31 PM, Lee Jones wrote:
> >On Sun, 07 Jun 2015, Qiao Zhou wrote:
> >
> >>Set_bit/clear_bit for wu_flag may be corrupted if irq > 5(or 6 for
> >>aarch64). The maximum irq number from 88pm80x chip series is 24.
> >>Here we refine the code to protect the potential memory corruption.
> >>
> >>Also change wu_flag to wakeup_flag for easier understanding.
> >>
> >>Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> >>Signed-off-by: Qiao Zhou <zhouqiao@marvell.com>
> >>---
> >>  drivers/input/misc/88pm80x_onkey.c | 2 +-
> >>  drivers/mfd/88pm80x.c              | 4 ++--
> >>  drivers/rtc/rtc-88pm80x.c          | 2 +-
> >>  include/linux/mfd/88pm80x.h        | 9 ++++++---
> >>  4 files changed, 10 insertions(+), 7 deletions(-)
> >For my own reference:
> >  Acked-by: Lee Jones <lee.jones@linaro.org>
> >
> >... but I need Acks for Input and RTC before I can merge the patch.
> >
> >>diff --git a/drivers/input/misc/88pm80x_onkey.c b/drivers/input/misc/88pm80x_onkey.c
> >>index cf9908f..b1fd83c 100644
> >>--- a/drivers/input/misc/88pm80x_onkey.c
> >>+++ b/drivers/input/misc/88pm80x_onkey.c
> >>@@ -76,7 +76,7 @@ static int pm80x_onkey_probe(struct platform_device *pdev)
> >>  	info->pm80x = chip;
> >>  	info->irq = platform_get_irq(pdev, 0);
> >>-	if (info->irq < 0) {
> >>+	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
> >>  		dev_err(&pdev->dev, "No IRQ resource!\n");
> >>  		err = -EINVAL;
> >>  		goto out;
> >>diff --git a/drivers/mfd/88pm80x.c b/drivers/mfd/88pm80x.c
> >>index 5e72f65..e1d803a 100644
> >>--- a/drivers/mfd/88pm80x.c
> >>+++ b/drivers/mfd/88pm80x.c
> >>@@ -136,7 +136,7 @@ static int pm80x_suspend(struct device *dev)
> >>  	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
> >>  	struct pm80x_chip *chip = i2c_get_clientdata(client);
> >>-	if (chip && chip->wu_flag)
> >>+	if (chip && chip->wakeup_flag)
> >>  		if (device_may_wakeup(chip->dev))
> >>  			enable_irq_wake(chip->irq);
> >>@@ -148,7 +148,7 @@ static int pm80x_resume(struct device *dev)
> >>  	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
> >>  	struct pm80x_chip *chip = i2c_get_clientdata(client);
> >>-	if (chip && chip->wu_flag)
> >>+	if (chip && chip->wakeup_flag)
> >>  		if (device_may_wakeup(chip->dev))
> >>  			disable_irq_wake(chip->irq);
> >>diff --git a/drivers/rtc/rtc-88pm80x.c b/drivers/rtc/rtc-88pm80x.c
> >>index 7df0579..d53fa18 100644
> >>--- a/drivers/rtc/rtc-88pm80x.c
> >>+++ b/drivers/rtc/rtc-88pm80x.c
> >>@@ -268,7 +268,7 @@ static int pm80x_rtc_probe(struct platform_device *pdev)
> >>  	if (!info)
> >>  		return -ENOMEM;
> >>  	info->irq = platform_get_irq(pdev, 0);
> >>-	if (info->irq < 0) {
> >>+	if (info->irq < 0 || info->irq >= PM80X_MAX_IRQ) {
> >>  		dev_err(&pdev->dev, "No IRQ resource!\n");
> >>  		ret = -EINVAL;
> >>  		goto out;
> >>diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h
> >>index 97cb283..60cff11 100644
> >>--- a/include/linux/mfd/88pm80x.h
> >>+++ b/include/linux/mfd/88pm80x.h
> >>@@ -276,6 +276,9 @@ enum {
> >>  #define PM805_EARPHONE_SETTING			(0x29)
> >>  #define PM805_AUTO_SEQ_SETTING			(0x2A)
> >>+/* supported 24 sub-irq */
> >>+#define PM80X_MAX_IRQ			24
> >>+
> >>  struct pm80x_rtc_pdata {
> >>  	int		vrtc;
> >>  	int		rtc_wakeup;
> >>@@ -301,7 +304,7 @@ struct pm80x_chip {
> >>  	int type;
> >>  	int irq;
> >>  	int irq_mode;
> >>-	unsigned long wu_flag;
> >>+	unsigned long wakeup_flag;
> >>  	spinlock_t lock;
> >>  };
> >>@@ -349,7 +352,7 @@ static inline int pm80x_dev_suspend(struct device *dev)
> >>  	int irq = platform_get_irq(pdev, 0);
> >>  	if (device_may_wakeup(dev))
> >>-		set_bit((1 << irq), &chip->wu_flag);
> >>+		set_bit(irq, &chip->wakeup_flag);
> >>  	return 0;
> >>  }
> >>@@ -361,7 +364,7 @@ static inline int pm80x_dev_resume(struct device *dev)
> >>  	int irq = platform_get_irq(pdev, 0);
> >>  	if (device_may_wakeup(dev))
> >>-		clear_bit((1 << irq), &chip->wu_flag);
> >>+		clear_bit(irq, &chip->wakeup_flag);
> >>  	return 0;
> >>  }
> 
> -- 
> Best Regards
> Qiao
> 

-- 
Dmitry

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

end of thread, other threads:[~2015-06-24 16:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-07  9:03 [PATCH v2] mfd: 88pm80x: refine irq bit operation Qiao Zhou
2015-06-24  8:31 ` Lee Jones
2015-06-24  8:47 ` zhouqiao
2015-06-24 16:47 ` Dmitry Torokhov

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.