* [patch 0/5 salinfo-0.6] summary
@ 2004-10-04 6:23 Keith Owens
2004-10-04 15:45 ` Bjorn Helgaas
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Keith Owens @ 2004-10-04 6:23 UTC (permalink / raw)
To: linux-ia64
The next 5 patches update salinfo from 0.5 to 0.6. The complete
tarball can be found at ftp://ftp.ocs.com.au:/pub/salinfo-0.6.tar.gz.
If Bjorn accepts this update then it will move to
ftp://ftp.kernel.org/pub/linux/kernel/people/helgaas/salinfo-0.6.tar.gz.
cleanup Remove some dead code from salinfo 0.5, mainly from SuSE
logrotate Use a better method of log rotation
kernel-clear Handle Ben Woodward's incompatible kernel change in 2.6.9-rc3
output Stop stdout and stderr stamping on each other
version Bump the version to 0.6
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 0/5 salinfo-0.6] summary
2004-10-04 6:23 [patch 0/5 salinfo-0.6] summary Keith Owens
@ 2004-10-04 15:45 ` Bjorn Helgaas
2004-10-04 16:02 ` Bjorn Helgaas
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Bjorn Helgaas @ 2004-10-04 15:45 UTC (permalink / raw)
To: linux-ia64
On Monday 04 October 2004 12:23 am, Keith Owens wrote:
> The next 5 patches update salinfo from 0.5 to 0.6. The complete
> tarball can be found at ftp://ftp.ocs.com.au:/pub/salinfo-0.6.tar.gz.
> If Bjorn accepts this update then it will move to
> ftp://ftp.kernel.org/pub/linux/kernel/people/helgaas/salinfo-0.6.tar.gz.
>
> cleanup Remove some dead code from salinfo 0.5, mainly from SuSE
> logrotate Use a better method of log rotation
> kernel-clear Handle Ben Woodward's incompatible kernel change in 2.6.9-rc3
> output Stop stdout and stderr stamping on each other
> version Bump the version to 0.6
Looks good to me. I put it on kernel.org.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 0/5 salinfo-0.6] summary
2004-10-04 6:23 [patch 0/5 salinfo-0.6] summary Keith Owens
2004-10-04 15:45 ` Bjorn Helgaas
@ 2004-10-04 16:02 ` Bjorn Helgaas
2004-10-05 1:42 ` Keith Owens
2004-10-05 15:44 ` Bjorn Helgaas
3 siblings, 0 replies; 5+ messages in thread
From: Bjorn Helgaas @ 2004-10-04 16:02 UTC (permalink / raw)
To: linux-ia64
By the way, I hear grumbling from neighboring cubes about
the colons in the log file names, because it makes it hard
to move the files to Windows (HP's log analysis tools are
Windows-based).
How much of a hassle would it be if we changed the colons
to underscores or something?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 0/5 salinfo-0.6] summary
2004-10-04 6:23 [patch 0/5 salinfo-0.6] summary Keith Owens
2004-10-04 15:45 ` Bjorn Helgaas
2004-10-04 16:02 ` Bjorn Helgaas
@ 2004-10-05 1:42 ` Keith Owens
2004-10-05 15:44 ` Bjorn Helgaas
3 siblings, 0 replies; 5+ messages in thread
From: Keith Owens @ 2004-10-05 1:42 UTC (permalink / raw)
To: linux-ia64
On Mon, 4 Oct 2004 10:02:18 -0600,
Bjorn Helgaas <bjorn.helgaas@hp.com> wrote:
>By the way, I hear grumbling from neighboring cubes about
>the colons in the log file names, because it makes it hard
>to move the files to Windows (HP's log analysis tools are
>Windows-based).
>
>How much of a hassle would it be if we changed the colons
>to underscores or something?
Windows - yuck!
Do you want to add this to 0.6 or bump the version to 0.7?
Index: salinfo-0.6/salinfo_decode.c
=================================--- salinfo-0.6.orig/salinfo_decode.c Mon Oct 4 16:04:03 2004
+++ salinfo-0.6/salinfo_decode.c Tue Oct 5 10:49:38 2004
@@ -260,7 +260,7 @@ talk_to_sal (const char *type, const cha
for (suffix = 0; ; ++suffix) {
snprintf(filename, sizeof(filename),
- "%s/raw/%02x%02x-%02x-%02x-%02x:%02x:%02x-cpu%d-%s.%d",
+ "%s/raw/%02x%02x-%02x-%02x-%02x_%02x_%02x-cpu%d-%s.%d",
directory,
buffer->timestamp.slh_century,
buffer->timestamp.slh_year,
@@ -291,7 +291,7 @@ talk_to_sal (const char *type, const cha
close(fd);
snprintf(filename, sizeof(filename),
- "%s/decoded/%02x%02x-%02x-%02x-%02x:%02x:%02x-cpu%d-%s.%d",
+ "%s/decoded/%02x%02x-%02x-%02x-%02x_%02x_%02x-cpu%d-%s.%d",
directory,
buffer->timestamp.slh_century,
buffer->timestamp.slh_year,
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 0/5 salinfo-0.6] summary
2004-10-04 6:23 [patch 0/5 salinfo-0.6] summary Keith Owens
` (2 preceding siblings ...)
2004-10-05 1:42 ` Keith Owens
@ 2004-10-05 15:44 ` Bjorn Helgaas
3 siblings, 0 replies; 5+ messages in thread
From: Bjorn Helgaas @ 2004-10-05 15:44 UTC (permalink / raw)
To: linux-ia64
On Monday 04 October 2004 7:42 pm, Keith Owens wrote:
> On Mon, 4 Oct 2004 10:02:18 -0600,
> Bjorn Helgaas <bjorn.helgaas@hp.com> wrote:
> >By the way, I hear grumbling from neighboring cubes about
> >the colons in the log file names, because it makes it hard
> >to move the files to Windows (HP's log analysis tools are
> >Windows-based).
> >
> >How much of a hassle would it be if we changed the colons
> >to underscores or something?
>
> Windows - yuck!
Yeah, I know :-( But if we can make interoperability easier
without screwing up existing users, it seems reasonable.
> Do you want to add this to 0.6 or bump the version to 0.7?
I made a 0.7 with that patch. Thanks!
ftp://ftp.kernel.org/pub/linux/kernel/people/helgaas/salinfo-0.7.tar.gz
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-10-05 15:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-04 6:23 [patch 0/5 salinfo-0.6] summary Keith Owens
2004-10-04 15:45 ` Bjorn Helgaas
2004-10-04 16:02 ` Bjorn Helgaas
2004-10-05 1:42 ` Keith Owens
2004-10-05 15:44 ` Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox