Re: Support for OpenGL on r600/r700. Testing required.

2011-05-02 Thread Brynet
Thanks for sending this, it works on my Mobility Radeon HD 4250 (1002:9712). I updated to the most recent snapshot, updated my tree and applied the patch in your mail. You need to install the updated headers/includes, just copying radeon_drm.h to /usr/include/dev/pci/drm/ before make {obj,build}

adb(4)/pm_direct.c cleanup

2011-05-02 Thread Martin Pieuchot
On macppc, the pm_* methods are always attached to a PMU (or PMU99), so no need to check for hardware. Tested here with a powerbook6,5. Ok? Index: dev/adb.c === RCS file: /cvs/src/sys/arch/macppc/dev/adb.c,v retrieving revision 1.29

pf(4) man page: include missing header in example program

2011-05-02 Thread Lawrence Teo
The DIOCNATLOOK example program at the end of the pf(4) man page uses memset(3), but string.h is not included. The following diff fixes this. Any thoughts? Thanks, Lawrence Index: pf.4 === RCS file: /cvs/src/share/man/man4/pf.4,v re

Support for OpenGL on r600/r700. Testing required.

2011-05-02 Thread Owain Ainsworth
The following diff provides the kernel support necessary for OpenGL to work on R600 and R700 radeon chipsets. One caveat: the drm doesn't have interrupt support yet (this involves another firmware (making 3 per chipset for r600+) and a rather funky ringbuffer for interrupt events (yes, this is str

Re: Remove useless sti in x86 interrupt return path

2011-05-02 Thread Mark Kettenis
> Date: Mon, 2 May 2011 19:21:40 +0200 > From: Christian Ehrhardt > > Hello Mark, > > On Mon, May 02, 2011 at 05:42:10PM +0200, Mark Kettenis wrote: > > > Date: Tue, 19 Apr 2011 15:43:01 +0200 > > > From: Christian Ehrhardt > > > > > > Hi, > > > > > > On Mon, Apr 18, 2011 at 10:00:02PM -0700,

�a�p�Ĥ]���ȿ�~~~~

2011-05-02 Thread danny952178
>>ENTER<<

Re: Remove useless sti in x86 interrupt return path

2011-05-02 Thread Christian Ehrhardt
Hello Mark, On Mon, May 02, 2011 at 05:42:10PM +0200, Mark Kettenis wrote: > > Date: Tue, 19 Apr 2011 15:43:01 +0200 > > From: Christian Ehrhardt > > > > Hi, > > > > On Mon, Apr 18, 2011 at 10:00:02PM -0700, Philip Guenther wrote: > > > > The sti was introduced in revision 1.97 of locore.s in M

Re: ksh completion

2011-05-02 Thread Matthew Dempsky
On Mon, May 2, 2011 at 7:19 AM, Alexander Polakov wrote: > Do you mean something like this or I got it all wrong again and we > have to wait another 15 years for someone to dig into this? I think ksh could really benefit from some regression tests to check that tab completion is behaving sanely.

adduser.8 - EXAMPLES update

2011-05-02 Thread Mark Lumsden
This diff modifies the adduser.8 EXAMPLES section to be more inline with the rest of the man page. 1. Passwords typed on the command line should ideally be put through encrypt(1) (unless -unencrypted is used) 2. Welcome messages are not on by default now. Therefore must be explicity set wi

Re: Remove useless sti in x86 interrupt return path

2011-05-02 Thread Mark Kettenis
> Date: Tue, 19 Apr 2011 15:43:01 +0200 > From: Christian Ehrhardt > > Hi, > > On Mon, Apr 18, 2011 at 10:00:02PM -0700, Philip Guenther wrote: > > > The sti was introduced in revision 1.97 of locore.s in March 2006 by > > > mickey@. Commit message: > > > > > > | prevent the faults on iret to ru

Re: ksh completion

2011-05-02 Thread Alexander Polakov
* Martynas Venckus [110410 05:17]: > > hi, > > > > (this is a re-post) > > > > make tab completion work for '=', '`', '[', ':', and '$' - pulled from > > mksh by Alexander Polakov (also posted to tech recently). > > > > closes pr 6006 too. > > > > comments/ok? > > The diff is a workaround and eve

Re: alc(4) support for Atheros AR815x

2011-05-02 Thread Edd Barrett
On Mon, May 02, 2011 at 11:02:41AM +0100, Stuart Henderson wrote: > On 2011/05/02 01:16, Edd Barrett wrote: > > On Sun, May 01, 2011 at 08:10:56PM +0100, Stuart Henderson wrote: > > > On 2011/05/01 18:35, Edd Barrett wrote: > > > > I have acquired a netboot (packard bell dot s), which I think uses

Re: Radeon HD3000

2011-05-02 Thread Owain Ainsworth
On Sun, Apr 03, 2011 at 10:47:15PM +0100, Pedro la Peu wrote: > Indeed, thanks Brad. > > Index: sys/dev/pci/pcidevs > === > RCS file: /cvs/src/sys/dev/pci/pcidevs,v > retrieving revision 1.1592 > diff -u -p -r1.1592 pcidevs > --- sys/

Vicentico y Los Fabulosos Cadillacs mas Pendrive de Regalo

2011-05-02 Thread Discos MP3 - SoloDeOferta
Los Fabulosos CadillacsBares y Fondasp Yo Te Avisé!h El SatánicoDr. CadillacsLos FabulososCadillacs Vol.5Sopa DeCaracolEl LeonVVasosVacíosEn Vivo enBuenos AiressRey AzúcaroLos Fabulosos Calaveras20 GrandesExitoso La Marcha del GolazoSolitarioo aHolaa aChaua La Luz del RitmooAkustic LocoDe Fabulosos

Re: alc(4) support for Atheros AR815x

2011-05-02 Thread Stuart Henderson
On 2011/05/02 01:16, Edd Barrett wrote: > On Sun, May 01, 2011 at 08:10:56PM +0100, Stuart Henderson wrote: > > On 2011/05/01 18:35, Edd Barrett wrote: > > > I have acquired a netboot (packard bell dot s), which I think uses this > > > NIC. Is > > > there an updated diff? > > > > Yes I just took

Re: malloc: speedup chunk housekeeping

2011-05-02 Thread Otto Moerbeek
On Mon, May 02, 2011 at 10:09:29AM +0200, Otto Moerbeek wrote: > Hi, > > Currently, malloc scans the bits of the chunk bitmap from position > zero, skipping a random number (n) of free slots and then picking the > next free one. This slows things down, especially if the number of > full slots dim

malloc: speedup chunk housekeeping

2011-05-02 Thread Otto Moerbeek
Hi, Currently, malloc scans the bits of the chunk bitmap from position zero, skipping a random number (n) of free slots and then picking the next free one. This slows things down, especially if the number of full slots diminishes. This diff changes the scannning to start at a random position in

Re: alc(4) support for Atheros AR815x

2011-05-02 Thread Kevin Lo
On Sun, 2011-05-01 at 18:35 +0100, Edd Barrett wrote: > On Thu, Apr 28, 2011 at 07:21:16AM +1000, Jonathan Gray wrote: > > On Tue, Jan 25, 2011 at 06:24:28PM +0800, Kevin Lo wrote: > > > Hi, > > > > > > The following diff adds support for Atheros AR8151/AR8152 chipsets; > > > mostly from FreeBSD.

Re: pf.conf(5) man page "set limit" BNF fix

2011-05-02 Thread Jason McIntyre
On Sun, May 01, 2011 at 08:40:39PM -0400, Lawrence Teo wrote: > PF's "set limit" option allows five memory pools to be specified > (states, frags, src-nodes, tables, and table-entries); however, the > pf.conf BNF grammar specification on the pf.conf(5) man page only > lists three. > > The followin