Module Name:    src
Committed By:   rin
Date:           Sun Oct 18 12:47:37 UTC 2020

Modified Files:
        src/sys/dev/wsfb: genfb.c

Log Message:
Revert rev 1.75; do not set WSFB_VRAM_IS_RAM flag bit. It indicates
memory type obtained by mmap. I just misunderstood its intention.

Thanks to jmcneill for pointing it out!


To generate a diff of this commit:
cvs rdiff -u -r1.76 -r1.77 src/sys/dev/wsfb/genfb.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/wsfb/genfb.c
diff -u src/sys/dev/wsfb/genfb.c:1.76 src/sys/dev/wsfb/genfb.c:1.77
--- src/sys/dev/wsfb/genfb.c:1.76	Sun Oct 18 12:00:12 2020
+++ src/sys/dev/wsfb/genfb.c	Sun Oct 18 12:47:37 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: genfb.c,v 1.76 2020/10/18 12:00:12 rin Exp $ */
+/*	$NetBSD: genfb.c,v 1.77 2020/10/18 12:47:37 rin Exp $ */
 
 /*-
  * Copyright (c) 2007 Michael Lorenz
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.76 2020/10/18 12:00:12 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.77 2020/10/18 12:47:37 rin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -499,12 +499,7 @@ genfb_ioctl(void *v, void *vs, u_long cm
 	
 		case WSDISPLAYIO_GET_FBINFO: {
 			struct wsdisplayio_fbinfo *fbi = data;
-			ret = wsdisplayio_get_fbinfo(&ms->scr_ri, fbi);
-			if (ret == 0) {
-				if (sc->sc_enable_shadowfb)
-					fbi->fbi_flags |= WSFB_VRAM_IS_RAM;
-			}
-			return ret;
+			return wsdisplayio_get_fbinfo(&ms->scr_ri, fbi);
 		}
 	}
 	return EPASSTHROUGH;

Reply via email to