Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Jul 1999 10:20:39 +0200
From:      Poul-Henning Kamp <phk@critter.freebsd.dk>
To:        "Gary Palmer" <gpalmer@FreeBSD.ORG>
Cc:        freebsd-current@FreeBSD.ORG
Subject:   Re: Patch for Alpha/AXP 
Message-ID:  <44340.932804439@critter.freebsd.dk>
In-Reply-To: Your message of "Sat, 24 Jul 1999 03:20:43 EDT." <83883.932800843@noop.colo.erols.net> 

next in thread | previous in thread | raw e-mail | index | archive | help

Yes, looks right.

In message <83883.932800843@noop.colo.erols.net>, "Gary Palmer" writes:
>
>Does this look right? Without this patch, my AXP was memory faulting
>every time it booted, in the dev2udev routine. 
>
>Thanks
>
>
>Index: alpha/alpha/cons.c
>===================================================================
>RCS file: /home/ncvs/src/sys/alpha/alpha/cons.c,v
>retrieving revision 1.11
>diff -u -r1.11 cons.c
>--- cons.c      1999/06/22 14:13:16     1.11
>+++ cons.c      1999/07/24 07:18:25
>@@ -88,9 +88,8 @@
> };
> 
> static dev_t   cn_dev_t;       /* seems to be never really used */
>-static udev_t  cn_udev_t;
> SYSCTL_OPAQUE(_machdep, CPU_CONSDEV, consdev, CTLFLAG_RD,
>-       &cn_udev_t, sizeof cn_udev_t, "T,dev_t", "");
>+       &cn_dev_t, sizeof cn_dev_t, "T,dev_t", "");
> 
> static int cn_mute;
> 
>@@ -185,7 +184,6 @@
>        cdp->d_open = cnopen;
>        cn_tp = (*cdp->d_devtotty)(cn_tab->cn_dev);
>        cn_dev_t = cn_tp->t_dev;
>-       cn_udev_t = dev2udev(cn_dev_t);
> }
> 
> static void
>@@ -206,7 +204,6 @@
>        cn_phys_open = NULL;
>        cn_tp = NULL;
>        cn_dev_t = 0;
>-       cn_udev_t = dev2udev(cn_dev_t);
> }
> 
> /*
>
>
>To Unsubscribe: send mail to majordomo@FreeBSD.org
>with "unsubscribe freebsd-current" in the body of the message
>

--
Poul-Henning Kamp             FreeBSD coreteam member
phk@FreeBSD.ORG               "Real hackers run -current on their laptop."
FreeBSD -- It will take a long time before progress goes too far!


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?44340.932804439>