[odc] Daily src changes for 2005-10-18

ODC auto at squish.net
Wed Oct 19 08:00:37 BST 2005


OpenBSD src changes summary for 2005-10-18
==========================================

libexec/ld.so                           sbin/pfctl
share/man                               sys/arch/i386/i386
sys/arch/luna88k/ddb                    sys/arch/mvme88k/ddb
sys/dev                                 sys/dev/ic
sys/dev/pci                             sys/sys
usr.bin/cvs                             usr.bin/mg
usr.bin/mixerctl                        usr.bin/rcs
usr.sbin/ospfctl                        usr.sbin/ospfd

== libexec =========================================================== 01/06 ==

  http://www.openbsd.org/cgi-bin/cvsweb/src/libexec

ld.so

  ~ dlfcn.c                               

  > This is too useful for debugging to not have in the tree, however
  > the interface may change at any time, so dont depend on it. (ie regress)
  > (drahn@)

== sbin ============================================================== 02/06 ==

  http://www.openbsd.org/cgi-bin/cvsweb/src/sbin

pfctl

  ~ pfctl_parser.c                        

  > add support for static interface group expansion, i. e.
  > pass to group
  > ok hshoexer, hacked at linux-kongress last week (henning@)

== share ============================================================= 03/06 ==

  http://www.openbsd.org/cgi-bin/cvsweb/src/share

man

  ~ man4/ucom.4                           

  > for some reason -width Pa produces an outrageously long width; (jmc@)

  ~ man5/myname.5                         

  > /etc/mygate may now contain ipv6 addresses;
  > from todd@ and myself; (jmc@)

  ~ man4/man4.macppc/macobio.4            

  > add K2 and Shasta. (brad@)

== sys =============================================================== 04/06 ==

  http://www.openbsd.org/cgi-bin/cvsweb/src/sys

arch/i386/i386

  ~ mainbus.c                             

  > Scan SMBIOS before calling config_attach() to prevent unnecessary kernel
  > print.
  > Written with jordan@ help.
  > ok deraadt@ (marco@)

arch/luna88k/ddb

  ~ db_interface.c                        

  > Use PSR_IND rather than recomputing it from PSR_INTERRUPT_DISABLE_BIT;
  > spotted by martin. (miod@)

arch/mvme88k/ddb

  ~ db_interface.c                        

  > Use PSR_IND rather than recomputing it from PSR_INTERRUPT_DISABLE_BIT;
  > spotted by martin. (miod@)

dev

  ~ ipmi.c                                ~ ipmivar.h

  > Scan SMBIOS before calling config_attach() to prevent unnecessary kernel
  > print.
  > Written with jordan@ help.
  > ok deraadt@ (marco@)

  ~ ipmi.c                                

  > Document Dell PowerEdge 8450 hack (marco@)

  ~ ipmi.c                                

  > Use MI trunc_page() & round_page().  Suggested by miod@ and grange@
  > (marco@)

dev/ic

  ~ if_wireg.h                            

  > remove wrong definition since result really belongs to stat (which is
  > already there). (fgsch@)

dev/pci

  ~ if_sis.c                              

  > Make sure that if_timer does not get reset if there are packets
  > still queued for transmission. This should solve the problem of
  > the device stalling on transmissions if some link event prevents
  > transmission.
  > From luigi FreeBSD
  > ok pedro@ hshoexer@ (brad@)

  ~ if_sis.c                              

  > revert last commit for now. (brad@)

  ~ if_sis.c                              ~ if_sisreg.h

  > Put rev 1.56 back in and make sure to include the header so
  > it actually compiles this time. (brad@)

  ~ pciide.c                              

  > Add some missing IDE/SATA interfaces..
  > - Via VT6421 SATA
  > - ServerWorks HT-1000 IDE
  > - ServerWorks Frodo4/Frodo8 and HT-1000 SATA
  > - NVidia NForce3 250 2nd channel, MCP04 and MCP51
  > ok grange@ (brad@)

sys

  ~ vnode.h                               

  > getnewfsid() was renamed and moved to sys/mount.h long ago; ok pedro
  > (jaredy@)

== usr.bin =========================================================== 05/06 ==

  http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin

cvs

  ~ rcs.c                                 

  > plug memleaks in rcs_rev_add() when an error occurs; (joris@)

mg

  ~ fileio.c                              

  > When attempting to open a filename, walk backwards through minibuffer:
  > a> if you run into the beginning of the string, use the whole thing
  > b> if you run into a // combo, use everything starting from the second /
  > c> if you run into a /~ combo, use everything starting from the ~
  > i.e. do like emacs.
  > From (and for) Jason Wright (kjell@)

  ~ paragraph.c                           

  > make fill-paragraph undoable (kjell@)

  ~ grep.c                                

  > Don't consider the last line of the compilation buffer as
  > parsable output. It is always a status message.
  > While here, some better error checking.
  > looks ok, cloder at .jell@)

mixerctl

  ~ mixerctl.1                            

  > big sorry to simon dassow, whose diff i inadvertently removed;
  > this reinstates it; (jmc@)

rcs

  ~ ci.c                                  

  > correctly handle locks when commiting something; (joris@)

  ~ ci.c                                  ~ co.c
  ~ rcsclean.c                            ~ rcsprog.c
  ~ rcsprog.h                             

  > use rcs_set_rev() instead of duplicating code all over the
  > place to set a variable to the given revision number; (joris@)

  ~ rcsprog.c                             

  > oops, rcs_set_rev() can't operate when str is NULL of course; (joris@)

  ~ ci.c                                  

  > - no point in using cvs_printf() in openrcs;
  > - only output info messages if -q flag isn't given; (joris@)

  ~ ci.1                                  

  > - `-N' works now; document it. (niallo@)

  ~ ci.1                                  

  > put -N description in the right place, and fix its description; (jmc@)

  + rcsmerge.c                            + rcsmerge.1

  > skeletons for rcsmerge(1); (xsa@)

  ~ Makefile                              ~ rcsprog.c
  ~ rcsprog.h                             

  > more rcsmerge(1) bits; (xsa@)

== usr.sbin ========================================================== 06/06 ==

  http://www.openbsd.org/cgi-bin/cvsweb/src/usr.sbin

ospfctl

  ~ ospfctl.8                             

  > 1) indicate optional args
  > 2) add missing args
  > 3) reword some areas
  > ok claudio@ jmc@ (stevesk@)

ospfd

  ~ packet.c                              

  > Correct log_debug(). Found while scrolling through that file. (claudio@)

  ~ ospfd.h                               

  > The kroute nexthop stuff was removed long time ago. So remove these
  > function prototypes too. (claudio@)

  ~ database.c                            

  > Better warning for non equal MTU in the database phase. Instead of just
  > whining that the MTU differs tell actually what is expected and what was
  > sent.  OK norby@ (claudio@)

  ~ interface.c                           ~ ospfd.c
  ~ ospfe.c                               ~ ospfe.h

  > Cleanup interface code a minimal bit. There is no need for if_shutdown(),
  > especially it got called in the wrong place.  OK norby@ (claudio@)

  ~ control.c                             

  > Simplify code a bit. OK norby@ (claudio@)

===============================================================================



More information about the odc mailing list