lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 6 Feb 2007 22:17:46 +0100
From:	Ondrej Zajicek <santiago@...reenet.org>
To:	Jiri Slaby <jirislaby@...il.com>
Cc:	James Simmons <jsimmons@...radead.org>,
	Andrew Morton <akpm@...l.org>, linux-kernel@...r.kernel.org,
	linux-fbdev-devel@...ts.sourceforge.net
Subject: Re: [PATCH] fbdev driver for S3 Trio/Virge


On Mon, Feb 05, 2007 at 11:33:12PM +0100, Jiri Slaby wrote:                                                             
> Ondrej Zajicek napsal(a):
> >This patch adds driver for S3 Trio / S3 Virge. Driver is tested
> >with most versions of S3 Trio and S3 Virge, on i386.
> >It is tested both as compiled-in and module. It is against
> >linux-2.6.20 .

Thank you for comments. I appreciated them.

> >+#ifdef CONFIG_MTRR
> >+#include <asm/mtrr.h>
> >+#endif
> 
> Why ifdef? It's ifdeffed in the header itself.

But this header is only available on some archs, isn't it?

> >+static int s3fb_open(struct fb_info *info, int user)
> >+{
> >+	struct s3fb_info *par = (struct s3fb_info *) info;
> >+	unsigned int count = atomic_read(&(par->ref_count));
> >+
> >+	if (!count) {
> 
> bad
> 
> >+		memset(&(par->state), 0, sizeof(struct vgastate));
> >+		par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | 
> >VGA_SAVE_CMAP;
> >+		par->state.num_crtc = 0x70;
> >+		par->state.num_seq = 0x20;
> >+		save_vga(&(par->state));
> >+	}
> >+
> >+	atomic_inc(&(par->ref_count));
> >+
> >+	return 0;
> >+}

This pattern is in several fbdev drivers (neofb, i810fb, rivafb, vga16fb).
I understand the problem but i am not sure what is the best solution.
Maybe acquire/release console semaphore before/after s3fb_open?

> >+static int s3fb_release(struct fb_info *info, int user)
> >+{
> >+	struct s3fb_info *par = (struct s3fb_info *) info;
> 
> Use container_of for this (and below/above).

Isn't container_of overkill for this case?

> >+struct vga_regset {
> >+	__u8 regnum;
> >+	__u8 lowbit;
> >+	__u8 highbit;
> 
> You use no __ variants, why __u8 here?

No reason. I will replace it to u8, which is more appropriate.

-- 
Ondrej 'SanTiago' Zajicek (email: santiago@...l.cz, jabber: santiago@....netlab.cz)
OpenPGP encrypted e-mails preferred (KeyID 0x11DEADC3, wwwkeys.pgp.net)
"To err is human -- to blame it on a computer is even more so."
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ