On Thu, Jul 11, 2013, David Chisnall wrote:
> +static __inline int
> +__inline_isnan(double __x)
> +{
> +
> + return (__x != __x);
> +}
> +
> +static __inline int
> +__inline_isnanf(float __x)
> +{
> +
> + return (__x != __x);
> +}
> +
> +static __inline int
> +__inline_isnanl(long double _
Author: cognet
Date: Mon Jul 29 08:07:35 2013
New Revision: 253762
URL: http://svnweb.freebsd.org/changeset/base/253762
Log:
Define KDB_STOPPEDPCB, so that we can access the backtraces of threads running
on other cores.
Modified:
head/sys/arm/include/kdb.h
head/sys/arm/include/smp.h
Modi
Author: theraven
Date: Mon Jul 29 08:32:13 2013
New Revision: 253764
URL: http://svnweb.freebsd.org/changeset/base/253764
Log:
Reenable the isnan(double) / isinf(double) declarations when targeting C89 +
SUSv2 mode.
Modified:
head/lib/msun/src/math.h
Modified: head/lib/msun/src/math.h
=
On Mon, 29 Jul 2013, David Chisnall wrote:
Author: theraven
Date: Mon Jul 29 08:32:13 2013
New Revision: 253764
URL: http://svnweb.freebsd.org/changeset/base/253764
Log:
Reenable the isnan(double) / isinf(double) declarations when targeting C89 +
SUSv2 mode.
This isn't reenabling. but break
Bruce,
It's very difficult within this verbiage to work out what you believe the
correct code should look like. Please either provide a patch or commit the fix
yourself.
David
On 29 Jul 2013, at 11:59, Bruce Evans wrote:
> On Mon, 29 Jul 2013, David Chisnall wrote:
>
>> Author: theraven
>>
On Tue, Jul 9, 2013 at 12:08 PM, Andrey V. Elsukov wrote:
> Author: ae
> Date: Tue Jul 9 10:08:13 2013
> New Revision: 253088
> URL: http://svnweb.freebsd.org/changeset/base/253088
>
> Log:
> Migrate structs ahstat, espstat, ipcompstat, ipipstat, pfkeystat,
> ipsec4stat, ipsec6stat to PCPU co
Author: theraven
Date: Mon Jul 29 12:33:03 2013
New Revision: 253766
URL: http://svnweb.freebsd.org/changeset/base/253766
Log:
Restore the longer form of the _Generic. The short form does not work in C++.
Modified:
head/lib/msun/src/math.h
Modified: head/lib/msun/src/math.h
Author: ae
Date: Mon Jul 29 12:49:32 2013
New Revision: 253767
URL: http://svnweb.freebsd.org/changeset/base/253767
Log:
Include stdint.h to fix build.
Pointed by: Olivier Cochard-Labbé
Modified:
head/tools/tools/crypto/ipsecstats.c
Modified: head/tools/tools/crypto/ipsecstats.c
=
Author: cognet
Date: Mon Jul 29 12:55:37 2013
New Revision: 253768
URL: http://svnweb.freebsd.org/changeset/base/253768
Log:
Explicitely include , so that we get the definition of
struct pcb.
Submitted by: Zbyszek Bodek
Pointy hat to:cognet
Modified:
head/sys/arm/include/smp
On 29 Jul 2013, at 08:05, David Schultz wrote:
> On Thu, Jul 11, 2013, David Chisnall wrote:
>> +static __inline int
>> +__inline_isnan(double __x)
>> +{
>> +
>> +return (__x != __x);
>> +}
>> +
>> +static __inline int
>> +__inline_isnanf(float __x)
>> +{
>> +
>> +return (__x != __x);
>>
On 29.07.2013 10:07, Olivier Houchard wrote:
> Author: cognet
> Date: Mon Jul 29 08:07:35 2013
> New Revision: 253762
> URL: http://svnweb.freebsd.org/changeset/base/253762
>
> Log:
> Define KDB_STOPPEDPCB, so that we can access the backtraces of threads
> running
> on other cores.
>
> Modif
Author: ae
Date: Mon Jul 29 13:17:18 2013
New Revision: 253769
URL: http://svnweb.freebsd.org/changeset/base/253769
Log:
Fix a possible NULL-pointer dereference on the pfsync(4) reconfiguration.
Reported by: Eugene M. Zheganin
Modified:
head/sys/netpfil/pf/if_pfsync.c
Modified: head/sy
On Mon, 29 Jul 2013, David Schultz wrote:
On Thu, Jul 11, 2013, David Chisnall wrote:
+static __inline int
+__inline_isnan(double __x)
+{
+
+ return (__x != __x);
+}
+
+static __inline int
+__inline_isnanf(float __x)
+{
+
+ return (__x != __x);
+}
+
+static __inline int
+__inline_is
On Mon, 29 Jul 2013, David Chisnall wrote:
Bruce,
It's very difficult within this verbiage to work out what you believe the
correct code should look like. Please either provide a patch or commit the fix
yourself.
I prefer to give details.
[Context lost to top posting.]
Bruce
On 29 Jul 2013, at 14:44, Bruce Evans wrote:
>> It's very difficult within this verbiage to work out what you believe the
>> correct code should look like. Please either provide a patch or commit the
>> fix yourself.
>
> I prefer to give details.
Details are useful when they serve to expand
Author: avg
Date: Mon Jul 29 16:56:38 2013
New Revision: 253772
URL: http://svnweb.freebsd.org/changeset/base/253772
Log:
dtrace disassembler: take the latest/last CDDL code from OpenSolaris
OpenSolaris version is:
13108:33bb8a0301ab
6762020 Disassembly support for Intel Advanced Vector
Author: avg
Date: Mon Jul 29 17:03:42 2013
New Revision: 253773
URL: http://svnweb.freebsd.org/changeset/base/253773
Log:
[fixup] add Makefile changes that should have been committed in r253772
MFC after:3 weeks
X-MFC with: r253772
Modified:
head/sys/modules/dtrace/dtrace/Makefil
Author: jhb
Date: Mon Jul 29 18:44:52 2013
New Revision: 253774
URL: http://svnweb.freebsd.org/changeset/base/253774
Log:
Various fixes to the mlxen(4) driver:
- Remove an incorrect assertion that can trigger when downing an interface.
- Stop the interface during detach to avoid panics when
Author: zont
Date: Mon Jul 29 18:48:51 2013
New Revision: 253775
URL: http://svnweb.freebsd.org/changeset/base/253775
Log:
Unbreak sysctl ABI changes introduced in r253662
Requested by: bde
Modified:
head/sys/vm/vm_param.h
Modified: head/sys/vm/vm_param.h
===
On Saturday, July 27, 2013 12:32:34 pm Sean Bruno wrote:
> Author: sbruno
> Date: Sat Jul 27 16:32:34 2013
> New Revision: 253708
> URL: http://svnweb.freebsd.org/changeset/base/253708
>
> Log:
> At some point after stable/7 the ACPI and ISA interfaces to the IPMI
> controller
> no longer hav
On Mon, 2013-07-29 at 10:54 -0400, John Baldwin wrote:
> On Saturday, July 27, 2013 12:32:34 pm Sean Bruno wrote:
> > Author: sbruno
> > Date: Sat Jul 27 16:32:34 2013
> > New Revision: 253708
> > URL: http://svnweb.freebsd.org/changeset/base/253708
> >
> > Log:
> > At some point after stable/7
TO PEOPLE WHO THINK THAT FreeBSD 10
disable the most expensive debugging functionality run
"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20130729:
+ random(4) and actual RNG implementations (aka, adaptors) have been
+ further decoupled. If you are runn
On Mon, 2013-07-29 at 12:59 -0700, Sean Bruno wrote:
> On Mon, 2013-07-29 at 10:54 -0400, John Baldwin wrote:
> > On Saturday, July 27, 2013 12:32:34 pm Sean Bruno wrote:
> > > Author: sbruno
> > > Date: Sat Jul 27 16:32:34 2013
> > > New Revision: 253708
> > > URL: http://svnweb.freebsd.org/change
On Monday, July 29, 2013 3:59:12 pm Sean Bruno wrote:
> On Mon, 2013-07-29 at 10:54 -0400, John Baldwin wrote:
> > On Saturday, July 27, 2013 12:32:34 pm Sean Bruno wrote:
> > > Author: sbruno
> > > Date: Sat Jul 27 16:32:34 2013
> > > New Revision: 253708
> > > URL: http://svnweb.freebsd.org/chang
On Fri, Apr 12, 2013 at 04:25:03PM +, Edward Tomasz Napierala wrote:
> Author: trasz
> Date: Fri Apr 12 16:25:03 2013
> New Revision: 249410
> URL: http://svnweb.freebsd.org/changeset/base/249410
>
> Log:
> Remove ctl(4) from GENERIC. Also remove 'options CTL_DISABLE'
> and kern.cam.ctl.d
Author: jhb
Date: Mon Jul 29 20:48:10 2013
New Revision: 253785
URL: http://svnweb.freebsd.org/changeset/base/253785
Log:
Add a missing prototype.
Pointy hat: me
Modified:
head/sys/ofed/drivers/net/mlx4/en_netdev.c
Modified: head/sys/ofed/drivers/net/mlx4/en_netdev.c
=
Author: obrien
Date: Mon Jul 29 20:58:09 2013
New Revision: 253786
URL: http://svnweb.freebsd.org/changeset/base/253786
Log:
Decouple yarrow from random(4) device.
* Make Yarrow an optional kernel component -- enabled by "YARROW_RNG" option.
The files sha2.c, hash.c, randomdev_soft.c an
On Monday, July 29, 2013 4:21:28 pm Sean Bruno wrote:
> On Mon, 2013-07-29 at 12:59 -0700, Sean Bruno wrote:
> > On Mon, 2013-07-29 at 10:54 -0400, John Baldwin wrote:
> > > On Saturday, July 27, 2013 12:32:34 pm Sean Bruno wrote:
> > > > Author: sbruno
> > > > Date: Sat Jul 27 16:32:34 2013
> > >
Author: cognet
Date: Mon Jul 29 21:32:57 2013
New Revision: 253787
URL: http://svnweb.freebsd.org/changeset/base/253787
Log:
Remove useless cache operations.
Modified:
head/sys/arm/arm/busdma_machdep-v6.c
Modified: head/sys/arm/arm/busdma_machdep-v6.c
On 30.07.2013 0:58, David E. O'Brien wrote:
> Author: obrien
> Date: Mon Jul 29 20:58:09 2013
> New Revision: 253786
> URL: http://svnweb.freebsd.org/changeset/base/253786
>
> Log:
> Decouple yarrow from random(4) device.
>
> * Make Yarrow an optional kernel component -- enabled by "YARROW_
Author: cognet
Date: Mon Jul 29 21:45:39 2013
New Revision: 253788
URL: http://svnweb.freebsd.org/changeset/base/253788
Log:
The errata 727915 requires a different workaround for r2p0, we have to
explicitely clean/invalidate every cache line using way/set operations.
Modified:
head/sys/arm/
On Mon, Jul 29, 2013 at 08:58:10PM +, David E. O'Brien wrote:
> Author: obrien
> Date: Mon Jul 29 20:58:09 2013
> New Revision: 253786
> URL: http://svnweb.freebsd.org/changeset/base/253786
>
> Log:
>
> * If the kernel doesn't have any random_adaptor adapters present
> then the creati
[sbruno_comment_blocks == 4]
>
> The identify function in 7.x has no such check:
>
> static void
> ipmi_isa_identify(driver_t *driver, device_t parent)
> {
> struct ipmi_get_info info;
> uint32_t devid;
>
> if (ipmi_smbios_identify(&info) && info.iface_type != SSIF_MODE &&
>
Author: rpaulo
Date: Tue Jul 30 02:07:57 2013
New Revision: 253789
URL: http://svnweb.freebsd.org/changeset/base/253789
Log:
Import OpenBSD's rsu(4) WLAN driver.
Support chipsets are the Realtek RTL8188SU, RTL8191SU, and RTL8192SU.
Many thanks to Idwer Vollering for porting/writing the ma
Author: rpaulo
Date: Tue Jul 30 02:26:06 2013
New Revision: 253790
URL: http://svnweb.freebsd.org/changeset/base/253790
Log:
Move runfw to modules/usb.
While there, respect MK_SOURCELESS_UCODE.
Discussed with: kevlo
Added:
head/sys/modules/usb/runfw/
- copied from r253789, h
Yes, that would be nice.
-adrian
On 29 July 2013 13:38, Marius Strobl wrote:
> On Fri, Apr 12, 2013 at 04:25:03PM +, Edward Tomasz Napierala wrote:
>> Author: trasz
>> Date: Fri Apr 12 16:25:03 2013
>> New Revision: 249410
>> URL: http://svnweb.freebsd.org/changeset/base/249410
>>
>> Log:
36 matches
Mail list logo