CVS commit: src/sys/dev/usb
Module Name:src Committed By: nonaka Date: Sun Feb 16 08:17:43 UTC 2014 Modified Files: src/sys/dev/usb: if_urtwn.c Log Message: Use INFRA not ADHOC when opmode is M_STA. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/usb/if_urtwn.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: nonaka Date: Sun Feb 16 08:18:28 UTC 2014 Modified Files: src/sys/dev/usb: if_urtwnreg.h Log Message: Remove duplicated comment. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/usb/if_urtwnreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/fs/union
Module Name:src Committed By: hannken Date: Sun Feb 16 09:50:25 UTC 2014 Modified Files: src/sys/fs/union: union_subr.c union_vfsops.c union_vnops.c Log Message: Change union_allocvp() to take an unlocked uppervp and to return the union node unlocked. Another VI_XLOCK hack is gone. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/sys/fs/union/union_subr.c cvs rdiff -u -r1.68 -r1.69 src/sys/fs/union/union_vfsops.c cvs rdiff -u -r1.55 -r1.56 src/sys/fs/union/union_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tools/gcc
Module Name:src Committed By: skrll Date: Sun Feb 16 11:26:31 UTC 2014 Modified Files: src/tools/gcc: Makefile mknative-gcc Log Message: The mpfr sources moved down into a src directory - deal with this in mknative. To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 src/tools/gcc/Makefile cvs rdiff -u -r1.74 -r1.75 src/tools/gcc/mknative-gcc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/fs/tmpfs
Module Name:src Committed By: maxv Date: Sun Feb 16 12:54:07 UTC 2014 Modified Files: src/sys/fs/tmpfs: tmpfs_vnops.c Log Message: Fix tmpfs_read()'s return value; it should return EINVAL. Now consistent with tmpfs_write(). ok christos@ To generate a diff of this commit: cvs rdiff -u -r1.115 -r1.116 src/sys/fs/tmpfs/tmpfs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: christos Date: Sun Feb 16 16:10:27 UTC 2014 Modified Files: src/sys/dev/usb: if_urtwn.c Log Message: whitespace police To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/dev/usb/if_urtwn.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: christos Date: Sun Feb 16 16:13:37 UTC 2014 Modified Files: src/sys/dev/usb: if_urtwn.c if_urtwnreg.h Log Message: move default last, add symbolic mask. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/dev/usb/if_urtwn.c cvs rdiff -u -r1.5 -r1.6 src/sys/dev/usb/if_urtwnreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: maxv Date: Sun Feb 16 17:46:36 UTC 2014 Modified Files: src/sys/kern: exec_elf.c Log Message: Small cleanup: - make elf_load_file() and elf_load_psection() static - make loops consistent - 'nload' is not used - see rev1.24 - 'ap' is not used in elf_load_file() ok agc@ christos@ To generate a diff of this commit: cvs rdiff -u -r1.57 -r1.58 src/sys/kern/exec_elf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: src/external/public-domain/sqlite/dist
Module Name:src Committed By: christos Date: Sun Feb 16 18:04:40 UTC 2014 Update of /cvsroot/src/external/public-domain/sqlite/dist In directory ivanova.netbsd.org:/tmp/cvs-serv29002 Log Message: from www.sqlite.org: Changes since 3.6.9: 2014-02-11 - Release 3.8.3.1 SQLite version 3.8.3.1 fixes a bug present in versions 3.8.1, 3.8.2 and 3.8.3 that can cause queries to omit valid out rows. Upgrading from those versions is recommended. The problem only comes up if SQLite is compiled with either the SQLITE_ENABLE_STAT3 or SQLITE_ENABLE_STAT4 compile-time options. In that case, if a query has a WHERE clause that contains expressions like this: WHERE (expr1 OR expr2 OR ... OR exprN) AND column IS NOT NULL Where all of expr1 through exprN are suitable for use by indexes, then during query planning SQLite might mistakenly converted the "column IS NOT NULL" term into "column>NULL". But the latter term is never true, and so the query would return no rows. The trouble ticket for this bug is [4c86b126f2]. It is recommended that all users upgrade to avoid this problem. 2014-02-03 - Release 3.8.3 SQLite version 3.8.3 is a regularly scheduled maintenance release. Upgrading from the previous release is optional. The most visible change in version 3.8.3 is the addition of support for common table expressions. It is now possible to write a single SELECT statement that will query a tree or graph, using either a depth-first or a breadth-first search. A single SQLite query will even solve Sudoku puzzles or compute the Mandelbrot set. As part of this change, SQLite now accepts a VALUES clause anyplace that a SELECT statement is valid. This release also includes many small performance enhancements which should give a small speed boost to legacy applications. And there are other minor enhancements such as the addition of the printf() SQL function. See the change log for details. 2013-12-06 - Release 3.8.2 SQLite version 3.8.2 is a regularly scheduled maintenance release. Upgrading from the previous release is optional. Version 3.8.2 adds support for WITHOUT ROWID tables. This is a significant extension to SQLite. Database files that contain WITHOUT ROWID tables are not readable or writable by prior versions of SQLite, however databases that do not use WITHOUT ROWID tables are fully backwards and forwards compatible. The 3.8.2 release contains a potentially incompatible change. In all prior versions of SQLite, a cast from a very large positive floating point number into an integer resulted in the most negative integer. In other words, CAST(+99.9e99 to INT) would yield -9223372036854775808. This behavior came about because it is what x86/x64 hardware does for the equivalent cast in the C language. But the behavior is bizarre. And so it has been changed effective with this release so that a cast from a floating point number into an integer returns the integer between the floating point value and zero that is closest to the floating point value. Hence, CAST(+99.9e99 to INT) now returns +9223372036854775807. Since routines like sqlite3_column_int64() do an implicit cast if the value being accessed is really a floating point number, they are also affected by this change. Besides the two changes mentioned above, the 3.8.2 release also includes a number of performance enhancements. The skip-scan optimization is now available for databases that have been processed by ANALYZE. Constant SQL functions are now factored out of inner loops, which can result in a significant speedup for queries that contain WHERE clause terms like "date>datetime('now','-2 days')". And various high-runner internal routines have been refactored for reduced CPU load. 2013-10-17 - Release 3.8.1 SQLite version 3.8.1 is a regularly scheduled maintenance release. Upgrading from the previous release is optional, though you should upgrade if you are using partial indices as there was a bug related to partial indices in the previous release that could result in an incorrect answer for count(*) queries. The next generation query planner that was premiered in the previous release continues to work well. The new query planner has been tweaked slightly in the current release to help it make better decisions in some cases, but is largely unchanged. Two new SQL functions, likelihood() and unlikely(), have been added to allow developers to give hints to the query planner without forcing the query planner into a particular decision. Version 3.8.1 is the first SQLite release to take into account the estimated size of table and index rows when choosing a query plan. Row size estimates are based on the declared datatypes of columns. For example, a column of type VARCHAR(1000) is assumed to use much more space than a column of type INT. The datatype-based row size estimate can be overridden by appending a term of the form "sz=NNN" (where NNN is the average row size in bytes) to the end of the sqli
CVS commit: src/external/public-domain/sqlite/dist
Module Name:src Committed By: christos Date: Sun Feb 16 18:09:44 UTC 2014 Modified Files: src/external/public-domain/sqlite/dist: sqlite3.c Log Message: merge conflicts. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/external/public-domain/sqlite/dist/sqlite3.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/public-domain/sqlite/lib
Module Name:src Committed By: christos Date: Sun Feb 16 18:16:35 UTC 2014 Modified Files: src/external/public-domain/sqlite/lib: shlib_version Log Message: bump To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/public-domain/sqlite/lib/shlib_version Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists
Module Name:src Committed By: christos Date: Sun Feb 16 18:19:10 UTC 2014 Modified Files: src/distrib/sets/lists/base: ad.arm ad.mips md.amd64 md.sparc64 shl.mi src/distrib/sets/lists/debug: ad.arm ad.mips md.amd64 md.sparc64 shl.mi Log Message: bump sqlite3 To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/distrib/sets/lists/base/ad.arm cvs rdiff -u -r1.30 -r1.31 src/distrib/sets/lists/base/ad.mips cvs rdiff -u -r1.224 -r1.225 src/distrib/sets/lists/base/md.amd64 cvs rdiff -u -r1.211 -r1.212 src/distrib/sets/lists/base/md.sparc64 cvs rdiff -u -r1.689 -r1.690 src/distrib/sets/lists/base/shl.mi cvs rdiff -u -r1.25 -r1.26 src/distrib/sets/lists/debug/ad.arm cvs rdiff -u -r1.21 -r1.22 src/distrib/sets/lists/debug/ad.mips cvs rdiff -u -r1.43 -r1.44 src/distrib/sets/lists/debug/md.amd64 \ src/distrib/sets/lists/debug/md.sparc64 cvs rdiff -u -r1.50 -r1.51 src/distrib/sets/lists/debug/shl.mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: christos Date: Sun Feb 16 18:20:54 UTC 2014 Modified Files: src/doc: 3RDPARTY Log Message: new sqlite To generate a diff of this commit: cvs rdiff -u -r1.1091 -r1.1092 src/doc/3RDPARTY Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: christos Date: Sun Feb 16 18:21:25 UTC 2014 Modified Files: src/doc: CHANGES Log Message: new sqlite3 To generate a diff of this commit: cvs rdiff -u -r1.1888 -r1.1889 src/doc/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net/npf
Module Name:src Committed By: rmind Date: Sun Feb 16 22:10:40 UTC 2014 Modified Files: src/sys/net/npf: npf_alg.c npf_alg_icmp.c npf_impl.h Log Message: NPF: pass ALG functions via npfa_funcs_t structure. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/net/npf/npf_alg.c cvs rdiff -u -r1.18 -r1.19 src/sys/net/npf/npf_alg_icmp.c cvs rdiff -u -r1.47 -r1.48 src/sys/net/npf/npf_impl.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/npf/npfctl
Module Name:src Committed By: rmind Date: Mon Feb 17 00:45:24 UTC 2014 Modified Files: src/usr.sbin/npf/npfctl: npf_parse.y Log Message: npfctl: take into account all addresses when multiple interfaces are specified in a set of elements. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/usr.sbin/npf/npfctl/npf_parse.y Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net/npf
Module Name:src Committed By: rmind Date: Mon Feb 17 02:38:46 UTC 2014 Modified Files: src/sys/net/npf: npf_alg.c Log Message: npf_alg_session: fix inverted logic in the previous commit. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/net/npf/npf_alg.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/man
Module Name:src Committed By: uwe Date: Mon Feb 17 02:53:48 UTC 2014 Modified Files: src/usr.bin/man: manconf.c Log Message: Check _build and _crunch commands with fmtcheck(3), warn about and ignore bad ones. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/usr.bin/man/manconf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/man
Module Name:src Committed By: uwe Date: Mon Feb 17 03:10:12 UTC 2014 Modified Files: src/usr.bin/man: Makefile man.c Log Message: config() in manconf.c now verifies _build (and _crunch) command templates with fmtcheck(3) so annotate the printf that uses these commands as safe with a __format_arg wrapper and drop -Wno-format-nonliteral. XXX: Using local wrapper for now, solving this in general would be nice, but it raises namespace pollution issues. XXX^2: catman(8) also uses manconf.c and uses _build and _crunch so it can also benefit from this (but see above). To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/usr.bin/man/Makefile cvs rdiff -u -r1.60 -r1.61 src/usr.bin/man/man.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch
Module Name:src Committed By: schmonz Date: Mon Feb 17 03:28:16 UTC 2014 Modified Files: src/sys/arch/amd64/conf: XEN3_DOM0 src/sys/arch/i386/conf: XEN3_DOM0 Log Message: Add urtw (ok'd by christos). To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.100 src/sys/arch/amd64/conf/XEN3_DOM0 cvs rdiff -u -r1.81 -r1.82 src/sys/arch/i386/conf/XEN3_DOM0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: kiyohara Date: Mon Feb 17 04:52:44 UTC 2014 Modified Files: src/sys/dev/marvell: marvellvar.h Log Message: Add MARVELL_TAG_DDR3_CS[0-3] for latest SoC. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/marvell/marvellvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/marvell
Module Name:src Committed By: kiyohara Date: Mon Feb 17 05:00:38 UTC 2014 Modified Files: src/sys/arch/arm/marvell: mvsoc.c Log Message: Support MARVELL_TAG_DDR3_CS[0-3]. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/marvell/mvsoc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/marvell
Module Name:src Committed By: kiyohara Date: Mon Feb 17 05:05:46 UTC 2014 Modified Files: src/sys/arch/arm/marvell: mvsocreg.h Log Message: Add some MVSOC_MLMB_ definitions for supporting DDR3. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/marvell/mvsocreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/marvell
Module Name:src Committed By: kiyohara Date: Mon Feb 17 05:11:25 UTC 2014 Modified Files: src/sys/arch/arm/marvell: mvsoctmrreg.h Log Message: Add comment 'Armada XP only' to 25MHz bit. Also it is documented to errata? To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/marvell/mvsoctmrreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/marvell
Module Name:src Committed By: kiyohara Date: Mon Feb 17 05:25:32 UTC 2014 Modified Files: src/sys/arch/arm/marvell: mvsoctmr.c Log Message: Remove TMR_FLAGS_ARMADAXP and Add flags NOBRIDGE, 25MHZ, SYSCLK. - NOBRIDGE does not go via a bridge. - 25MHZ is always counted with the cycle of 25 MHz. - SYSCLK is counted with the cycle of sysClk. This is used in a few days for Armada 370. And please use not mvTclk but variable mvsoctmr_freq for calculation of a clock. (e.g. in delay()) To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/marvell/mvsoctmr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/netpgp/dist
Module Name:src Committed By: agc Date: Mon Feb 17 06:38:08 UTC 2014 Modified Files: src/crypto/external/bsd/netpgp/dist: configure configure.ac src/crypto/external/bsd/netpgp/dist/src: Makefile.am Makefile.in src/crypto/external/bsd/netpgp/dist/src/lib: config.h.in version.h Log Message: Update the autoconf-based infrastructure for another release. The main change in this infrastructure is to get rid of the libnetpgp-based netpgpverify. This functionality is provided by the standalone netpgpverify and libnetpgpverify in pkgsrc, and verification can also be performed using "netpgp -v". To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 src/crypto/external/bsd/netpgp/dist/configure cvs rdiff -u -r1.39 -r1.40 src/crypto/external/bsd/netpgp/dist/configure.ac cvs rdiff -u -r1.5 -r1.6 src/crypto/external/bsd/netpgp/dist/src/Makefile.am cvs rdiff -u -r1.6 -r1.7 src/crypto/external/bsd/netpgp/dist/src/Makefile.in cvs rdiff -u -r1.16 -r1.17 \ src/crypto/external/bsd/netpgp/dist/src/lib/config.h.in cvs rdiff -u -r1.45 -r1.46 \ src/crypto/external/bsd/netpgp/dist/src/lib/version.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/netpgp/dist
Module Name:src Committed By: agc Date: Mon Feb 17 07:23:19 UTC 2014 Modified Files: src/crypto/external/bsd/netpgp/dist: configure src/crypto/external/bsd/netpgp/dist/src/hkpclient: hkpc.1 src/crypto/external/bsd/netpgp/dist/src/lib: libnetpgp.3 src/crypto/external/bsd/netpgp/dist/src/libbn: libnetpgpbn.3 src/crypto/external/bsd/netpgp/dist/src/libdigest: tiger.3 src/crypto/external/bsd/netpgp/dist/src/libmj: libmj.3 src/crypto/external/bsd/netpgp/dist/src/libverify: libnetpgpverify.3 src/crypto/external/bsd/netpgp/dist/src/netpgp: netpgp.1 src/crypto/external/bsd/netpgp/dist/src/netpgpkeys: netpgpkeys.1 src/crypto/external/bsd/netpgp/dist/src/netpgpverify: netpgpverify.1 src/crypto/external/bsd/netpgp/dist/src/pgp2ssh: pgp2ssh.1 Log Message: Manual page fixes from Anthony J. Bentley, with many thanks! Addresses PR/48395 To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/crypto/external/bsd/netpgp/dist/configure cvs rdiff -u -r1.2 -r1.3 \ src/crypto/external/bsd/netpgp/dist/src/hkpclient/hkpc.1 cvs rdiff -u -r1.15 -r1.16 \ src/crypto/external/bsd/netpgp/dist/src/lib/libnetpgp.3 cvs rdiff -u -r1.3 -r1.4 \ src/crypto/external/bsd/netpgp/dist/src/libbn/libnetpgpbn.3 cvs rdiff -u -r1.3 -r1.4 \ src/crypto/external/bsd/netpgp/dist/src/libdigest/tiger.3 cvs rdiff -u -r1.6 -r1.7 \ src/crypto/external/bsd/netpgp/dist/src/libmj/libmj.3 cvs rdiff -u -r1.5 -r1.6 \ src/crypto/external/bsd/netpgp/dist/src/libverify/libnetpgpverify.3 cvs rdiff -u -r1.18 -r1.19 \ src/crypto/external/bsd/netpgp/dist/src/netpgp/netpgp.1 cvs rdiff -u -r1.19 -r1.20 \ src/crypto/external/bsd/netpgp/dist/src/netpgpkeys/netpgpkeys.1 cvs rdiff -u -r1.6 -r1.7 \ src/crypto/external/bsd/netpgp/dist/src/netpgpverify/netpgpverify.1 cvs rdiff -u -r1.3 -r1.4 \ src/crypto/external/bsd/netpgp/dist/src/pgp2ssh/pgp2ssh.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Feb 17 07:34:21 UTC 2014 Modified Files: src/sys/dev/usb: ehci.c ohci.c usb_subr.c Log Message: Re-establish the default pipe after the initial reading of the device descriptor. This fixes usbd_new_device so that there is no really need to touch QHs/EDs in [eo]hci_device_request. KASSERT the address and maximum packet length now. To generate a diff of this commit: cvs rdiff -u -r1.224 -r1.225 src/sys/dev/usb/ehci.c cvs rdiff -u -r1.249 -r1.250 src/sys/dev/usb/ohci.c cvs rdiff -u -r1.195 -r1.196 src/sys/dev/usb/usb_subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib
Module Name:src Committed By: agc Date: Mon Feb 17 07:39:20 UTC 2014 Modified Files: src/crypto/external/bsd/netpgp/dist/src/lib: crypto.c Log Message: Avoid a warning on Gentoo Linux about fwrite(3) -- their glibc declares fwrite(3) with the warn_unused_result attribute, from Razvan Cojocaru To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 \ src/crypto/external/bsd/netpgp/dist/src/lib/crypto.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.