kdb
[Top] [All Lists]

kdba_io

To: jbarnes@xxxxxxx, kdb@xxxxxxxxxxx
Subject: kdba_io
From: Christoph Hellwig <hch@xxxxxxxxxxxxx>
Date: Tue, 5 Aug 2003 13:44:42 +0100
Sender: kdb-bounce@xxxxxxxxxxx
User-agent: Mutt/1.2.5.1i
Currently there's a file arch/ia64/sn/io/sn2/kdba_io.c for SN2 that contains
a single kdb command, 'io'.

The implementation is:

static int
kdba_io(int argc, const char **argv, const char **envp, struct pt_regs *regs)
{
        kdb_printf("kdba_io entered with addr 0x%p\n", (void *) regs);
        
        return(0);
}

which collides a bit with the description ontop of it.  Is there a real use
for this or can we just kill it.  Or should it be moved to generic code
with a less confusing name?  (couldn't imagine why)

<Prev in Thread] Current Thread [Next in Thread>
  • kdba_io, Christoph Hellwig <=