Re: svn commit: r231669 - head/sys/fs/tmpfs

2012-02-14 Thread Tijl Coosemans
On Tuesday 14 February 2012 12:24:24 Tijl Coosemans wrote: Author: tijl Date: Tue Feb 14 11:24:24 2012 New Revision: 231669 URL: http://svn.freebsd.org/changeset/base/231669 Log: Replace PRIdMAX with jd in a printf call. Cast the corresponding value to intmax_t instead of uintmax_t

svn commit: r231678 - in head: include/rpc sys/dev/mpt/mpilib sys/net

2012-02-14 Thread Tijl Coosemans
Author: tijl Date: Tue Feb 14 12:50:20 2012 New Revision: 231678 URL: http://svn.freebsd.org/changeset/base/231678 Log: Change some headers such that lang/gcc* ports no longer patch them. The lang/gcc* ports patch headers where they think something is non-standard. These patched headers

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

2012-01-28 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 28 18:35:10 2012 New Revision: 230648 URL: http://svn.freebsd.org/changeset/base/230648 Log: Move descriptions of file caching commands out of the file locking section. Approved by: kib (mentor) Modified: head/lib/libc/sys/fcntl.2 Modified:

svn commit: r230649 - head/usr.bin/hexdump

2012-01-28 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 28 18:49:04 2012 New Revision: 230649 URL: http://svn.freebsd.org/changeset/base/230649 Log: Fix decoding of escape sequences in format strings: - Zero-terminate the resulting string by letting the for-loop copy the terminating zero. - Exit the for-loop after

Re: svn commit: r229794 - head/usr.bin/hexdump

2012-01-16 Thread Tijl Coosemans
On Sunday 08 January 2012 00:15:22 Eitan Adler wrote: Author: eadler (ports committer) Date: Sat Jan 7 23:15:21 2012 New Revision: 229794 URL: http://svn.freebsd.org/changeset/base/229794 Log: - Fix how hexdump parses escape strings From the NetBSD bug: The way how hexdump(1)

Re: svn commit: r228562 - head/sys/sys

2011-12-16 Thread Tijl Coosemans
On Friday 16 December 2011 09:22:24 Ed Schouten wrote: Author: ed Date: Fri Dec 16 08:22:23 2011 New Revision: 228562 URL: http://svn.freebsd.org/changeset/base/228562 Log: Process a lot of feedback from bde@ on sys/cdefs.h: - Add __alignof() for non-GCC and GCC 2.95. - Simply

svn commit: r218266 - head/sys/mips/include

2011-02-04 Thread Tijl Coosemans
Author: tijl Date: Fri Feb 4 13:09:46 2011 New Revision: 218266 URL: http://svn.freebsd.org/changeset/base/218266 Log: Replace __LP64__ with __mips_n64. This partly reverts r217147. Requested by: jmallett, imp Approved by: kib (mentor) Modified: head/sys/mips/include/_inttypes.h

Re: svn commit: r217147 - in head/sys: amd64/include arm/include i386/include ia64/include mips/include powerpc/include sparc64/include sun4v/include

2011-01-09 Thread Tijl Coosemans
On Saturday 08 January 2011 21:30:49 Juli Mallett wrote: On Sat, Jan 8, 2011 at 04:43, Tijl Coosemans t...@freebsd.org wrote: Author: tijl Date: Sat Jan 8 12:43:05 2011 New Revision: 217147 URL: http://svn.freebsd.org/changeset/base/217147 Log: On mixed 32/64 bit architectures (mips

svn commit: r217145 - in head/sys: amd64/include arm/include i386/include ia64/include mips/include powerpc/include sparc64/include sun4v/include

2011-01-08 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 8 11:13:34 2011 New Revision: 217145 URL: http://svn.freebsd.org/changeset/base/217145 Log: Fix types of some values in machine/_limits.h. On some architectures UCHAR_MAX and USHRT_MAX had type unsigned int. However, lacking integer suffixes for types smaller

svn commit: r217146 - in head/sys: arm/include i386/include mips/include powerpc/include sys

2011-01-08 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 8 11:47:55 2011 New Revision: 217146 URL: http://svn.freebsd.org/changeset/base/217146 Log: On 32 bit architectures define (u)int64_t as (unsigned) long long instead of (unsigned) int __attribute__((__mode__(__DI__))). This aligns better with macros such as

svn commit: r217147 - in head/sys: amd64/include arm/include i386/include ia64/include mips/include powerpc/include sparc64/include sun4v/include

2011-01-08 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 8 12:43:05 2011 New Revision: 217147 URL: http://svn.freebsd.org/changeset/base/217147 Log: On mixed 32/64 bit architectures (mips, powerpc) use __LP64__ rather than architecture macros (__mips_n64, __powerpc64__) when 64 bit types (and corresponding macros) are

svn commit: r217155 - in head/sys: mips/include powerpc/include

2011-01-08 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 8 18:00:19 2011 New Revision: 217155 URL: http://svn.freebsd.org/changeset/base/217155 Log: Rename PRIreg helper macro to PRIptr to better reflect its use. Registers and pointers don't always have the same size, e.g. the __mips_n32 ABI (ILP32) has 64 bit

svn commit: r217156 - in head/sys: mips/include powerpc/include

2011-01-08 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 8 18:02:46 2011 New Revision: 217156 URL: http://svn.freebsd.org/changeset/base/217156 Log: White space changes to align comments. The mips and powerpc _inttypes.h are now exactly the same. Approved by: kib (mentor) Modified:

svn commit: r217157 - in head/sys: amd64/include i386/include pc98/include x86/include

2011-01-08 Thread Tijl Coosemans
Author: tijl Date: Sat Jan 8 18:09:48 2011 New Revision: 217157 URL: http://svn.freebsd.org/changeset/base/217157 Log: Copy powerpc/include/_inttypes.h to x86 and replace i386/amd64/pc98 headers with stubs. Approved by: kib (mentor) Added: head/sys/x86/include/_inttypes.h -

svn commit: r217128 - in head: gnu/usr.bin/cc sys/arm/include sys/i386/include sys/mips/include sys/powerpc/include

2011-01-07 Thread Tijl Coosemans
Author: tijl Date: Fri Jan 7 22:57:31 2011 New Revision: 217128 URL: http://svn.freebsd.org/changeset/base/217128 Log: Remove unused support for 64 bit long on 32 bit architectures. It was used mainly to discover and fix some 64-bit portability problems before 64-bit arches were widely

svn commit: r216592 - in head/sys: amd64/include compat/ndis dev/atkbdc dev/lmc dev/sis dev/sound/pci dev/uart i386/include pc98/include x86/include x86/x86

2010-12-20 Thread Tijl Coosemans
Author: tijl Date: Mon Dec 20 16:39:43 2010 New Revision: 216592 URL: http://svn.freebsd.org/changeset/base/216592 Log: Merge amd64 and i386 bus.h and move the resulting header to x86. Replace the original amd64 and i386 headers with stubs. Rename (AMD64|I386)_BUS_SPACE_* to

svn commit: r216558 - head/sys/dev/if_ndis

2010-12-19 Thread Tijl Coosemans
Author: tijl Date: Sun Dec 19 11:14:34 2010 New Revision: 216558 URL: http://svn.freebsd.org/changeset/base/216558 Log: Fix a bug introduced in r216518. The ndis_subsys field holds the PCI subdevice ID in addition to the subvendor ID. Reported by: Paul B Mahol 'onemda gmail com'

svn commit: r216518 - in head/sys/dev: if_ndis le malo sound/pci

2010-12-18 Thread Tijl Coosemans
Author: tijl Date: Sat Dec 18 14:21:28 2010 New Revision: 216518 URL: http://svn.freebsd.org/changeset/base/216518 Log: Use convenience functions where possible instead of accessing the PCI configuration registers directly. Remove pci_enable_io calls where they are redundant. The PCI bus

svn commit: r216519 - head/sys/dev/hifn

2010-12-18 Thread Tijl Coosemans
Author: tijl Date: Sat Dec 18 14:24:24 2010 New Revision: 216519 URL: http://svn.freebsd.org/changeset/base/216519 Log: No need to zero the softc. It's allocated with M_ZERO. Use pci_enable_busmaster instead of setting PCIM_CMD_BUSMASTEREN directly. There's no need to set PCIM_CMD_MEMEN.

svn commit: r216351 - head/lib/csu/ia64

2010-12-10 Thread Tijl Coosemans
Author: tijl Date: Fri Dec 10 08:53:06 2010 New Revision: 216351 URL: http://svn.freebsd.org/changeset/base/216351 Log: Add a .note.ABI-tag section to ia64 startup files by linking crtbrand.c in crt1.o. On other architectures crtbrand.c is included from crt1.c, but that's not a C source

svn commit: r215856 - in head/sys: amd64/include i386/include x86/include

2010-11-26 Thread Tijl Coosemans
Author: tijl Date: Fri Nov 26 10:59:20 2010 New Revision: 215856 URL: http://svn.freebsd.org/changeset/base/215856 Log: Merge amd64/i386 _align.h by aligning on the size of register_t (copied from powerpc). Reviewed by: imp, jhb Approved by: kib (mentor) Added:

svn commit: r215439 - in head/gnu/usr.bin: binutils/ld cc/cc_tools

2010-11-17 Thread Tijl Coosemans
Author: tijl Date: Wed Nov 17 19:54:01 2010 New Revision: 215439 URL: http://svn.freebsd.org/changeset/base/215439 Log: Let gcc and ld know where to find 32 bit libraries on amd64. Reviewed by: arch@ Approved by: kib (mentor) Modified: head/gnu/usr.bin/binutils/ld/Makefile.amd64

svn commit: r212852 - head/sys/sys

2010-09-19 Thread Tijl Coosemans
Author: tijl Date: Sun Sep 19 12:01:50 2010 New Revision: 212852 URL: http://svn.freebsd.org/changeset/base/212852 Log: Indicate that POSIX semaphores are always supported. Reported by: avilla Reviewed by: davidxu Approved by: kib (mentor) Modified: head/sys/sys/unistd.h

svn commit: r210576 - in head/sys/dev/usb: . quirk

2010-07-28 Thread Tijl Coosemans
Author: tijl Date: Wed Jul 28 18:56:01 2010 New Revision: 210576 URL: http://svn.freebsd.org/changeset/base/210576 Log: Add quirk for Apacer HT202 USB 2.0 Flash Drive. PR: usb/107243 Approved by: kib (mentor) MFC after:1 week Modified:

svn commit: r210294 - in head/sys: i386/i386 pc98/pc98

2010-07-20 Thread Tijl Coosemans
Author: tijl Date: Tue Jul 20 12:36:36 2010 New Revision: 210294 URL: http://svn.freebsd.org/changeset/base/210294 Log: Store fsbase and gsbase in the right fields of the mcontext. They were switched. PR: i386/148344 Approved by: kib (mentor) MFC after:1 week

svn commit: r210200 - in head: share/misc usr.bin/calendar/calendars

2010-07-17 Thread Tijl Coosemans
(r210200) @@ -192,6 +192,7 @@ syrinx [label=Shteryana Shopova\nsyrinx takawata [label=Takanori watanabe\ntakaw...@freebsd.org\n2000/07/06] thompsa [label=Andrew thompson\nthom...@freebsd.org\n2005/05/25] ticso [label=Bernd walter\nti...@freebsd.org\n2002/01/31] +tijl [label=Tijl coosemans

<    1   2   3