[>]
http://marc.info/?l=openbsd-cvs&m=141090878117275&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 03:55:05
Module name: src
Changes by: dlg@cvs.openbsd.org 2014/09/16 17:05:34
Modified files:
sys/kern : subr_pool.c
Log message:
disable taking the mutex to read pool stats.
some pool users (eg, mbufs and mbuf clusters) protect calls to pools
with their own locks that operate at high spl levels, rather than
pool_setipl() to have pools protect themselves.
this means pools mtx_enter doesnt necessarily prevent interrupts
that will use a pool, so we get code paths that try to mtx_enter
twice, which blows up.
reported by vlado at bsdbg dot net and matt bettinger
diagnosed by kettenis@
[>]
http://marc.info/?l=openbsd-cvs&m=141091459719121&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 04:55:07
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/09/16 18:42:54
Modified files:
share/man/man7 : mdoc.7
Log message:
Five year old typo reported by Theo Buehler at math dot ethz dot ch, thanks.
I nearly asked: ``What's wrong with it? It formats as "intended".''
(However, what Kristaps intended to write was "indented".)
[>]
http://marc.info/?l=openbsd-cvs&m=141091761020133&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 05:55:05
> * Jérémie Courrèges-Anglas <jca@wxcvbn.org> [2014-09-14 23:18]:
> > Chris Cappuccio <chris@nmedia.net> writes:
> > > Stuart Henderson [sthen@openbsd.org] wrote:
> > > >
> > > > I don't think the driver manuals can sensibly go into enough detail
> > > > in many cases, with some NICs there are differences between revisions,
> > > > some drivers cover a huge range of adapters, etc.
> > >
> > > It might be nice to get maximum MTUs for various chip revisions stated
> > > in their respective man pages.
> >
> > Yes but this needs work - even more work if an audit of all drivers
> > "gets" done to make all manpages accurate. I'll shut up about this
> > since it looks like a big task in my eyes.
>
> A too big task when you add the maintainance.
>
> We've tried this before in other occasions, we cannot document
> hardware quirks/features reasonably in our documentation for
> widespread, pretty generic hardware - we just have no chance to keep
> it in sync with reality.
>
> jca/chris, if you're so much after it, I propose you start a webpage
> somewhere collecting and maintaining that information. If it is still
> accurate in a couple of years we can have this duscussion again :)
it might be reasonable to document which drivers (not chips) have support for jumbos. \
for the drivers for chips with stupid variations between silicon revisions, we should \
refer the user to the vendor datasheets as brad suggests, and ifconfig if0 hwfeatures \
output as the final authoritative source of information.
dlg
[>]
http://marc.info/?l=openbsd-cvs&m=141091772720161&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 05:55:07
we should move to calling pool_setipl on every pool though.
dlg
On 17 Sep 2014, at 9:05 am, David Gwynne <dlg@cvs.openbsd.org> wrote:
> CVSROOT: /cvs
> Module name: src
> Changes by: dlg@cvs.openbsd.org 2014/09/16 17:05:34
>
> Modified files:
> sys/kern : subr_pool.c
>
> Log message:
> disable taking the mutex to read pool stats.
>
> some pool users (eg, mbufs and mbuf clusters) protect calls to pools
> with their own locks that operate at high spl levels, rather than
> pool_setipl() to have pools protect themselves.
>
> this means pools mtx_enter doesnt necessarily prevent interrupts
> that will use a pool, so we get code paths that try to mtx_enter
> twice, which blows up.
>
> reported by vlado at bsdbg dot net and matt bettinger
> diagnosed by kettenis@
[>]
http://marc.info/?l=openbsd-cvs&m=141093492724151&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 10:55:05
Module name: src
Changes by: jmc@cvs.openbsd.org 2014/09/17 00:21:46
Modified files:
lib/libkeynote : keynote.3
Log message:
diff From: Theo Buehler who notes of kn_encode_base64():
"Since the function is a simple wrapper around b64_ntop(),
there is no restriction on the possible lengths of the raw data in
`src'."
ok millert
[>]
http://marc.info/?l=openbsd-cvs&m=141093535524246&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 10:55:06
> CVSROOT: /cvs
> Module name: src
> Changes by: schwarze@cvs.openbsd.org 2014/09/16 18:42:54
>
> Modified files:
> share/man/man7 : mdoc.7
>
> Log message:
> Five year old typo reported by Theo Buehler at math dot ethz dot ch, thanks.
> I nearly asked: ``What's wrong with it? It formats as "intended".''
> (However, what Kristaps intended to write was "indented".)
>
how do you know the typo wasn;t indented?
jmc
[>]
http://marc.info/?l=openbsd-cvs&m=141096431603209&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 18:55:04
Module name: xenocara
Changes by: okan@cvs.openbsd.org 2014/09/17 08:31:37
Modified files:
app/cwm : calmwm.h group.c mousefunc.c
Log message:
Introduce a check to see if a group holds only 'sticky' clients and use
this check to decide if a group is virtually empty. Rationale: if a
group contains *only* 'sticky' clients, it should be skipped while
cycling through groups. Apply similar logic to the group menu.
Based on an idea from phessler@, who also tested another version.
[>]
http://marc.info/?l=openbsd-cvs&m=141096814105314&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 19:55:06
Module name: src
Changes by: nicm@cvs.openbsd.org 2014/09/17 09:35:25
Modified files:
share/termtypes: termtypes.master
Log message:
Both tmux and screen expect \177 for backspace, so change our screen
terminfo entry to have kbs=\177 (we already do this for xterm). Fixes
problems with "le" editor reported by bcallah@
[>]
http://marc.info/?l=openbsd-cvs&m=141097034506575&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 20:55:06
Module name: xenocara
Changes by: shadchin@cvs.openbsd.org 2014/09/17 10:11:51
Modified files:
data/xkeyboard-config/man: xkeyboard-config.7
data/xkeyboard-config/pc: Makefile
data/xkeyboard-config/symbols: Makefile
dist/xkeyboard-config: NEWS configure configure.ac
dist/xkeyboard-config/docs: README.enhancing
dist/xkeyboard-config/keycodes: xfree86
dist/xkeyboard-config/po: bg.po ca.po cs.po da.po de.po el.po
es.po fr.po gl.po ko.po lt.po nl.po
pl.po pt_BR.po ru.po uk.po
dist/xkeyboard-config/rules: base.extras.xml.in base.o_s.part
base.xml.in evdev.extras.xml.in
evdev.xml.in
dist/xkeyboard-config/rules/compat: base.l1v1_c.part
base.l2v2_c.part
base.l3v3_c.part
base.l4v4_c.part
base.lv_c.part
dist/xkeyboard-config/symbols: Makefile.am Makefile.in af al ara
ba ca cm cz de dk es fi fr group
hr il in inet ir is it jp keypad
kz lv ma me nl no rs ru se si sk
tm tr tw ua us
dist/xkeyboard-config/symbols/sharp_vndr: sl-c3x00
dist/xkeyboard-config/symbols/sun_vndr: de pl sk
dist/xkeyboard-config/types: pc
Added files:
dist/xkeyboard-config/symbols: eu
Log message:
Update to xkeyboard-config 2.12.
plus fix for fr(oss) from Daniel Jakots <vigdis at chown dot me>
ok matthieu@
[>]
http://marc.info/?l=openbsd-cvs&m=141097201907360&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 20:55:11
Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/09/17 10:39:46
Modified files:
etc/mail : Makefile
distrib/sets/lists/etc: mi
Log message:
With sendmail(8) gone, there is not much point in keeping /etc/mail/Makefile.
There is one table in the default configuration which is 'aliases' and
the db can be created using newaliases(8).
"go for it" guenther@
ok sthen@ matthieu@ gilles@
[>]
http://marc.info/?l=openbsd-cvs&m=141097673409868&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 22:55:05
Module name: src
Changes by: kspillner@cvs.openbsd.org 2014/09/17 11:58:41
Modified files:
share/man/man5 : login.conf.5
usr.bin/passwd : pwd_gensalt.c
Log message:
Increase number of blowfish rounds to 8 by default when not specified in
login.conf.
ok deraadt@ doug@ millert@
"please commit" tedu@
[>]
http://marc.info/?l=openbsd-cvs&m=141097981911372&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 22:55:09
Module name: src
Changes by: matthieu@cvs.openbsd.org 2014/09/17 12:49:52
Removed files:
gnu/usr.sbin/sendmail: CACerts FAQ KNOWNBUGS LICENSE Makefile
Makefile.inc README RELEASE_NOTES
gnu/usr.sbin/sendmail/cf: Makefile README sendmail.schema
gnu/usr.sbin/sendmail/cf/cf: Makefile README chez.cs.mc
clientproto.mc corpse.mc
courtesan-nonet.mc courtesan.mc
cs-hpux10.mc cs-hpux9.mc cs-osf1.mc
cs-solaris2.mc cs-sunos4.1.mc
cs-ultrix4.mc cyrusproto.mc
generic-bsd4.4.mc generic-hpux10.mc
generic-hpux9.mc generic-linux.mc
generic-mpeix.mc
generic-nextstep3.3.mc
generic-osf1.mc generic-solaris.mc
generic-sunos4.1.mc
generic-ultrix4.mc huginn.cs.mc
knecht.mc lucifier.mc mail.cs.mc
mail.eecs.mc mailspool.cs.mc
openbsd-bulk.mc openbsd-lists.mc
openbsd-localhost.mc
openbsd-proto.mc openbsd-submit.mc
python.cs.mc s2k-osf1.mc
s2k-ultrix4.mc submit.mc
tcpproto.mc ucbarpa.mc ucbvax.mc
uucpproto.mc vangogh.cs.mc
gnu/usr.sbin/sendmail/cf/domain: Berkeley.EDU.m4
CS.Berkeley.EDU.m4
EECS.Berkeley.EDU.m4
S2K.Berkeley.EDU.m4
berkeley-only.m4 generic.m4
gnu/usr.sbin/sendmail/cf/feature: accept_unqualified_senders.m4
accept_unresolvable_domains.m4
access_db.m4 allmasquerade.m4
always_add_domain.m4
authinfo.m4 badmx.m4
bestmx_is_local.m4
bitdomain.m4
blacklist_recipients.m4
block_bad_helo.m4
compat_check.m4 conncontrol.m4
delay_checks.m4 dnsbl.m4
domaintable.m4 enhdnsbl.m4
generics_entire_domain.m4
genericstable.m4
greet_pause.m4 ldap_routing.m4
limited_masquerade.m4
local_lmtp.m4
local_no_masquerade.m4
local_procmail.m4
lookupdotdomain.m4
loose_relay_check.m4
mailertable.m4
masquerade_entire_domain.m4
masquerade_envelope.m4 msp.m4
mtamark.m4 no_default_msa.m4
nocanonify.m4 notsticky.m4
nouucp.m4 nullclient.m4
preserve_local_plus_detail.m4
preserve_luser_host.m4
promiscuous_relay.m4
queuegroup.m4 ratecontrol.m4
redirect.m4
relay_based_on_MX.m4
relay_entire_domain.m4
relay_hosts_only.m4
relay_local_from.m4
relay_mail_from.m4
require_rdns.m4 smrsh.m4
stickyhost.m4
use_client_ptr.m4
use_ct_file.m4 use_cw_file.m4
uucpdomain.m4
virtuser_entire_domain.m4
virtusertable.m4
gnu/usr.sbin/sendmail/cf/hack: cssubdomain.m4
gnu/usr.sbin/sendmail/cf/m4: cf.m4 cfhead.m4 proto.m4 version.m4
gnu/usr.sbin/sendmail/cf/mailer: cyrus.m4 cyrusv2.m4 fax.m4
local.m4 mail11.m4 phquery.m4
pop.m4 procmail.m4 qpage.m4
smtp.m4 usenet.m4 uucp.m4
gnu/usr.sbin/sendmail/cf/ostype: a-ux.m4 aix3.m4 aix4.m4 aix5.m4
altos.m4 amdahl-uts.m4
bsd4.3.m4 bsd4.4.m4 bsdi.m4
bsdi1.0.m4 bsdi2.0.m4 darwin.m4
dgux.m4 domainos.m4
dragonfly.m4 dynix3.2.m4
freebsd4.m4 freebsd5.m4
freebsd6.m4 gnu.m4 hpux10.m4
hpux11.m4 hpux9.m4 irix4.m4
irix5.m4 irix6.m4 isc4.1.m4
linux.m4 maxion.m4 mklinux.m4
mpeix.m4 nextstep.m4 openbsd.m4
osf1.m4 powerux.m4 ptx2.m4
qnx.m4 riscos4.5.m4
sco-uw-2.1.m4 sco3.2.m4
sinix.m4 solaris11.m4
solaris2.m4 solaris2.ml.m4
solaris2.pre5.m4 solaris8.m4
sunos3.5.m4 sunos4.1.m4 svr4.m4
ultrix4.m4 unicos.m4
unicosmk.m4 unicosmp.m4
unixware7.m4 unknown.m4
uxpds.m4
gnu/usr.sbin/sendmail/cf/sh: makeinfo.sh
gnu/usr.sbin/sendmail/cf/siteconfig: uucp.cogsci.m4
uucp.old.arpa.m4
uucp.ucbarpa.m4
uucp.ucbvax.m4
gnu/usr.sbin/sendmail/contrib: README bitdomain.c
bounce-resender.pl bsdi.mc
buildvirtuser cidrexpand
dnsblaccess.m4 domainmap.m4
doublebounce.pl etrn.0 etrn.pl
expn.pl link_hash.sh
mail.local.linux mailprio
mh.patch mmuegel movemail.conf
movemail.pl passwd-to-alias.pl
qtool.8 qtool.pl re-mqueue.pl
rmail.oldsys.patch smcontrol.pl
socketmapClient.pl
socketmapServer.pl
gnu/usr.sbin/sendmail/doc/op: Makefile README op.me
gnu/usr.sbin/sendmail/editmap: Makefile editmap.8 editmap.c
gnu/usr.sbin/sendmail/include/libmilter: mfapi.h mfdef.h
milter.h
gnu/usr.sbin/sendmail/include/libsmdb: smdb.h
gnu/usr.sbin/sendmail/include/sendmail: mailstats.h pathnames.h
sendmail.h
gnu/usr.sbin/sendmail/include/sm: assert.h bdb.h bitops.h
cdefs.h cf.h clock.h conf.h
config.h debug.h errstring.h
exc.h fdset.h gen.h heap.h
io.h ldap.h limits.h mbdb.h
misc.h path.h rpool.h sem.h
sendmail.h setjmp.h shm.h
signal.h sm_os.h string.h
sysexits.h tailq.h test.h
time.h types.h varargs.h
xtrap.h
gnu/usr.sbin/sendmail/include/sm/os: sm_os_aix.h
sm_os_dragonfly.h
sm_os_freebsd.h sm_os_hp.h
sm_os_irix.h sm_os_linux.h
sm_os_mpeix.h sm_os_next.h
sm_os_openbsd.h
sm_os_openunix.h
sm_os_osf1.h sm_os_qnx.h
sm_os_sunos.h
sm_os_ultrix.h
sm_os_unicos.h
sm_os_unicosmk.h
sm_os_unicosmp.h
sm_os_unixware.h
gnu/usr.sbin/sendmail/libmilter: Makefile README comm.c engine.c
example.c handler.c libmilter.h
listener.c main.c monitor.c
shlib_version signal.c
sm_gethost.c smfi.c worker.c
gnu/usr.sbin/sendmail/libmilter/docs: api.html design.html
figure1.fig figure1.jpg
figure1.ps figure2.fig
figure2.jpg figure2.ps
index.html
installation.html
other.html overview.html
sample.html
smfi_addheader.html
smfi_addrcpt.html
smfi_addrcpt_par.html
smfi_chgfrom.html
smfi_chgheader.html
smfi_delrcpt.html
smfi_getpriv.html
smfi_getsymval.html
smfi_insheader.html
smfi_main.html
smfi_opensocket.html
smfi_progress.html
smfi_quarantine.html
smfi_register.html
smfi_replacebody.html
smfi_setbacklog.html
smfi_setconn.html
smfi_setdbg.html
smfi_setmlreply.html
smfi_setpriv.html
smfi_setreply.html
smfi_setsymlist.html
smfi_settimeout.html
smfi_stop.html
smfi_version.html
xxfi_abort.html
xxfi_body.html
xxfi_close.html
xxfi_connect.html
xxfi_data.html
xxfi_envfrom.html
xxfi_envrcpt.html
xxfi_eoh.html
xxfi_eom.html
xxfi_header.html
xxfi_helo.html
xxfi_negotiate.html
xxfi_unknown.html
gnu/usr.sbin/sendmail/libsm: Makefile README assert.c
assert.html b-strcmp.c b-strl.c
cdefs.html cf.c clock.c clrerr.c
config.c debug.c debug.html
errstring.c exc.c exc.html fclose.c
feof.c ferror.c fflush.c fget.c
findfp.c flags.c fopen.c fpos.c
fprintf.c fpurge.c fput.c fread.c
fscanf.c fseek.c fvwrite.c
fvwrite.h fwalk.c fwrite.c gen.html
get.c glue.h heap.c heap.html
index.html inet6_ntop.c io.html
ldap.c local.h makebuf.c match.c
mbdb.c memstat.c mpeix.c niprop.c
path.c put.c refill.c rewind.c
rpool.c rpool.html sem.c setvbuf.c
shm.c signal.c smstdio.c snprintf.c
sscanf.c stdio.c strcasecmp.c
strdup.c strerror.c strexit.c
string.c stringf.c strio.c strl.c
strrevcmp.c strto.c syslogio.c
t-cf.c t-event.c t-exc.c t-fget.c
t-float.c t-fopen.c t-heap.c
t-inet6_ntop.c t-match.c
t-memstat.c t-path.c t-qic.c
t-rpool.c t-scanf.c t-sem.c t-shm.c
t-smstdio.c t-string.c t-strio.c
t-strl.c t-strrevcmp.c t-types.c
test.c ungetc.c util.c vasprintf.c
vfprintf.c vfscanf.c vprintf.c
vsnprintf.c wbuf.c wsetup.c xtrap.c
gnu/usr.sbin/sendmail/libsmdb: Makefile smdb.c smdb1.c smdb2.c
smndbm.c
gnu/usr.sbin/sendmail/libsmutil: Makefile cf.c debug.c err.c
lockfile.c safefile.c
snprintf.c
gnu/usr.sbin/sendmail/mail.local: Makefile README mail.local.8
mail.local.c
gnu/usr.sbin/sendmail/mailstats: Makefile mailstats.8
mailstats.c
gnu/usr.sbin/sendmail/makemap: Makefile makemap.8 makemap.c
gnu/usr.sbin/sendmail/praliases: Makefile praliases.1
praliases.c
gnu/usr.sbin/sendmail/rmail: Makefile rmail.8 rmail.c
gnu/usr.sbin/sendmail/sendmail: Makefile README SECURITY
TRACEFLAGS TUNING alias.c
aliases aliases.5 arpadate.c
bf.c bf.h collect.c conf.c
conf.h control.c convtime.c
daemon.c daemon.h deliver.c
domain.c envelope.c err.c
headers.c helpfile macro.c
mailq.8 main.c map.c map.h mci.c
milter.c mime.c newaliases.8
parseaddr.c queue.c ratectrl.c
readcf.c recipient.c sasl.c
savemail.c sendmail.8 sendmail.h
sfsasl.c sfsasl.h shmticklib.c
sm_resolve.c sm_resolve.h
srvrsmtp.c stab.c stats.c
statusd_shm.h sysexits.c
sysexits.h timers.c timers.h
tls.c trace.c udb.c usersmtp.c
util.c version.c
gnu/usr.sbin/sendmail/smrsh: Makefile README smrsh.8 smrsh.c
gnu/usr.sbin/sendmail/vacation: Makefile vacation.1 vacation.c
Log message:
Bye.
[>]
http://marc.info/?l=openbsd-cvs&m=141098119411949&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-17 23:55:05
Module name: src
Changes by: guenther@cvs.openbsd.org 2014/09/17 13:12:55
Modified files:
usr.bin/kdump : kdump.c kdump_subr.h mksubr
Log message:
Add display of the flags to pipe2, dup3, and accept4, display of
MSG_CMSG_CLOEXEC in recvmsg, and display of SOCK_{CLOEXEC,NONBLOCK}
in socket and socketpair.
Do _not_ display the O_ACCMODE bits in the arg to fcntl(F_SETFD)
ok miod@
[>]
http://marc.info/?l=openbsd-cvs&m=141098517713596&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-18 00:55:07
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/09/17 14:17:55
Modified files:
usr.bin/mandoc : mdoc_term.c term.h
Log message:
simplify handling of .An -[no]split for terminal output:
delete one static function, one flag #define, and 25 lines of code;
no functional change
[>]
http://marc.info/?l=openbsd-cvs&m=141101509721927&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-18 08:55:05
Module name: src
Changes by: guenther@cvs.openbsd.org 2014/09/17 22:37:56
Modified files:
include : unistd.h
Log message:
Our setpgrp() is the BSD version with two args and not the XSI
version with zero args, so it should only be visible if __BSD_VISIBLE
(and not also for __XPG_VISIBLE). Contrawise, readlink() has been
part of base POSIX since 1995, so move to proper #if area for that.
Move crypt_checkpass() to the pure-BSD section of the file.
setpgrp() issue noted by Matti Karnaattu (mkarnaattu (at) gmail.com)
ok millert@
[>]
http://marc.info/?l=openbsd-cvs&m=141104804201353&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-18 17:55:04
Module name: src
Changes by: syl@cvs.openbsd.org 2014/09/18 07:46:54
Modified files:
share/man/man4/man4.armv7: Makefile
Added files:
share/man/man4/man4.armv7: imx.4 imxenet.4 imxesdhc.4 imxiic.4
intro.4 omap.4
Log message:
add some missing man pages for armv7.
tweaks & ok jmc@
[>]
http://marc.info/?l=openbsd-cvs&m=141104864601590&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-18 18:55:05
Module name: xenocara
Changes by: okan@cvs.openbsd.org 2014/09/18 07:56:58
Modified files:
app/cwm : mousefunc.c
Log message:
Move motion time check to the top of each MotionNotify block (and
eliminate from ButtonRelease); further limits the amount of work done
outside the threshold, notably mousefunc_sweep_calc,
screen_find_xinerama and client_snapcalc.