linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
@ 2013-12-17 11:08 Rashika Kheria
  2013-12-17 11:11 ` [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c Rashika Kheria
                   ` (4 more replies)
  0 siblings, 5 replies; 15+ messages in thread
From: Rashika Kheria @ 2013-12-17 11:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: Borislav Petkov, David S. Miller, linux-ide, josh

Include appropriate header file ide-cd.h in ide-cd_verbose.c because
function ide_cd_log_error() has its prototype declaration in ide-cd.h.
Also, include linux/ide.h because it contains certain declarations
necessary for including ide-cd.h.

This eliminates the following warnings in ide-cd_verbose.c:
drivers/ide/ide-cd_verbose.c:251:6: warning: no previous prototype for ‘ide_cd_log_error’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
---
 drivers/ide/ide-cd_verbose.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/ide/ide-cd_verbose.c b/drivers/ide/ide-cd_verbose.c
index 6490a2d..f079ca2 100644
--- a/drivers/ide/ide-cd_verbose.c
+++ b/drivers/ide/ide-cd_verbose.c
@@ -9,7 +9,9 @@
 #include <linux/kernel.h>
 #include <linux/blkdev.h>
 #include <linux/cdrom.h>
+#include <linux/ide.h>
 #include <scsi/scsi.h>
+#include "ide-cd.h"
 
 #ifndef CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS
 void ide_cd_log_error(const char *name, struct request *failed_command,
-- 
1.7.9.5


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

* [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c
  2013-12-17 11:08 [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Rashika Kheria
@ 2013-12-17 11:11 ` Rashika Kheria
  2013-12-17 16:37   ` Josh Triplett
  2014-01-29  7:37   ` David Miller
  2013-12-17 11:19 ` [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Borislav Petkov
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 15+ messages in thread
From: Rashika Kheria @ 2013-12-17 11:11 UTC (permalink / raw)
  To: linux-kernel; +Cc: David S. Miller, linux-ide, josh

Include appropriate header file include/linux/ide.h in file
ide-pio-blacklist.c because function ide_scan_pio_blacklist() has it's
prototype declaration in include/linux/ide.h.

This eliminates the following warning in ide-pio-blacklist.c:
drivers/ide/ide-pio-blacklist.c:85:5: warning: no previous prototype for ‘ide_scan_pio_blacklist’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
---
 drivers/ide/ide-pio-blacklist.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/ide/ide-pio-blacklist.c b/drivers/ide/ide-pio-blacklist.c
index a8c2c8f8..40e683a 100644
--- a/drivers/ide/ide-pio-blacklist.c
+++ b/drivers/ide/ide-pio-blacklist.c
@@ -7,6 +7,7 @@
  */
 
 #include <linux/string.h>
+#include <linux/ide.h>
 
 static struct ide_pio_info {
 	const char	*name;
-- 
1.7.9.5


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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 11:08 [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Rashika Kheria
  2013-12-17 11:11 ` [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c Rashika Kheria
@ 2013-12-17 11:19 ` Borislav Petkov
  2013-12-17 16:44   ` Josh Triplett
  2013-12-17 16:37 ` Josh Triplett
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 15+ messages in thread
From: Borislav Petkov @ 2013-12-17 11:19 UTC (permalink / raw)
  To: Rashika Kheria; +Cc: linux-kernel, David S. Miller, linux-ide, josh

On Tue, Dec 17, 2013 at 04:38:16PM +0530, Rashika Kheria wrote:
> Include appropriate header file ide-cd.h in ide-cd_verbose.c because
> function ide_cd_log_error() has its prototype declaration in ide-cd.h.
> Also, include linux/ide.h because it contains certain declarations
> necessary for including ide-cd.h.
> 
> This eliminates the following warnings in ide-cd_verbose.c:
> drivers/ide/ide-cd_verbose.c:251:6: warning: no previous prototype for ‘ide_cd_log_error’ [-Wmissing-prototypes]

drivers/ide/ is open only to fixes for serious, real bugs - nothing
else. I wouldn't waste my time with it if I were you.

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 11:08 [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Rashika Kheria
  2013-12-17 11:11 ` [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c Rashika Kheria
  2013-12-17 11:19 ` [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Borislav Petkov
@ 2013-12-17 16:37 ` Josh Triplett
  2013-12-17 18:11 ` Sergei Shtylyov
  2014-01-29  7:36 ` David Miller
  4 siblings, 0 replies; 15+ messages in thread
From: Josh Triplett @ 2013-12-17 16:37 UTC (permalink / raw)
  To: Rashika Kheria; +Cc: linux-kernel, Borislav Petkov, David S. Miller, linux-ide

On Tue, Dec 17, 2013 at 04:38:16PM +0530, Rashika Kheria wrote:
> Include appropriate header file ide-cd.h in ide-cd_verbose.c because
> function ide_cd_log_error() has its prototype declaration in ide-cd.h.
> Also, include linux/ide.h because it contains certain declarations
> necessary for including ide-cd.h.
> 
> This eliminates the following warnings in ide-cd_verbose.c:
> drivers/ide/ide-cd_verbose.c:251:6: warning: no previous prototype for ‘ide_cd_log_error’ [-Wmissing-prototypes]
> 
> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>

Reviewed-by: Josh Triplett <josh@joshtriplett.org>

>  drivers/ide/ide-cd_verbose.c |    2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/ide/ide-cd_verbose.c b/drivers/ide/ide-cd_verbose.c
> index 6490a2d..f079ca2 100644
> --- a/drivers/ide/ide-cd_verbose.c
> +++ b/drivers/ide/ide-cd_verbose.c
> @@ -9,7 +9,9 @@
>  #include <linux/kernel.h>
>  #include <linux/blkdev.h>
>  #include <linux/cdrom.h>
> +#include <linux/ide.h>
>  #include <scsi/scsi.h>
> +#include "ide-cd.h"
>  
>  #ifndef CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS
>  void ide_cd_log_error(const char *name, struct request *failed_command,
> -- 
> 1.7.9.5
> 

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

* Re: [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c
  2013-12-17 11:11 ` [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c Rashika Kheria
@ 2013-12-17 16:37   ` Josh Triplett
  2014-01-29  7:37   ` David Miller
  1 sibling, 0 replies; 15+ messages in thread
From: Josh Triplett @ 2013-12-17 16:37 UTC (permalink / raw)
  To: Rashika Kheria; +Cc: linux-kernel, David S. Miller, linux-ide

On Tue, Dec 17, 2013 at 04:41:11PM +0530, Rashika Kheria wrote:
> Include appropriate header file include/linux/ide.h in file
> ide-pio-blacklist.c because function ide_scan_pio_blacklist() has it's
> prototype declaration in include/linux/ide.h.
> 
> This eliminates the following warning in ide-pio-blacklist.c:
> drivers/ide/ide-pio-blacklist.c:85:5: warning: no previous prototype for ‘ide_scan_pio_blacklist’ [-Wmissing-prototypes]
> 
> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>

Reviewed-by: Josh Triplett <josh@joshtriplett.org>

>  drivers/ide/ide-pio-blacklist.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/ide/ide-pio-blacklist.c b/drivers/ide/ide-pio-blacklist.c
> index a8c2c8f8..40e683a 100644
> --- a/drivers/ide/ide-pio-blacklist.c
> +++ b/drivers/ide/ide-pio-blacklist.c
> @@ -7,6 +7,7 @@
>   */
>  
>  #include <linux/string.h>
> +#include <linux/ide.h>
>  
>  static struct ide_pio_info {
>  	const char	*name;
> -- 
> 1.7.9.5
> 

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 11:19 ` [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Borislav Petkov
@ 2013-12-17 16:44   ` Josh Triplett
  2013-12-17 17:54     ` Borislav Petkov
  0 siblings, 1 reply; 15+ messages in thread
From: Josh Triplett @ 2013-12-17 16:44 UTC (permalink / raw)
  To: Borislav Petkov; +Cc: Rashika Kheria, linux-kernel, David S. Miller, linux-ide

On Tue, Dec 17, 2013 at 12:19:21PM +0100, Borislav Petkov wrote:
> On Tue, Dec 17, 2013 at 04:38:16PM +0530, Rashika Kheria wrote:
> > Include appropriate header file ide-cd.h in ide-cd_verbose.c because
> > function ide_cd_log_error() has its prototype declaration in ide-cd.h.
> > Also, include linux/ide.h because it contains certain declarations
> > necessary for including ide-cd.h.
> > 
> > This eliminates the following warnings in ide-cd_verbose.c:
> > drivers/ide/ide-cd_verbose.c:251:6: warning: no previous prototype for ‘ide_cd_log_error’ [-Wmissing-prototypes]
> 
> drivers/ide/ is open only to fixes for serious, real bugs - nothing
> else. I wouldn't waste my time with it if I were you.

A quick check of "git log drivers/ide/" turns up a pile of fixes and
cleanups; for instance:

c2f7d1e ide: pmac: remove unnecessary pci_set_drvdata()
a6fd6063 ide: cs5536: use module_pci_driver()
58e48be ide: pmac: Remove casting the return value which is a void pointer
64110c1 ide: sgiioc4: Staticize ioc4_ide_attach_one()
70ddce8 ide: palm_bk3710: add missing __iomem annotation

The two proposed patches here are extremely low risk, don't actually
change the compiled code in any way like some of those did, and fix real
compiler warnings.

- Josh Triplett

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 16:44   ` Josh Triplett
@ 2013-12-17 17:54     ` Borislav Petkov
  2013-12-17 19:42       ` Sergei Shtylyov
  0 siblings, 1 reply; 15+ messages in thread
From: Borislav Petkov @ 2013-12-17 17:54 UTC (permalink / raw)
  To: Josh Triplett; +Cc: Rashika Kheria, linux-kernel, David S. Miller, linux-ide

On Tue, Dec 17, 2013 at 08:44:03AM -0800, Josh Triplett wrote:
> The two proposed patches here are extremely low risk, don't actually
> change the compiled code in any way like some of those did, and fix
> real compiler warnings.

Considering the fact that IDE is about to be deleted (unless something
embedded still wants it which I hardly doubt but hey, I'm always open to
surprises), putting *any* work into that is a complete waste of time,
IMO. But it is your time so I certainly won't tell you how to spend it.

:-)

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 11:08 [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Rashika Kheria
                   ` (2 preceding siblings ...)
  2013-12-17 16:37 ` Josh Triplett
@ 2013-12-17 18:11 ` Sergei Shtylyov
  2014-01-29  7:36 ` David Miller
  4 siblings, 0 replies; 15+ messages in thread
From: Sergei Shtylyov @ 2013-12-17 18:11 UTC (permalink / raw)
  To: Rashika Kheria, linux-kernel
  Cc: Borislav Petkov, David S. Miller, linux-ide, josh

Hello.

On 12/17/2013 02:08 PM, Rashika Kheria wrote:

> Include appropriate header file ide-cd.h in ide-cd_verbose.c because
> function ide_cd_log_error() has its prototype declaration in ide-cd.h.
> Also, include linux/ide.h because it contains certain declarations
> necessary for including ide-cd.h.

    You should fix "ide-cd.h" if it depends on <linux/ide.h>, not the .c file 
including it.

> This eliminates the following warnings in ide-cd_verbose.c:
> drivers/ide/ide-cd_verbose.c:251:6: warning: no previous prototype for ‘ide_cd_log_error’ [-Wmissing-prototypes]

> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>

WBR, Sergei

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 19:42       ` Sergei Shtylyov
@ 2013-12-17 19:06         ` Borislav Petkov
  2013-12-18 13:23           ` Bartlomiej Zolnierkiewicz
  2013-12-18 18:35           ` Sergei Shtylyov
  0 siblings, 2 replies; 15+ messages in thread
From: Borislav Petkov @ 2013-12-17 19:06 UTC (permalink / raw)
  To: Sergei Shtylyov
  Cc: Josh Triplett, Rashika Kheria, linux-kernel, David S. Miller,
	linux-ide

On Tue, Dec 17, 2013 at 10:42:54PM +0300, Sergei Shtylyov wrote:
> You're right in your doubting: there are quite a lot of drivers used
> by embedded platforms that nobody has bothered to convert to libata
> thus far.

Hold on, what does that mean? IDE is back from the dead and used only
for embedded stuff?

Or we force people to convert drivers to libata by *deleting* ide?

:-)

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 17:54     ` Borislav Petkov
@ 2013-12-17 19:42       ` Sergei Shtylyov
  2013-12-17 19:06         ` Borislav Petkov
  0 siblings, 1 reply; 15+ messages in thread
From: Sergei Shtylyov @ 2013-12-17 19:42 UTC (permalink / raw)
  To: Borislav Petkov, Josh Triplett
  Cc: Rashika Kheria, linux-kernel, David S. Miller, linux-ide

Hello.

On 12/17/2013 08:54 PM, Borislav Petkov wrote:

>> The two proposed patches here are extremely low risk, don't actually
>> change the compiled code in any way like some of those did, and fix
>> real compiler warnings.

> Considering the fact that IDE is about to be deleted (unless something
> embedded still wants it which I hardly doubt

    You're right in your doubting: there are quite a lot of drivers used by 
embedded platforms that nobody has bothered to convert to libata thus far.

MBR, Sergei

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 19:06         ` Borislav Petkov
@ 2013-12-18 13:23           ` Bartlomiej Zolnierkiewicz
  2013-12-18 13:33             ` Borislav Petkov
  2013-12-18 18:35           ` Sergei Shtylyov
  1 sibling, 1 reply; 15+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2013-12-18 13:23 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Sergei Shtylyov, Josh Triplett, Rashika Kheria, linux-kernel,
	David S. Miller, linux-ide


Hi,

On Tuesday, December 17, 2013 08:06:10 PM Borislav Petkov wrote:
> On Tue, Dec 17, 2013 at 10:42:54PM +0300, Sergei Shtylyov wrote:
> > You're right in your doubting: there are quite a lot of drivers used
> > by embedded platforms that nobody has bothered to convert to libata
> > thus far.
> 
> Hold on, what does that mean? IDE is back from the dead and used only
> for embedded stuff?

No, it means that there are legacy PATA chipsets (some used by embedded
platforms) that are only supported by IDE host drivers.

> Or we force people to convert drivers to libata by *deleting* ide?
> 
> :-)

If there is a need I should be able to help in converting these leftover
drivers before we delete IDE.  Once I find some time I will go over all
IDE host drivers, make a list of affected hardware and start a discussion
on IDE removal.

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics


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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-18 13:23           ` Bartlomiej Zolnierkiewicz
@ 2013-12-18 13:33             ` Borislav Petkov
  0 siblings, 0 replies; 15+ messages in thread
From: Borislav Petkov @ 2013-12-18 13:33 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz
  Cc: Sergei Shtylyov, Josh Triplett, Rashika Kheria, linux-kernel,
	David S. Miller, linux-ide

Hey Bart,

long time no see! :-)

On Wed, Dec 18, 2013 at 02:23:52PM +0100, Bartlomiej Zolnierkiewicz wrote:
> No, it means that there are legacy PATA chipsets (some used by embedded
> platforms) that are only supported by IDE host drivers.

I know what it means - I was asking a provocative question. :)

> If there is a need I should be able to help in converting these
> leftover drivers before we delete IDE. Once I find some time I will go
> over all IDE host drivers, make a list of affected hardware and start
> a discussion on IDE removal.

While this is a generous offer, I'd leave it to the people who actually
need that functionality to do the conversion themselves. But this is
just me.

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 19:06         ` Borislav Petkov
  2013-12-18 13:23           ` Bartlomiej Zolnierkiewicz
@ 2013-12-18 18:35           ` Sergei Shtylyov
  1 sibling, 0 replies; 15+ messages in thread
From: Sergei Shtylyov @ 2013-12-18 18:35 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Josh Triplett, Rashika Kheria, linux-kernel, David S. Miller,
	linux-ide

On 12/17/2013 10:06 PM, Borislav Petkov wrote:

>> You're right in your doubting: there are quite a lot of drivers used
>> by embedded platforms that nobody has bothered to convert to libata
>> thus far.

> Hold on, what does that mean? IDE is back from the dead and used only
> for embedded stuff?

    Like jazz, IDE "is not dead, it just smells funny".

> Or we force people to convert drivers to libata by *deleting* ide?

    I hope not. To me, it would be a shame e.g. to delete more or less 
well-designed IDE taskfile interface to the ad-hockery that libata has in its 
place...

> :-)

WBR, Sergei

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

* Re: [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c
  2013-12-17 11:08 [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Rashika Kheria
                   ` (3 preceding siblings ...)
  2013-12-17 18:11 ` Sergei Shtylyov
@ 2014-01-29  7:36 ` David Miller
  4 siblings, 0 replies; 15+ messages in thread
From: David Miller @ 2014-01-29  7:36 UTC (permalink / raw)
  To: rashika.kheria; +Cc: linux-kernel, bp, linux-ide, josh

From: Rashika Kheria <rashika.kheria@gmail.com>
Date: Tue, 17 Dec 2013 16:38:16 +0530

> Include appropriate header file ide-cd.h in ide-cd_verbose.c because
> function ide_cd_log_error() has its prototype declaration in ide-cd.h.
> Also, include linux/ide.h because it contains certain declarations
> necessary for including ide-cd.h.
> 
> This eliminates the following warnings in ide-cd_verbose.c:
> drivers/ide/ide-cd_verbose.c:251:6: warning: no previous prototype for ‘ide_cd_log_error’ [-Wmissing-prototypes]
> 
> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>

Applied.

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

* Re: [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c
  2013-12-17 11:11 ` [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c Rashika Kheria
  2013-12-17 16:37   ` Josh Triplett
@ 2014-01-29  7:37   ` David Miller
  1 sibling, 0 replies; 15+ messages in thread
From: David Miller @ 2014-01-29  7:37 UTC (permalink / raw)
  To: rashika.kheria; +Cc: linux-kernel, linux-ide, josh

From: Rashika Kheria <rashika.kheria@gmail.com>
Date: Tue, 17 Dec 2013 16:41:11 +0530

> Include appropriate header file include/linux/ide.h in file
> ide-pio-blacklist.c because function ide_scan_pio_blacklist() has it's
> prototype declaration in include/linux/ide.h.
> 
> This eliminates the following warning in ide-pio-blacklist.c:
> drivers/ide/ide-pio-blacklist.c:85:5: warning: no previous prototype for ‘ide_scan_pio_blacklist’ [-Wmissing-prototypes]
> 
> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>

Applied.

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

end of thread, other threads:[~2014-01-29  7:37 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-17 11:08 [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Rashika Kheria
2013-12-17 11:11 ` [PATCH 2/2] drivers: ide: Include appropriate header file in ide-pio-blacklist.c Rashika Kheria
2013-12-17 16:37   ` Josh Triplett
2014-01-29  7:37   ` David Miller
2013-12-17 11:19 ` [PATCH 1/2] drivers: ide: Include appropriate header file in ide-cd_verbose.c Borislav Petkov
2013-12-17 16:44   ` Josh Triplett
2013-12-17 17:54     ` Borislav Petkov
2013-12-17 19:42       ` Sergei Shtylyov
2013-12-17 19:06         ` Borislav Petkov
2013-12-18 13:23           ` Bartlomiej Zolnierkiewicz
2013-12-18 13:33             ` Borislav Petkov
2013-12-18 18:35           ` Sergei Shtylyov
2013-12-17 16:37 ` Josh Triplett
2013-12-17 18:11 ` Sergei Shtylyov
2014-01-29  7:36 ` David Miller

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