svn commit: r249666 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:47:26 2013 New Revision: 249666 URL: http://svnweb.freebsd.org/changeset/base/249666 Log: Make libprocstat(3) extract procstat notes from a process core file. PR: kern/173723 Suggested by: jhb Glanced by: kib MFC after:1 month

svn commit: r249667 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:49:35 2013 New Revision: 249667 URL: http://svnweb.freebsd.org/changeset/base/249667 Log: Add procstat_getvmmap function to get VM layout of a process. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map

svn commit: r249668 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:50:59 2013 New Revision: 249668 URL: http://svnweb.freebsd.org/changeset/base/249668 Log: Use procstat_getprocs(3) for retrieving thread information instead of direct sysctl calls. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c

svn commit: r249669 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:52:23 2013 New Revision: 249669 URL: http://svnweb.freebsd.org/changeset/base/249669 Log: Use more generic procstat_getvmmap(3) for retrieving VM layout of a process. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c

svn commit: r249670 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:54:07 2013 New Revision: 249670 URL: http://svnweb.freebsd.org/changeset/base/249670 Log: Add procstat_getgroups function to retrieve process groups. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map head/lib/libprocstat/core.c

svn commit: r249671 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:55:31 2013 New Revision: 249671 URL: http://svnweb.freebsd.org/changeset/base/249671 Log: Use procstat_getgroups(3) for retrieving groups information instead of direct sysctl. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c

svn commit: r249672 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:57:08 2013 New Revision: 249672 URL: http://svnweb.freebsd.org/changeset/base/249672 Log: Add procstat_getumask function to retrieve a process umask. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map head/lib/libprocstat/core.c

svn commit: r249673 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:58:20 2013 New Revision: 249673 URL: http://svnweb.freebsd.org/changeset/base/249673 Log: Use procstat_getumask(3) for retrieving umaks information instead of direct sysctl. MFC after:1 month Modified: head/usr.bin/procstat/procstat_cred.c

svn commit: r249674 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 07:59:44 2013 New Revision: 249674 URL: http://svnweb.freebsd.org/changeset/base/249674 Log: Add procstat_getrlimit function to retrieve a process resource limits info. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map

svn commit: r249675 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:01:00 2013 New Revision: 249675 URL: http://svnweb.freebsd.org/changeset/base/249675 Log: Use procstat_getrlimit(3) for retrieving rlimit information instead of direct sysctl calls. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c

svn commit: r249676 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:02:43 2013 New Revision: 249676 URL: http://svnweb.freebsd.org/changeset/base/249676 Log: Add procstat_getpathname function to retrieve a process executable. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map

svn commit: r249677 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:03:56 2013 New Revision: 249677 URL: http://svnweb.freebsd.org/changeset/base/249677 Log: Add procstat_getosrel function to retrieve a process osrel info. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map head/lib/libprocstat/core.c

svn commit: r249678 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:05:04 2013 New Revision: 249678 URL: http://svnweb.freebsd.org/changeset/base/249678 Log: Use libprocstat(3) when retrieving binary information for a process. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c

svn commit: r249679 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:07:04 2013 New Revision: 249679 URL: http://svnweb.freebsd.org/changeset/base/249679 Log: Extend libprocstat with functions to retrieve process command line arguments and environment variables. Suggested by: stas Reviewed by: jhb and stas (initial

svn commit: r249680 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:08:29 2013 New Revision: 249680 URL: http://svnweb.freebsd.org/changeset/base/249680 Log: Use libprocstat(3) to retrieve process command line arguments and environment variables. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c

svn commit: r249681 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:10:47 2013 New Revision: 249681 URL: http://svnweb.freebsd.org/changeset/base/249681 Log: Add procstat_getauxv function to retrieve a process auxiliary vector. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map

svn commit: r249682 - head

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:13:35 2013 New Revision: 249682 URL: http://svnweb.freebsd.org/changeset/base/249682 Log: This should have been committed in r249666. MFC after:1 month Modified: head/Makefile.inc1 Modified: head/Makefile.inc1

svn commit: r249683 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:15:43 2013 New Revision: 249683 URL: http://svnweb.freebsd.org/changeset/base/249683 Log: Use libprocstat(3) to retrieve ELF auxiliary vector. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c head/usr.bin/procstat/procstat.h

svn commit: r249684 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:17:20 2013 New Revision: 249684 URL: http://svnweb.freebsd.org/changeset/base/249684 Log: Add procstat_getkstack function to dump kernel stacks of a process. MFC after:1 month Modified: head/lib/libprocstat/Symbol.map

svn commit: r249685 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:19:06 2013 New Revision: 249685 URL: http://svnweb.freebsd.org/changeset/base/249685 Log: Use procstat_getkstack(3) for retrieving process kernel stacks instead of direct sysctl calls. MFC after:1 month Modified: head/usr.bin/procstat/procstat.c

svn commit: r249686 - head/usr.bin/procstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:22:09 2013 New Revision: 249686 URL: http://svnweb.freebsd.org/changeset/base/249686 Log: Make use of newly added libprocstat(3) ability to extract procstat info from a process core file. So now one can run procstat(1) on a process core e.g. to get a

svn commit: r249687 - head/usr.bin/gcore

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:23:19 2013 New Revision: 249687 URL: http://svnweb.freebsd.org/changeset/base/249687 Log: Sync gcore(1) with the recent changes in kernel code aimed at adding procstat notes to a process core file. Suggested by: jhb MFC after:1 month Modified:

svn commit: r249688 - head/lib/libprocstat

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 08:25:14 2013 New Revision: 249688 URL: http://svnweb.freebsd.org/changeset/base/249688 Log: Bump date. Modified: head/lib/libprocstat/libprocstat.3 Modified: head/lib/libprocstat/libprocstat.3

svn commit: r249692 - head/contrib/tzdata

2013-04-20 Thread Edwin Groothuis
Author: edwin Date: Sat Apr 20 11:42:10 2013 New Revision: 249692 URL: http://svnweb.freebsd.org/changeset/base/249692 Log: Merge of vendor of 249690, tzdata2013c - antarctica: AusAQ and ATAQ have been removed. - Antarctica/Macquarie has been moved to australasia file and AU. -

Re: svn commit: r249658 - in head: bin/chio sys/cam/scsi sys/sys

2013-04-20 Thread Warner Losh
Hey Ken, this change doesn't compile for me. See below Warner On Apr 19, 2013, at 2:03 PM, Kenneth D. Merry wrote: Author: ken Date: Fri Apr 19 20:03:51 2013 New Revision: 249658 URL: http://svnweb.freebsd.org/changeset/base/249658 Log: Update chio(1) and ch(4) to support reporting

svn commit: r249697 - head/share/man/man9

2013-04-20 Thread Edward Tomasz Napierala
Author: trasz Date: Sat Apr 20 12:36:53 2013 New Revision: 249697 URL: http://svnweb.freebsd.org/changeset/base/249697 Log: Make DELAY(9) reference pause(9). Modified: head/share/man/man9/DELAY.9 Modified: head/share/man/man9/DELAY.9

svn commit: r249698 - head/bin/df

2013-04-20 Thread Ulrich Spoerlein
Author: uqs Date: Sat Apr 20 12:41:05 2013 New Revision: 249698 URL: http://svnweb.freebsd.org/changeset/base/249698 Log: bin/df: Fix unitialized use in prtstat While here: - use NULL in the context of pointers - use memset instead of bzero throughout the file - free memory to

svn commit: r249701 - head/sys/cam/scsi

2013-04-20 Thread Kenneth D. Merry
Author: ken Date: Sat Apr 20 14:33:55 2013 New Revision: 249701 URL: http://svnweb.freebsd.org/changeset/base/249701 Log: Fix compilation. Pointy hat to:ken Modified: head/sys/cam/scsi/scsi_ch.c Modified: head/sys/cam/scsi/scsi_ch.c

Re: svn commit: r249658 - in head: bin/chio sys/cam/scsi sys/sys

2013-04-20 Thread Kenneth D. Merry
On Sat, Apr 20, 2013 at 05:45:43 -0600, Warner Losh wrote: Hey Ken, this change doesn't compile for me. See below Warner On Apr 19, 2013, at 2:03 PM, Kenneth D. Merry wrote: [ ...] + ces-ces_designator_length = devid-designator_length; + /* +

svn commit: r249702 - in head: gnu/lib/libgcc lib/libcompiler_rt

2013-04-20 Thread Ed Schouten
Author: ed Date: Sat Apr 20 14:44:28 2013 New Revision: 249702 URL: http://svnweb.freebsd.org/changeset/base/249702 Log: Enable libcompiler-rt on MIPS. Originally we disabled libcompiler-rt on MIPS and SPARC64, because of an issue where __clzdi2 and __ctzdi2 would cause endless

svn commit: r249704 - head/usr.bin/gcore

2013-04-20 Thread Mikolaj Golub
Author: trociny Date: Sat Apr 20 15:37:33 2013 New Revision: 249704 URL: http://svnweb.freebsd.org/changeset/base/249704 Log: Wrong cast. MFC after:1 month Modified: head/usr.bin/gcore/elfcore.c Modified: head/usr.bin/gcore/elfcore.c

svn commit: r249711 - head/lib/libprocstat

2013-04-20 Thread Joel Dahl
Author: joel (doc committer) Date: Sat Apr 20 22:16:49 2013 New Revision: 249711 URL: http://svnweb.freebsd.org/changeset/base/249711 Log: mdoc: end function context properly. Modified: head/lib/libprocstat/libprocstat.3 Modified: head/lib/libprocstat/libprocstat.3

svn commit: r249712 - head/share/man/man4

2013-04-20 Thread Joel Dahl
Author: joel (doc committer) Date: Sat Apr 20 22:26:33 2013 New Revision: 249712 URL: http://svnweb.freebsd.org/changeset/base/249712 Log: Add missing Pp. Also remove some minor whitespace. PR: 177995 Submitted by: olgeni Modified: head/share/man/man4/syscons.4 Modified:

svn commit: r249713 - head/sys/dev/ath

2013-04-20 Thread Adrian Chadd
Author: adrian Date: Sat Apr 20 22:46:31 2013 New Revision: 249713 URL: http://svnweb.freebsd.org/changeset/base/249713 Log: There's some races (likely in the BAR handling, sigh) which is causing the pause/resume code to not be called completely symmetrically. I'll chase down the root

svn commit: r249714 - head

2013-04-20 Thread Warner Losh
Author: imp Date: Sat Apr 20 23:33:51 2013 New Revision: 249714 URL: http://svnweb.freebsd.org/changeset/base/249714 Log: Add more details about updating across the clang divide. Add hints about having a root shell around on live updates. Couple of additional nits. Modified:

svn commit: r249715 - head/sys/dev/ath

2013-04-20 Thread Adrian Chadd
Author: adrian Date: Sun Apr 21 00:41:15 2013 New Revision: 249715 URL: http://svnweb.freebsd.org/changeset/base/249715 Log: When doing BAW tracking, don't dereference a NULL pointer if the BAW slot is actually NULL. Modified: head/sys/dev/ath/if_ath_tx.c Modified:

Re: svn commit: r248644 - head/cddl/contrib/opensolaris/lib/libdtrace/common

2013-04-20 Thread Mark Johnston
On Sat, Mar 23, 2013 at 08:57:54AM +, Andriy Gapon wrote: Author: avg Date: Sat Mar 23 08:57:54 2013 New Revision: 248644 URL: http://svnweb.freebsd.org/changeset/base/248644 Log: dtrace: ensure that we can always catch a process (e.g. when -c is used) It is not guaranteed