PATCH: azalia(4) invalid index crash

2014-12-25 Thread Alexey Suslikov
Hi tech@. See http://marc.info/?l=openbsd-bugsm=141867088702648w=2 Reported by t...@openmailbox.org, John M. Molloy moll...@acm.org and confirmed this diff to fix an issue. --- azalia.c.orig Mon Dec 15 23:23:14 2014 +++ azalia.cWed Dec 17 13:42:41 2014 @@ -2348,14 +2348,23 @@

PATCH: more of airport

2014-12-25 Thread Alexey Suslikov
Hi tech@. Fixing existing names, plus some new. --- airport.origWed Dec 17 14:16:04 2014 +++ airport Wed Dec 17 14:25:51 2014 @@ -328,6 +328,7 @@ CJB:Peelamedu, Coimbatore, India CJS:International Abraham Gonzalez, Ciudad Juarez, Chihuahua, Mexico CJU:Cheju, Cheju, South Korea

[PATCH] add TMP to /usr/share/misc/airport

2014-12-25 Thread Timo Myyrä
Hi, Noticed that Tampere airport is missing from the list. Timo Index: airport === RCS file: /cvs/src/share/misc/airport,v retrieving revision 1.44 diff -u -r1.44 airport --- airport 7 Dec 2014 22:54:05 - 1.44 +++

Flipping bits in memory without accessing them: An experimental study of DRAM disturbance errors

2014-12-25 Thread ?????????? ??????????????
https://www.ece.cmu.edu/~safari/pubs/kim-isca14.pdf Abstract. Memory isolation is a key property of a reliable and secure computing system-an access to one memory address should not have unintended side effects on data stored in other addresses. However, as DRAM process technology scales down

Re: show padding in dirent.5

2014-12-25 Thread Todd C. Miller
OK if you make the type u_int8_t, though the man page should probably use uint8_t throughout. - todd

ps realloc loop

2014-12-25 Thread Ted Unangst
Theo noticed that the realloc loop in ps is suboptimal. Mostly style change: overflow checking for free courtesy of reallocarray. Vageuly wasteful, but ps strings are small. Mostly functional change: there's no need to free the pointer if realloc fails; it will still be useful in the future. No