> printk("-3\n");
> printk("%p\n", *cmdline_p);
> printk("%s\n", *cmdline_p);
> strcpy(*cmdline_p,saved_command_line); // copy the command-line
> printk("-2\n");
>
> I get the following printout:
>
> setup_arch(000a0860, 000767e0, 000767e4)
> -3
> f000013c
> zC
f000013c is in I/O space. Is the command line really meant to point into
I/O space..