Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Mar 2006 04:16:07 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 93957 for review
Message-ID:  <200603250416.k2P4G7WT046412@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=93957

Change 93957 by kmacy@kmacy_storage:sun4vtmp on 2006/03/25 04:15:57

	make sure ino is typesafe

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/vnex.c#2 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/vnex.c#2 (text+ko) ====

@@ -244,7 +244,7 @@
        
 	cfg = SUN4V_REG_SPEC2CFG_HDL(reg);
 
-	if (hvio_intr_devino_to_sysino(cfg, ino, &ihdl) != H_EOK) {
+	if (hvio_intr_devino_to_sysino(cfg, (uint32_t)ino, &ihdl) != H_EOK) {
 		error = ENXIO;
 		goto fail;
 	}



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