Re: Unlock the reaper

2015-07-08 Thread Adam Wolk
On Wed, 8 Jul 2015 22:20:49 +0100 Stuart Henderson wrote: > On 2015/07/08 20:00, Max Fillinger wrote: > > On Wed, Jul 08, 2015 at 03:53:46PM +0200, Mark Kettenis wrote: > > > I'm looking for testers for this diff. This should be safe to > > > run on amd64, i386 and sparc64. But has been reporte

Re: Unlock the reaper

2015-07-08 Thread Stuart Henderson
On 2015/07/08 20:00, Max Fillinger wrote: > On Wed, Jul 08, 2015 at 03:53:46PM +0200, Mark Kettenis wrote: > > I'm looking for testers for this diff. This should be safe to run on > > amd64, i386 and sparc64. But has been reported to lock up i386 > > machines. I can't reproduce this on any of my

Re: Unlock the reaper

2015-07-08 Thread Timo Myyrä
Mark Kettenis writes: > I'm looking for testers for this diff. This should be safe to run on > amd64, i386 and sparc64. But has been reported to lock up i386 > machines. I can't reproduce this on any of my own systems. So I'm > looking for help. I'm looking for people that are able to build

Re: Unused arguments in nd6_nud_hint()

2015-07-08 Thread Claudio Jeker
On Wed, Jul 08, 2015 at 11:02:44AM +0200, Martin Pieuchot wrote: > I'd like to remove unused/NULL arguments from nd6_nud_hint() in order to > get rid of a nd6_lookup(). > > Ok? Do it. OK claudio > Index: netinet/tcp_input.c > === >

Re: Unlock the reaper

2015-07-08 Thread Max Fillinger
On Wed, Jul 08, 2015 at 03:53:46PM +0200, Mark Kettenis wrote: > I'm looking for testers for this diff. This should be safe to run on > amd64, i386 and sparc64. But has been reported to lock up i386 > machines. I can't reproduce this on any of my own systems. So I'm > looking for help. I'm loo

Food costs rising? See what Taylor Street Pizza did about it

2015-07-08 Thread Jennifer Smith
Bright Window Signs Attract More Customers. As with most restaurateurs, increasing costs had Shaun Kanchwala facing some very tough choices: use cheaper ingredients, accept reduced profits, or increase prices and risk losing customers. “If you think about it, I really had no alternative,” says

LibreSSL 2.2.1 released

2015-07-08 Thread Brent Cook
We have released LibreSSL 2.2.1, which will be arriving in the LibreSSL directory of your local OpenBSD mirror soon. This release continues from the OpenBSD 5.8 development tree, featuring expanded OS support, code improvements, and feature removal. Also note that SSLv3 support has not been remove

hppa pmap diff

2015-07-08 Thread Mark Kettenis
This is a first step towards making the hppa pmap mpsafe. Don't have an MP hppa system myself, so I would appreciate it someone can give this a go. It also enables some debug printfs. So if you give this a spin, please check if you see any "pmap_destroy" messages in dmesg. Index: hppa/pmap.c =

Re: Unlock the reaper

2015-07-08 Thread Mark Kettenis
> Date: Wed, 8 Jul 2015 15:17:46 +0100 > From: Stuart Henderson > > On 2015/07/08 15:53, Mark Kettenis wrote: > > Index: uvm_map.c > .. > > @@ -2466,8 +2470,7 @@ uvm_map_teardown(struct vm_map *map) > > if ((entry = RB_ROOT(&map->addr)) != NULL) > > DEAD_ENTRY_PUSH(&dead_entries,

Re: Unlock the reaper

2015-07-08 Thread Stuart Henderson
On 2015/07/08 15:53, Mark Kettenis wrote: > Index: uvm_map.c .. > @@ -2466,8 +2470,7 @@ uvm_map_teardown(struct vm_map *map) > if ((entry = RB_ROOT(&map->addr)) != NULL) > DEAD_ENTRY_PUSH(&dead_entries, entry); > while (entry != NULL) { > - if (waitok) > -

Microsoft Now OpenBSD Foundation Gold Contributor

2015-07-08 Thread Kenneth R Westerback
The OpenBSD Foundation is happy to announce that Microsoft has made a significant financial donation to the Foundation. This donation is in recognition of the role of the Foundation in supporting the OpenSSH project. This donation makes Microsoft the first Gold level contributor in the OpenBSD Foun

Unlock the reaper

2015-07-08 Thread Mark Kettenis
I'm looking for testers for this diff. This should be safe to run on amd64, i386 and sparc64. But has been reported to lock up i386 machines. I can't reproduce this on any of my own systems. So I'm looking for help. I'm looking for people that are able to build a kernel with this diff and the

Re: faq/current.html: Mention sudo removal

2015-07-08 Thread Jérémie Courrèges-Anglas
Max Fillinger writes: > On Sat, Jul 04, 2015 at 01:40:00PM +1000, Steven McDonald wrote: >> +sudo(8) has been removed from the base OS. >> +The old binaries and manual pages should be removed: >> + >> + rm -f /usr/bin/sudo /usr/bin/sudoedit /usr/sbin/visudo >> + rm -f /usr/share/man/m

Re: Add 5th gen Intel HD Graphics (GT1)

2015-07-08 Thread Jonathan Gray
On Wed, Jul 08, 2015 at 09:48:36AM +0200, Mark Patruck wrote: > Intel HD Graphics (GT1) found on the 5th gen Broadwells. > > We already have the bigger ones but the smallest GT1 with 12EUs > is missing. Test on my board OK (no drm right now of course) I was hoping marketing names would appear for

[patch] xlocale part 3: move _CurrentRuneLocale to locale_t (ctype)

2015-07-08 Thread Sebastien Marie
The patch move _CurrentRuneLocale global variable (which hold ctype support) to locale_t. - remove the global variable - move initialisation to struct _locale_t - add locale_t parameter to several internal functions - use _current_locale() for get the current locale when using iswalpha(3) and co

[patch] xlocale part 2: move current_categories from setlocale.c to locale_t

2015-07-08 Thread Sebastien Marie
Here a simple patch to move current_categories[][] array, that embed the current locale names for each categories (LC_CTYPE, LC_MESSAGES, LC_..), from global static variable in locale/setlocale.c to the struct _locale_t. All the logic is to move the reference of static global variable to global st

Unused arguments in nd6_nud_hint()

2015-07-08 Thread Martin Pieuchot
I'd like to remove unused/NULL arguments from nd6_nud_hint() in order to get rid of a nd6_lookup(). Ok? Index: netinet/tcp_input.c === RCS file: /cvs/src/sys/netinet/tcp_input.c,v retrieving revision 1.293 diff -u -p -r1.293 tcp_inpu

Re: faq/current.html: Mention sudo removal

2015-07-08 Thread Max Fillinger
On Sat, Jul 04, 2015 at 01:40:00PM +1000, Steven McDonald wrote: > +sudo(8) has been removed from the base OS. > +The old binaries and manual pages should be removed: > + > + rm -f /usr/bin/sudo /usr/bin/sudoedit /usr/sbin/visudo > + rm -f /usr/share/man/man8/sudo.8 /usr/share/man/man8/

doubled words in libcrypto manuals

2015-07-08 Thread Theo Buehler
While dabbling with J. Friedl's script for detecting doubled words in his "Mastering Regular Expressions" book, I found these four instances of doubled words. Three of these are completely straightforward: EC_GROUP_copy.pod: the the EC_KEY_new.pod: have have d2i_X509_NAME.pod: the the However, t

Add 5th gen Intel HD Graphics (GT1)

2015-07-08 Thread Mark Patruck
Intel HD Graphics (GT1) found on the 5th gen Broadwells. We already have the bigger ones but the smallest GT1 with 12EUs is missing. Test on my board OK (no drm right now of course) Index: pcidevs === RCS file: /cvs/src/sys/dev/pci/

[patch] xlocale part 1: minimal locale_t support

2015-07-08 Thread Sebastien Marie
Hi, I have a serie of patches for adding support of xlocale in libc (10 currently, but not completely terminated) I want to be reviewed for comments and OK. I intend to commit them all at same time and after 5.8 lock I think. They will need a libc major bump, and some bluk build of ports too befo