From: "Ph. Marek" <philipp.marek@bmlv.gv.at>
To: David Mosberger <davidm@napali.hpl.hp.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCHes available] printk() without KERN_ prefixes? (in 2.5.59) (again)
Date: Tue, 4 Feb 2003 08:36:04 +0100 [thread overview]
Message-ID: <200302040836.04151.philipp.marek@bmlv.gv.at> (raw)
In-Reply-To: <200302031656.h13Gu7lV029203@napali.hpl.hp.com>
[-- Attachment #1: Type: text/plain, Size: 3835 bytes --]
Hello David!
> If you send me the summary for the ia64-specific files, I'll take a look at
> fixing them (well, perhaps not all of them right away; might be a lot of
> work).
>
> --david
I've let my script run through the arch/ia64-directory; it had problems parsing the files
./arch/ia64/sn/io/sn1/pcibr.c in pcibr_slot_info_init
and
./arch/ia64/sn/io/sn2/pcibr/pcibr_error.c in pcibr_pioerror
because of this constructs:
#ifdef LITTLE_ENDIAN
(wptr[(((win + 1)*4)^4)/4] != 0)) {
#else
(wptr[win + 1] != 0)) {
#endif /* LITTLE_ENDIAN */
(the braces { and } don't add up in the file).
I have to admit that I didn't look at
every single line of this patch; but I believe in my script :-)
Attached is a patch, and below is the diffstat.
Thank you!
Regards,
Phil
diffstat printk_arch_ia64.patch
dig/setup.c | 2 -
hp/common/sba_iommu.c | 10 +++---
hp/sim/simeth.c | 18 +++++------
hp/sim/simscsi.c | 8 ++---
hp/sim/simserial.c | 46 ++++++++++++++---------------
ia32/ia32_ioctl.c | 2 -
kernel/acpi.c | 22 +++++++-------
kernel/brl_emu.c | 2 -
kernel/efi.c | 14 ++++----
kernel/iosapic.c | 16 +++++-----
kernel/irq.c | 8 ++---
kernel/irq_ia64.c | 2 -
kernel/machvec.c | 2 -
kernel/mca.c | 16 +++++-----
kernel/palinfo.c | 18 +++++------
kernel/perfmon.c | 48 +++++++++++++++---------------
kernel/perfmon_mckinley.h | 2 -
kernel/process.c | 36 +++++++++++-----------
kernel/sal.c | 6 +--
kernel/setup.c | 8 ++---
kernel/smpboot.c | 16 +++++-----
kernel/time.c | 12 +++----
kernel/traps.c | 6 +--
kernel/unaligned.c | 2 -
kernel/unwind.c | 14 ++++----
lib/swiotlb.c | 2 -
mm/discontig.c | 2 -
mm/fault.c | 2 -
mm/init.c | 34 ++++++++++-----------
sn/io/ate_utils.c | 2 -
sn/io/cdl.c | 2 -
sn/io/eeprom.c | 6 +--
sn/io/hcl.c | 14 ++++----
sn/io/hubspc.c | 2 -
sn/io/ifconfig_net.c | 6 +--
sn/io/io.c | 10 +++---
sn/io/klgraph_hack.c | 14 ++++----
sn/io/l1.c | 2 -
sn/io/pci_bus_cvlink.c | 60 +++++++++++++++++++-------------------
sn/io/pciba.c | 12 +++----
sn/io/pciio.c | 6 +--
sn/io/sgi_if.c | 2 -
sn/io/sn1/hubcounters.c | 6 +--
sn/io/sn1/huberror.c | 2 -
sn/io/sn1/ml_SN_intr.c | 2 -
sn/io/sn1/pcibr.c | 24 +++++++--------
sn/io/sn2/ml_SN_intr.c | 4 +-
sn/io/sn2/pcibr/pcibr_ate.c | 2 -
sn/io/sn2/pcibr/pcibr_dvr.c | 6 +--
sn/io/sn2/pcibr/pcibr_error.c | 40 ++++++++++++-------------
sn/io/sn2/pcibr/pcibr_intr.c | 4 +-
sn/io/sn2/shub_intr.c | 2 -
sn/io/sn2/shuberror.c | 6 +--
sn/io/xbow.c | 10 +++---
sn/kernel/irq.c | 2 -
sn/kernel/llsc4.c | 58 ++++++++++++++++++------------------
sn/kernel/misctest.c | 56 +++++++++++++++++------------------
sn/kernel/setup.c | 2 -
sn/kernel/sn1/error.c | 2 -
sn/kernel/sn1/sn1_smp.c | 2 -
sn/kernel/sn1/synergy.c | 12 +++----
sn/kernel/sv.c | 66 +++++++++++++++++++++---------------------
63 files changed, 411 insertions(+), 411 deletions(-)
[-- Attachment #2: printk_arch_ia64.patch.bz2 --]
[-- Type: application/x-bzip2, Size: 26007 bytes --]
next parent reply other threads:[~2003-02-04 7:30 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200302031656.h13Gu7lV029203@napali.hpl.hp.com>
2003-02-04 7:36 ` Ph. Marek [this message]
[not found] ` <20030204104017.GL5239@riesen-pc.gr05.synopsys.com>
2003-02-04 10:58 ` Ph. Marek
[not found] ` <15936.25597.385522.451879@napali.hpl.hp.com>
2003-02-05 7:29 ` Ph. Marek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200302040836.04151.philipp.marek@bmlv.gv.at \
--to=philipp.marek@bmlv.gv.at \
--cc=davidm@napali.hpl.hp.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®