Re: svn commit: r246880 - in head: lib/libsm libexec/mail.local libexec/smrsh share/mk usr.bin/vacation usr.sbin/sendmail

2013-04-16 Thread Giorgos Keramidas
be an error. It is only a warning for gcc -pedantic too. Bruce -- Giorgos Keramidas; gkerami...@gmail.com ___ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to svn-src-all-unsubscr

Re: svn commit: r246880 - in head: lib/libsm libexec/mail.local libexec/smrsh share/mk usr.bin/vacation usr.sbin/sendmail

2013-04-16 Thread Giorgos Keramidas
On Tue, 16 Apr 2013 11:03:01 +0200, Dimitry Andric d...@freebsd.org wrote: On 2013-04-16 06:19, Γιώργος Κεραμίδας wrote: On Sat, 16 Feb 2013 20:17:31 + (UTC), Dimitry Andric d...@freebsd.org wrote: ... Since clang 3.2 now has an option to suppress warnings about implicitly

Re: svn commit: r246880 - in head: lib/libsm libexec/mail.local libexec/smrsh share/mk usr.bin/vacation usr.sbin/sendmail

2013-04-16 Thread Giorgos Keramidas
On Tue, 16 Apr 2013 15:44:36 +0200, Dimitry Andric d...@freebsd.org wrote: On 2013-04-16 13:28, Bruce Evans wrote: Extending the example a little gives the answer to my question: @ #include stdbool.h @ @ typedef void vb(bool first); @ @ vb foo; @ void bar(vb *p); @ @ void @ foo(first)

svn commit: r247275 - stable/9/lib/libc/stdlib

2013-02-25 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Feb 25 19:08:46 2013 New Revision: 247275 URL: http://svnweb.freebsd.org/changeset/base/247275 Log: MFH r247014, r247050 and r247051. Add a sample program that shows how a custom comparison function and qsort(3) can work together to sort an

svn commit: r247276 - stable/8/lib/libc/stdlib

2013-02-25 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Feb 25 19:09:13 2013 New Revision: 247276 URL: http://svnweb.freebsd.org/changeset/base/247276 Log: MFH r247014, r247050 and r247051. Add a sample program that shows how a custom comparison function and qsort(3) can work together to sort an

svn commit: r247277 - stable/7/lib/libc/stdlib

2013-02-25 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Feb 25 19:09:41 2013 New Revision: 247277 URL: http://svnweb.freebsd.org/changeset/base/247277 Log: MFH r247014, r247050 and r247051. Add a sample program that shows how a custom comparison function and qsort(3) can work together to sort an

svn commit: r247189 - head/lib/libc/stdlib

2013-02-23 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Feb 23 12:31:52 2013 New Revision: 247189 URL: http://svnweb.freebsd.org/changeset/base/247189 Log: Now that qsort(3) has a sample comparison function, point to that example from bsearch(3) too, so that we don't have to duplicate the example code

Re: svn commit: r247014 - head/lib/libc/stdlib

2013-02-20 Thread Giorgos Keramidas
On 2013-02-20 09:32, David Chisnall thera...@freebsd.org wrote: On 20 Feb 2013, at 08:25, m...@freebsd.org wrote: These should be declared const int *. And the cast shouldn't be needed in C, since void * can be assigned to any other pointer type. In fact, the entire function body can be

Re: svn commit: r247014 - head/lib/libc/stdlib

2013-02-20 Thread Giorgos Keramidas
On 2013-02-20 10:49, Stefan Farfeleder stef...@freebsd.org wrote: On Wed, Feb 20, 2013 at 09:32:43AM +, David Chisnall wrote: On 20 Feb 2013, at 08:25, m...@freebsd.org wrote: These should be declared const int *. And the cast shouldn't be needed in C, since void * can be assigned to any

svn commit: r247050 - head/lib/libc/stdlib

2013-02-20 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Feb 20 18:31:55 2013 New Revision: 247050 URL: http://svnweb.freebsd.org/changeset/base/247050 Log: Various improvements to the qsort(3) usage example: - Remove unused #include. - Do not cast away const. - Use the canonical idiom to compare

svn commit: r247014 - head/lib/libc/stdlib

2013-02-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Feb 19 23:57:39 2013 New Revision: 247014 URL: http://svnweb.freebsd.org/changeset/base/247014 Log: Add a sample program that shows how a custom comparison function and qsort(3) can work together to sort an array of integers. PR:

Re: svn commit: r218695 - stable/8/usr.bin/top

2011-02-15 Thread Giorgos Keramidas
On Wed, 16 Feb 2011 00:06:39 -0500, jhell jh...@dataix.net wrote: On Tue, 15 Feb 2011 01:33, keramida@ wrote: URL: http://svn.freebsd.org/changeset/base/218695 MFC 217746 from /head/usr.bin/top Touch up the sample memory usage numbers a bit, to avoid wrapping on terminal boundary. While

svn commit: r218695 - stable/8/usr.bin/top

2011-02-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Feb 15 06:33:35 2011 New Revision: 218695 URL: http://svn.freebsd.org/changeset/base/218695 Log: MFC 217746 from /head/usr.bin/top Touch up the sample memory usage numbers a bit, to avoid wrapping on terminal boundary. While here add definition

svn commit: r218697 - stable/7/usr.bin/mail

2011-02-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Feb 15 07:12:16 2011 New Revision: 218697 URL: http://svn.freebsd.org/changeset/base/218697 Log: MFC 216698 by maxim from /head Fix -u flag description: it takes a username as an argument. PR: docs/153416 Submitted by: Eitan

svn commit: r218698 - stable/8/usr.bin/mail

2011-02-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Feb 15 07:12:41 2011 New Revision: 218698 URL: http://svn.freebsd.org/changeset/base/218698 Log: MFC 216698 by maxim from /head Fix -u flag description: it takes a username as an argument. PR: docs/153416 Submitted by: Eitan

svn commit: r218699 - head/share/man/man7

2011-02-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Feb 15 07:16:27 2011 New Revision: 218699 URL: http://svn.freebsd.org/changeset/base/218699 Log: Document TRYBROKEN in ports(7). PR: docs/153542 Submitted by: Eitan Adler li...@eitanadler.com MFC after:3 days Modified:

svn commit: r218700 - head/sbin/mksnap_ffs

2011-02-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Feb 15 07:25:54 2011 New Revision: 218700 URL: http://svn.freebsd.org/changeset/base/218700 Log: Note that a UFS filesystem can have up to 20 active snapshots. PR: docs/151104 Submitted by: Aldis Berjoza al...@bsdroot.lv MFC after:

Re: svn commit: r217746 - head/usr.bin/top

2011-01-24 Thread Giorgos Keramidas
On Sun, 23 Jan 2011 19:50:40 -0800, Garrett Cooper gcoo...@freebsd.org wrote: On Sun, Jan 23, 2011 at 6:44 PM, Sergey Kandaurov pluk...@freebsd.org wrote: On 23 January 2011 14:08, Giorgos Keramidas keram...@freebsd.org wrote: Author: keramida (doc committer) Date: Sun Jan 23 11:08:39 2011

svn commit: r217579 - stable/7/share/man/man7

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 15:12:38 2011 New Revision: 217579 URL: http://svn.freebsd.org/changeset/base/217579 Log: MFC -r 186783 from /head Document the NO_XXX options supported by our Makefile.inc1. Noticed by: simon Reviewed by: imp Modified:

svn commit: r217580 - stable/7/lib/libc/stdlib

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 15:43:23 2011 New Revision: 217580 URL: http://svn.freebsd.org/changeset/base/217580 Log: MFC -r188305 and r189207 from /head : r188305 -- : Fix language on atol(3) manpage. Add a COMPATIBILITY section : stating that in FreeBSD the

svn commit: r217599 - stable/8/tools/regression/acct

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:09:39 2011 New Revision: 217599 URL: http://svn.freebsd.org/changeset/base/217599 Log: MFC r217064 - sort fix includes, remove -include from CFLAGS of acct tests - Sort the includes of pack.c, moving sys/*.h files near the top. - Add

svn commit: r217601 - stable/8/share/man/man7

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:28:00 2011 New Revision: 217601 URL: http://svn.freebsd.org/changeset/base/217601 Log: MFC r205978 from /head Document DEBUG_FLAGS in a more visible place, in the build(7) manpage Noticed by: Alexander Best alexbestms.at.wwu.de

svn commit: r217602 - stable/7/share/man/man7

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:28:21 2011 New Revision: 217602 URL: http://svn.freebsd.org/changeset/base/217602 Log: MFC r205978 from /head Document DEBUG_FLAGS in a more visible place, in the build(7) manpage Noticed by: Alexander Best alexbestms.at.wwu.de

svn commit: r217603 - stable/8/lib/libc/sys

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:34:42 2011 New Revision: 217603 URL: http://svn.freebsd.org/changeset/base/217603 Log: MFC r199985 from /head Describe what setpgid(2) does when pgid=0. The text has been copied from NetBSD’s manpage, and it also matches the behavior

svn commit: r217605 - stable/7/lib/libc/sys

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:35:48 2011 New Revision: 217605 URL: http://svn.freebsd.org/changeset/base/217605 Log: MFC r199985 from /head Describe what setpgid(2) does when pgid=0. The text has been copied from NetBSD’s manpage, and it also matches the behavior

svn commit: r217606 - head/share/man/man5

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:43:08 2011 New Revision: 217606 URL: http://svn.freebsd.org/changeset/base/217606 Log: Bump .Dd date of manpage for r217481 Modified: head/share/man/man5/xfs.5 Modified: head/share/man/man5/xfs.5

svn commit: r217608 - stable/8/share/man/man5

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:49:21 2011 New Revision: 217608 URL: http://svn.freebsd.org/changeset/base/217608 Log: MFC r217481 and r217606 from /head r217481... Fix the mount example of xfs(5) filesystems by including the read-only option. We only support

svn commit: r217609 - stable/7/share/man/man5

2011-01-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 19 21:49:42 2011 New Revision: 217609 URL: http://svn.freebsd.org/changeset/base/217609 Log: MFC r217481 and r217606 from /head r217481... Fix the mount example of xfs(5) filesystems by including the read-only option. We only support

svn commit: r217481 - head/share/man/man5

2011-01-16 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sun Jan 16 20:10:55 2011 New Revision: 217481 URL: http://svn.freebsd.org/changeset/base/217481 Log: Fix the mount example of xfDmitry Marakasov amd...@freebsd.orgs(5) filesystems by including the read-only option. We only support ro mounts for xfs, so

svn commit: r217347 - stable/8/tools/regression/bin/date

2011-01-13 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 13 11:23:42 2011 New Revision: 217347 URL: http://svn.freebsd.org/changeset/base/217347 Log: MFC r217208 - regression/date: unset all LC_xxx vars and set LANG/LC_ALL When running with a custom locale setup, it's easy to confuse the date

svn commit: r217348 - stable/7/tools/regression/bin/date

2011-01-13 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 13 12:26:39 2011 New Revision: 217348 URL: http://svn.freebsd.org/changeset/base/217348 Log: MFC r217208 - regression/date: unset all LC_xxx vars and set LANG/LC_ALL When running with a custom locale setup, it's easy to confuse the date

svn commit: r217208 - head/tools/regression/bin/date

2011-01-09 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sun Jan 9 22:05:09 2011 New Revision: 217208 URL: http://svn.freebsd.org/changeset/base/217208 Log: regression/date: unset all LC_xxx vars and set LANG/LC_ALL When running with a custom locale setup, it's easy to confuse the date regression tests

svn commit: r217064 - head/tools/regression/acct

2011-01-06 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 6 20:05:24 2011 New Revision: 217064 URL: http://svn.freebsd.org/changeset/base/217064 Log: tests: sort fix includes, remove -include from CFLAGS of acct tests - Sort the includes of pack.c, moving sys/*.h files near the top. - Add a

svn commit: r216986 - head/share/misc

2011-01-05 Thread Giorgos Keramidas
] joel [label=Joel dahl\nj...@freebsd.org\n2005/04/05] keramida [label=Giorgos keramidas\nkeram...@freebsd.org\n2001/10/12] @@ -111,6 +113,7 @@ keramida - danger keramida - gabor keramida - ganbold keramida - garys +keramida - gjb keramida - pav marck - bvs

svn commit: r216987 - head/share/misc

2011-01-05 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Jan 5 09:45:20 2011 New Revision: 216987 URL: http://svn.freebsd.org/changeset/base/216987 Log: Glen Barber is co-mentored by me and jkois, so add another relationship edge to the committer graph to show this. Modified:

Re: svn commit: r212384 - head/sys/boot/zfs

2010-09-09 Thread Giorgos Keramidas
On Thu, 9 Sep 2010 21:19:10 + (UTC), Pawel Jakub Dawidek p...@freebsd.org wrote: Author: pjd Date: Thu Sep 9 21:19:09 2010 New Revision: 212384 URL: http://svn.freebsd.org/changeset/base/212384 Log: Ignore log vdevs. MFC after: 2 weeks --- head/sys/boot/zfs/zfsimpl.c

Re: svn commit: r212384 - head/sys/boot/zfs

2010-09-09 Thread Giorgos Keramidas
On Fri, 10 Sep 2010 06:44:52 +0200, Pawel Jakub Dawidek p...@freebsd.org wrote: On Fri, Sep 10, 2010 at 06:13:21AM +0300, Giorgos Keramidas wrote: ZPOOL_CONFIG_IS_LOG is not visible in zfsimpl.c and it breaks the build here with: /usr/src/sys/boot/zfs/zfsimpl.c: In function 'vdev_probe

svn commit: r210189 - stable/8/usr.sbin/fifolog/lib

2010-07-17 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Jul 17 07:56:01 2010 New Revision: 210189 URL: http://svn.freebsd.org/changeset/base/210189 Log: MFC r209871 from /head Fix reading of empty fifolog files. When we don't have anything to inflate, skip the rest of the fifolog reader code to

svn commit: r210190 - stable/7/usr.sbin/fifolog/lib

2010-07-17 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Jul 17 07:59:53 2010 New Revision: 210190 URL: http://svn.freebsd.org/changeset/base/210190 Log: MFC r209871 from /head Fix reading of empty fifolog files. When we don't have anything to inflate, skip the rest of the fifolog reader

svn commit: r207794 - stable/7/usr.sbin/iostat

2010-05-08 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat May 8 20:02:39 2010 New Revision: 207794 URL: http://svn.freebsd.org/changeset/base/207794 Log: MFC r196254 iostat: add a bit of space between tty in/out columns The columns for tty input and output may bump against each other if the tty output

svn commit: r206862 - stable/7/lib/libgssapi

2010-04-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Apr 19 20:48:27 2010 New Revision: 206862 URL: http://svn.freebsd.org/changeset/base/206862 Log: MFC 173187 Remove duplicate (but commented out) .Sh HISTORY section heading and add a missing .El request. Modified:

svn commit: r206863 - stable/7/lib/libgssapi

2010-04-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Apr 19 20:51:54 2010 New Revision: 206863 URL: http://svn.freebsd.org/changeset/base/206863 Log: MFC 173188 Remove duplicate (but commented out) .Sh HISTORY section heading. It almost shadows the ending .El request of a list, which seems to

svn commit: r206867 - stable/7/lib/libgssapi

2010-04-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Apr 19 20:56:04 2010 New Revision: 206867 URL: http://svn.freebsd.org/changeset/base/206867 Log: MFC 173190 Remove an extra (commented out) .Sh HISTORY section heading, to avoid the risk of shadowing the following .El request, strip eol spaces

svn commit: r206872 - stable/7/lib/libgssapi

2010-04-19 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Apr 19 21:02:54 2010 New Revision: 206872 URL: http://svn.freebsd.org/changeset/base/206872 Log: MFC 173194 Remove an extra (commented out) .Sh HISTORY section heading, to avoid the risk of shadowing the following .El request, and delete an

svn commit: r205978 - head/share/man/man7

2010-03-31 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Wed Mar 31 12:52:19 2010 New Revision: 205978 URL: http://svn.freebsd.org/changeset/base/205978 Log: Document DEBUG_FLAGS in a more visible place, in the build(7) manpage Noticed by: Alexander Best alexbestms.at.wwu.de Reviewed by:jhb MFC

Re: svn commit: r204165 - head/usr.sbin/chown

2010-02-21 Thread Giorgos Keramidas
On Sun, 21 Feb 2010 10:14:06 + (UTC), Gavin Atkinson ga...@freebsd.org wrote: Author: gavin Date: Sun Feb 21 10:14:06 2010 New Revision: 204165 URL: http://svn.freebsd.org/changeset/base/204165 Log: Add a -x option to chown(8)/chgrp(1) similar to the same option in du(1), cp(1)

svn commit: r201882 - head/sys/dev/iwn

2010-01-08 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Jan 9 04:00:22 2010 New Revision: 201882 URL: http://svn.freebsd.org/changeset/base/201882 Log: Revert iwn channel-argument handling of set_txpower() to r201822 Pass the channel argument as a real argument and not through RXON. The RXON

Re: svn commit: r201209 - in head/sys: conf contrib/dev/iwn dev/iwn modules/iwnfw modules/iwnfw/iwn1000 modules/iwnfw/iwn4965 modules/iwnfw/iwn5000 modules/iwnfw/iwn6000

2009-12-30 Thread Giorgos Keramidas
On Tue, 29 Dec 2009 19:47:34 + (UTC), Rui Paulo rpa...@freebsd.org wrote: Author: rpaulo Date: Tue Dec 29 19:47:34 2009 New Revision: 201209 URL: http://svn.freebsd.org/changeset/base/201209 Log: iwn(4) update. Notable changes: * new firmware * untested support for 1000 and 6000

Re: svn commit: r201209 - in head/sys: conf contrib/dev/iwn dev/iwn modules/iwnfw modules/iwnfw/iwn1000 modules/iwnfw/iwn4965 modules/iwnfw/iwn5000 modules/iwnfw/iwn6000

2009-12-30 Thread Giorgos Keramidas
On Wed, 30 Dec 2009 15:55:34 +, Rui Paulo rpa...@freebsd.org wrote: On 30 Dec 2009, at 11:40, Giorgos Keramidas wrote: First of all thanks for all the updates :-) The new firmware seems to have a few problems when it tries to initialize my laptop's iwn0 interface. The laptop

svn commit: r199985 - head/lib/libc/sys

2009-11-30 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Dec 1 06:12:31 2009 New Revision: 199985 URL: http://svn.freebsd.org/changeset/base/199985 Log: Describe what setpgid(2) does when pgid=0. The text has been copied from NetBSD's manpage, and it also matches the behavior described by the Open

Re: svn commit: r199050 - in head/sys: conf dev/ata

2009-11-10 Thread Giorgos Keramidas
On Sun, 8 Nov 2009 14:33:19 + (UTC), Alexander Motin m...@freebsd.org wrote: Author: mav Date: Sun Nov 8 14:33:19 2009 New Revision: 199050 URL: http://svn.freebsd.org/changeset/base/199050 Log: Introduce define and kernel option ATA_REQUEST_TIMEOUT to control ATA(4) command

Re: svn commit: r198590 - head/sys/kern

2009-10-30 Thread Giorgos Keramidas
The patch works fine so far. I haven't seen any other panics of this sort, for around 5 hours of running with a patched kernel. On Fri, 30 Oct 2009 05:22:40 +0200, Kostik Belousov kostik...@gmail.com wrote: Could you, please, test the following patch ? What application did exposed the issue ?

Re: svn commit: r198590 - head/sys/kern

2009-10-29 Thread Giorgos Keramidas
On Thu, 29 Oct 2009 14:34:24 + (UTC), Konstantin Belousov k...@freebsd.org wrote: Author: kib Date: Thu Oct 29 14:34:24 2009 New Revision: 198590 URL: http://svn.freebsd.org/changeset/base/198590 Log: Trapsignal() calls kern_sigprocmask() when delivering catched signal with proc

Re: svn commit: r198590 - head/sys/kern

2009-10-29 Thread Giorgos Keramidas
No, this was caused by the r198507 fragment of postsig(), as well as a fragment from the trapsignal(), that added the call to kern_sigprocmask() instead of direct manipulation of thread signal mask. AFAICT, postsig() is called with proc-p_sigacts-ps_mtx locked, so when we are recursing when

Re: svn commit: r198486 - head/sys/dev/ata

2009-10-26 Thread Giorgos Keramidas
On Mon, 26 Oct 2009 11:20:15 + (UTC), Alexander Motin m...@freebsd.org wrote: Author: mav Date: Mon Oct 26 11:20:14 2009 New Revision: 198486 URL: http://svn.freebsd.org/changeset/base/198486 Log: Increase ATA command timeouts. Some drives need more then 5s to spin-up. On Mon, 26

svn commit: r196255 - stable/8/usr.sbin/iostat

2009-08-15 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Aug 15 18:03:34 2009 New Revision: 196255 URL: http://svn.freebsd.org/changeset/base/196255 Log: MFC 196254 - iostat: add a bit of space between tty in/out columns The columns for tty input and output may bump against each other if the tty

Re: svn commit: r196254 - head/usr.sbin/iostat

2009-08-15 Thread Giorgos Keramidas
On Sat, 15 Aug 2009 20:37:28 +0200, Ivan Voras ivo...@freebsd.org wrote: 2009/8/15 Giorgos Keramidas keram...@freebsd.org: Author: keramida (doc committer) Date: Sat Aug 15 17:57:21 2009 New Revision: 196254 URL: http://svn.freebsd.org/changeset/base/196254 Log:  iostat: add a bit of space

svn commit: r195683 - svnadmin/conf

2009-07-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Jul 14 15:42:13 2009 New Revision: 195683 URL: http://svn.freebsd.org/changeset/base/195683 Log: Please welcome back Matthew Jacob (mjacob) who is interested in doing some mass storage support. Approved by: core@ Modified:

Re: svn commit: r194910 - in head: lib/libc/gen lib/libc/include lib/libc/sys sys/compat/freebsd32 sys/compat/linux sys/compat/svr4 sys/i386/ibcs2 sys/kern sys/sys usr.bin/ipcs

2009-06-24 Thread Giorgos Keramidas
On Wed, 24 Jun 2009 21:10:52 + (UTC), John Baldwin j...@freebsd.org wrote: Author: jhb Date: Wed Jun 24 21:10:52 2009 New Revision: 194910 URL: http://svn.freebsd.org/changeset/base/194910 Log: Change the ABI of some of the structures used by the SYSV IPC API: - The existing

Re: svn commit: r194910 - in head: lib/libc/gen lib/libc/include lib/libc/sys sys/compat/freebsd32 sys/compat/linux sys/compat/svr4 sys/i386/ibcs2 sys/kern sys/sys usr.bin/ipcs

2009-06-24 Thread Giorgos Keramidas
On Thu, 25 Jun 2009 05:26:20 +0300, Giorgos Keramidas keram...@ceid.upatras.gr wrote: Now that oshmctl is declared as static, it needs a visible prototype. Perhaps something like this? I accidentally diffed only part of the kernel. Another tiny change is also needed to ibcs2, for SHRT_MAX

Re: svn commit: r192943 - head/usr.bin/truss

2009-05-27 Thread Giorgos Keramidas
On Thu, 28 May 2009 00:38:24 + (UTC), Xin LI delp...@freebsd.org wrote: Author: delphij Date: Thu May 28 00:38:24 2009 New Revision: 192943 URL: http://svn.freebsd.org/changeset/base/192943 Log: Correct off-by-one issue in truss(1) which happens when system call number is

Re: svn commit: r190655 - head/sys/kern

2009-04-03 Thread Giorgos Keramidas
On Thu, 2 Apr 2009 21:16:20 + (UTC), Peter Wemm pe...@freebsd.org wrote: Author: peter Date: Thu Apr 2 21:16:20 2009 New Revision: 190655 URL: http://svn.freebsd.org/changeset/base/190655 Log: vn_vptocnp() unlocks the name cache and forgets to re-lock it before returning in one

Re: svn commit: r189539 - head/sys/kern

2009-03-10 Thread Giorgos Keramidas
On Sun, 8 Mar 2009 19:05:54 + (UTC), Joe Marcus Clarke mar...@freebsd.org wrote: Author: marcus (doc,ports committer) Date: Sun Mar 8 19:05:53 2009 New Revision: 189539 URL: http://svn.freebsd.org/changeset/base/189539 Log: Add a default implementation for VOP_VPTOCNP(9) which scans

Re: svn commit: r188726 - head/sys/dev/firewire

2009-02-17 Thread Giorgos Keramidas
On Tue, 17 Feb 2009 19:37:04 + (UTC), Sean Bruno sbr...@freebsd.org wrote: Author: sbruno Date: Tue Feb 17 19:37:04 2009 New Revision: 188726 URL: http://svn.freebsd.org/changeset/base/188726 Log: Introduce 1394a-2000 extended PHY Self ID packets. This breaks /head/usr.sbin/fwcontrol

Re: svn commit: r188742 - head/usr.sbin/fwcontrol

2009-02-17 Thread Giorgos Keramidas
by: Giorgos Keramidas keram...@ceid.upatras.gr MFC after: 2 weeks That would be just 'keramida', sorry for not using my FreeBSD email. Thanks for the quick fix, I've just installed the patched version and it works fine ;) ___ svn-src-all

svn commit: r187997 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb dev/sound/pci

2009-02-01 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Feb 2 04:48:32 2009 New Revision: 187997 URL: http://svn.freebsd.org/changeset/base/187997 Log: MFC 187375 from /head Add support for CMedia CMI120. PR: kern/123640 Approved by: ariff Modified: stable/7/sys/ (props changed)

svn commit: r187998 - in stable/6/sys: . contrib/pf dev/cxgb dev/sound/pci

2009-02-01 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Feb 2 04:53:39 2009 New Revision: 187998 URL: http://svn.freebsd.org/changeset/base/187998 Log: MFC 187375 from /head Add support for CMedia CMI120. PR: kern/123640 Approved by: ariff Modified: stable/6/sys/ (props changed)

svn commit: r187999 - stable/7/share/man/man4

2009-02-01 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Feb 2 04:57:36 2009 New Revision: 187999 URL: http://svn.freebsd.org/changeset/base/187999 Log: MFC 187935 from /head Sometimes, depending on the bpf filter rules used in $PATTERN, the example script of the manpage feeds awk(1) with values

svn commit: r188000 - stable/6/share/man/man4

2009-02-01 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Feb 2 04:59:00 2009 New Revision: 188000 URL: http://svn.freebsd.org/changeset/base/188000 Log: MFC 187935 from /head Sometimes, depending on the bpf filter rules used in $PATTERN, the example script of the manpage feeds awk(1) with values

svn commit: r187951 - stable/6/share/man/man7

2009-01-31 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Jan 31 12:29:12 2009 New Revision: 187951 URL: http://svn.freebsd.org/changeset/base/187951 Log: MFC 166076 from /head : bms | 2007-01-18 00:23:28 +0200 : : Document the loader tunables which control hard process memory limits. : :

svn commit: r187922 - head/bin/dd

2009-01-30 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 30 16:23:57 2009 New Revision: 187922 URL: http://svn.freebsd.org/changeset/base/187922 Log: Bump .Dd for r187609 Modified: head/bin/dd/dd.1 Modified: head/bin/dd/dd.1

svn commit: r187923 - stable/7/bin/dd

2009-01-30 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 30 16:28:32 2009 New Revision: 187923 URL: http://svn.freebsd.org/changeset/base/187923 Log: MFC 187922,187609 from /head Add an example of using bs=2048 to duplicate data CD-ROMs. This should be a bit useful for users who look at the

svn commit: r187924 - stable/6/bin/dd

2009-01-30 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 30 16:32:26 2009 New Revision: 187924 URL: http://svn.freebsd.org/changeset/base/187924 Log: MFC 187922,187609 from /head Add an example of using bs=2048 to duplicate data CD-ROMs. This should be a bit useful for users who look at the

svn commit: r187925 - in stable/7/tools/regression/usr.bin: . tr

2009-01-30 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 30 17:26:15 2009 New Revision: 187925 URL: http://svn.freebsd.org/changeset/base/187925 Log: MFC 175288 and 180208 from /head : r175288 | keramida | 2008-01-13 10:33:20 +0200 (Sun, 13 Jan 2008) | 4 lines : : Add a new set of regression

svn commit: r187926 - in stable/6/tools/regression/usr.bin: . tr

2009-01-30 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 30 17:29:26 2009 New Revision: 187926 URL: http://svn.freebsd.org/changeset/base/187926 Log: MFC 175288 and 180208 from /head : r175288 | keramida | 2008-01-13 10:33:20 +0200 (Sun, 13 Jan 2008) | 4 lines : : Add a new set of regression

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

2009-01-30 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 30 19:33:04 2009 New Revision: 187935 URL: http://svn.freebsd.org/changeset/base/187935 Log: Sometimes, depending on the bpf filter rules used in $PATTERN, the example script of the manpage feeds awk(1) with values larger than UINT32_MAX. Then

Re: svn commit: r187805 - head/lib/libc/stdio

2009-01-28 Thread Giorgos Keramidas
On Wed, 28 Jan 2009 01:11:21 + (UTC), Tom Rhodes trho...@freebsd.org wrote: Author: trhodes Date: Wed Jan 28 01:11:20 2009 New Revision: 187805 URL: http://svn.freebsd.org/changeset/base/187805 Log: Remove comment about clearerr() being the only method of clearing the EOF

Re: svn commit: r187805 - head/lib/libc/stdio

2009-01-28 Thread Giorgos Keramidas
On Wed, 28 Jan 2009 09:07:51 -0500, John Baldwin j...@freebsd.org wrote: On Wednesday 28 January 2009 8:55:37 am Tom Rhodes wrote: On Wed, 28 Jan 2009 15:09:56 +0200 Giorgos Keramidas keram...@ceid.upatras.gr wrote: On Wed, 28 Jan 2009 01:11:21 + (UTC), Tom Rhodes trho...@freebsd.org

Re: svn commit: r187782 - in head: etc/rc.d share/man/man5

2009-01-28 Thread Giorgos Keramidas
On Thu, 29 Jan 2009 13:28:39 +0800, Rong-en Fan gra...@gmail.com wrote: Shouldn't we keep ntp running after the clock is adjusted? This is correct too. The effect of `ntpd_sync_on_start' is supposed to be the same as if we run `ntpdate' before the real ntpd starts, so this option only

svn commit: r187879 - in head: etc/rc.d share/man/man5

2009-01-28 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 29 06:43:29 2009 New Revision: 187879 URL: http://svn.freebsd.org/changeset/base/187879 Log: Backout change 187782. It inhibits ntpd from starting at all when ntpd_sync_on_start is set. Noticed by: rafan Modified: head/etc/rc.d/ntpd

svn commit: r187782 - in head: etc/rc.d share/man/man5

2009-01-27 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Tue Jan 27 20:13:24 2009 New Revision: 187782 URL: http://svn.freebsd.org/changeset/base/187782 Log: When synchronizing the clock at system startup time, use both the -g and -q options. They do a slightly different thing and both are necessary when

Re: svn commit: r187782 - in head: etc/rc.d share/man/man5

2009-01-27 Thread Giorgos Keramidas
On Wed, 28 Jan 2009 12:50:22 +0800, Rong-en Fan gra...@gmail.com wrote: On Wed, Jan 28, 2009 at 4:13 AM, Giorgos Keramidas keram...@freebsd.org wrote: Modified: head/etc/rc.d/ntpd == --- head/etc/rc.d/ntpd Tue Jan

svn commit: r187628 - stable/7/bin/ln

2009-01-23 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 23 11:54:31 2009 New Revision: 187628 URL: http://svn.freebsd.org/changeset/base/187628 Log: MFC 173702 from /head Express in the usage() and SYNOPSIS that -F depends on -s, and that -f and -i are exclusive. This reduces diffs of

svn commit: r187609 - head/bin/dd

2009-01-22 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Fri Jan 23 03:46:44 2009 New Revision: 187609 URL: http://svn.freebsd.org/changeset/base/187609 Log: Add an example of using bs=2048 to duplicate data CD-ROMs. This should be a bit useful for users who look at the manpage and then try to copy data

svn commit: r187375 - head/sys/dev/sound/pci

2009-01-17 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sun Jan 18 04:29:42 2009 New Revision: 187375 URL: http://svn.freebsd.org/changeset/base/187375 Log: Add support for CMedia CMI120. PR: kern/123640 Approved by: ariff MFC after:2 weeks Modified: head/sys/dev/sound/pci/cmi.c

svn commit: r187263 - stable/7/sbin/mdconfig

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 02:54:40 2009 New Revision: 187263 URL: http://svn.freebsd.org/changeset/base/187263 Log: MFC 173507 from /head. Instead of hardcoding md10 as the device node in the cd9660 example, use a trick submitted by Ruslan. Modified:

svn commit: r187269 - stable/6/sbin/mdconfig

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 03:35:51 2009 New Revision: 187269 URL: http://svn.freebsd.org/changeset/base/187269 Log: MFC 173507 from /head Instead of hardcoding md10 as the device node in the cd9660 example, use a trick submitted by Ruslan. Modified:

svn commit: r187271 - stable/6/usr.sbin/iostat

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 03:46:14 2009 New Revision: 187271 URL: http://svn.freebsd.org/changeset/base/187271 Log: MFC 175562 Repeat iostat header after rows-3 instead of a hardcoded 20. Use ioctl() to get the window size in iostat(8), and force a new header

svn commit: r187276 - stable/6/usr.bin/du

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 04:26:45 2009 New Revision: 187276 URL: http://svn.freebsd.org/changeset/base/187276 Log: MFC 176561 Implement from scratch a -l option for du(1), to match the same option of the GNU utility. The default behavior of our original `du' is

svn commit: r187278 - in stable/7/lib/libc: . regex string

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 04:31:55 2009 New Revision: 187278 URL: http://svn.freebsd.org/changeset/base/187278 Log: MFC 182795 from /head Add two example regexps: (1) one for matching all the characters that belong in a character class, and (2) one for matching

svn commit: r187279 - in stable/6/lib/libc: . inet regex sys

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 04:32:53 2009 New Revision: 187279 URL: http://svn.freebsd.org/changeset/base/187279 Log: MFC 182795 from /head Add two example regexps: (1) one for matching all the characters that belong in a character class, and (2) one for matching

svn commit: r187280 - stable/7/sbin/ifconfig

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 04:39:44 2009 New Revision: 187280 URL: http://svn.freebsd.org/changeset/base/187280 Log: MFC 184057 from /head Modified: stable/7/sbin/ifconfig/ifconfig.8 Modified: stable/7/sbin/ifconfig/ifconfig.8

svn commit: r187281 - stable/6/sbin/ifconfig

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 04:43:09 2009 New Revision: 187281 URL: http://svn.freebsd.org/changeset/base/187281 Log: MFC 184057 from /head: Tiny wording nits. Modified: stable/6/sbin/ifconfig/ifconfig.8 Modified: stable/6/sbin/ifconfig/ifconfig.8

svn commit: r187282 - stable/7/usr.bin/vmstat

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 04:48:06 2009 New Revision: 187282 URL: http://svn.freebsd.org/changeset/base/187282 Log: MFC 184645 from /head Repeat vmstat header after window.rows instead of a hardcoded 20. Use ioctl() to get the window size in vmstat(8), and

svn commit: r187285 - stable/7/usr.bin/wc

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 04:54:43 2009 New Revision: 187285 URL: http://svn.freebsd.org/changeset/base/187285 Log: MFC 185714 from /head Add a -L option to wc(1), for finger compatibility with the GNU wc utility. The -L option can be used to report the length of

svn commit: r187288 - stable/7/share/man/man5

2009-01-14 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 15 05:04:31 2009 New Revision: 187288 URL: http://svn.freebsd.org/changeset/base/187288 Log: The description of the various securelevels has moved to the security.7 manpage a while ago. Noticed by: simon Modified:

svn commit: r186917 - head/share/man/man5

2009-01-08 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Thu Jan 8 23:50:32 2009 New Revision: 186917 URL: http://svn.freebsd.org/changeset/base/186917 Log: The description of the various securelevels has moved to the security.7 manpage a while ago. MFC after:1 week Noticed by: simon Modified:

svn commit: r186783 - head/share/man/man7

2009-01-05 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Mon Jan 5 16:25:36 2009 New Revision: 186783 URL: http://svn.freebsd.org/changeset/base/186783 Log: Document the NO_XXX options supported by our Makefile.inc1. Noticed by: simon Reviewed by: imp MFC after:1 week Modified:

svn commit: r185697 - releng/7.1/usr.bin/xargs

2008-12-06 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Dec 6 13:37:15 2008 New Revision: 185697 URL: http://svn.freebsd.org/changeset/base/185697 Log: MFC: r175680, r175728. Document the no-op -r option of BSD xargs(1). PR: docs/106416 Submitted by: Pete Slagle, freebsd-stable at

svn commit: r185698 - in stable/7/sys: . boot/forth

2008-12-06 Thread Giorgos Keramidas
Author: keramida (doc committer) Date: Sat Dec 6 13:38:53 2008 New Revision: 185698 URL: http://svn.freebsd.org/changeset/base/185698 Log: MFC: r175379, r175380 Document that loader(8) stops reading `loader.conf' when it encounters a syntax error, and add a tip about adding first the

  1   2   >