Re: multitouch support in wsmouse 1/3

2016-03-18 Thread Martin Pieuchot
On 13/03/16(Sun) 18:37, Ulf Brosziewski wrote: > The diffs below are a rewrite of the input-processing part of wsmouse. It > adds support for multitouch input. > > I have split the set of diffs into three parts and I will post part 2 and 3 > in separate messages. Part 1 below contains all patches

arm: remove xscale 80200

2016-03-18 Thread Patrick Wildt
Hi, armish and zaurus use the XSCALE 80321 and PXA2X0. 80200 is unused and basically dead code, too, so I think we should remove that, too. This diff is based on the SA1 and IXP425 diffs. Patrick diff --git sys/arch/arm/arm/cpu.c sys/arch/arm/arm/cpu.c index 5c7e385..edb47cd 100644 --- sys/arc

Re: Remove build machinery for non-UTF-8 charsets

2016-03-18 Thread Philip Guenther
On Thursday, March 17, 2016, Jeremie Courreges-Anglas wrote: > > What's the plan regarding this? libc and locale(1) don't use > LOCALE_CHARSETS anymore, we only support UTF-8 and I doubt that we'll > change our mind about that. > > The diff below removes support for non-UTF-8 LC_CTYPE files. It

Re: arm: remove sa1/ixp12x0

2016-03-18 Thread Jonathan Gray
On Fri, Mar 18, 2016 at 04:43:08PM +0100, Patrick Wildt wrote: > Hi, > > next up on the list is the StrongARM and IXP12x0. > > This diff removes most, but keeps the SA1100 headers, > which are still used by zaurus. > > Patrick Here is the diff I had: The only difference seems to be you've gone

Re: New scheduler for OpenBSD

2016-03-18 Thread Mark Kettenis
> From: Bob Beck > Date: Fri, 18 Mar 2016 09:20:35 -0600 > > this is cool .. but > > I would be interested in someone comparing server workloads, as > opposed to interactive GUI response, using this. > > I wouldn't be surprised that inspiriation from BFS would produce > better interactive respo

make armv5te the gcc default

2016-03-18 Thread Jonathan Gray
Instead of armv4 tuned for strongarm switch to an armv5te default to allow additional instructions to be used (clz etc). armish and zaurus are both xscale (armv5te with additional extensions). The builtin gcc defines change from #define __ARM_ARCH_4__ 1 to #define __ARM_ARCH_5TE__ 1 -mthumb-inte

Re: spamd & spamlogd open sync port 8025 as root

2016-03-18 Thread Craig Skinner
Hi Ricardo/All, On 2015-12-18 Fri 20:20 PM |, Craig Skinner wrote: > Hi! > > FYI;- I've noticed spamd & spamlogd open their high ports as root. > > These pf rules work, changing to 'user _spamd' doesn't: > > pass in on $ext_if inet proto udp \ > from $ext_if:network port > 1023 \ >

Re: New scheduler for OpenBSD

2016-03-18 Thread Chris Cappuccio
Alexandre Ratchov [a...@caoua.org] wrote: > On Tue, Mar 15, 2016 at 03:05:47PM +0100, Michal Mazurek wrote: > > > > Please test, and let me know if the performance of something else > > degrades. > > > > With your diff firefox consumes twice less cpu (watched the same > video with and without th

Re: Implement delay() using TSC

2016-03-18 Thread Masao Uebayashi
On Wed, Mar 16, 2016 at 11:25:11PM -0700, Mike Larkin wrote: > On Thu, Mar 17, 2016 at 09:44:22AM +0900, Masao Uebayashi wrote: > > Implement delay() using TSC > > > > - Calculate delay using 64-bit RDTSC instruction > > - Enable tsc_delay() as delay(9) backend > > - Use tsc_delay() only when TSC

Re: IB700 watchdog

2016-03-18 Thread Mark Kettenis
> Date: Thu, 17 Mar 2016 14:28:04 +0900 > From: Masao Uebayashi > > This tiny driver is only meant for a backup watchdog configuration on > QEMU, whose ICH watchdog, supported by ichwdt(4), seems broken. > > ib700wdt(4) supports only 0-30 second timeouts but in practice it should > be good enoug

Re: CPUID in amd64/i386 boot code

2016-03-18 Thread Mike Belopuhov
On Thu, Mar 17, 2016 at 16:39 +0100, Mike Belopuhov wrote: > On Wed, Mar 16, 2016 at 23:47 -0700, Mike Larkin wrote: > > On Thu, Mar 17, 2016 at 03:31:45PM +0900, Masao Uebayashi wrote: > > > On Wed, Mar 16, 2016 at 11:26:39PM -0700, Mike Larkin wrote: > > > > On Thu, Mar 17, 2016 at 03:15:07PM +09

Re: IB700 watchdog

2016-03-18 Thread Theo de Raadt
+#ib700wdt* at isa? port 0x441 # iBase 700 (IB700) Watchdog Timer We don't do drivers with numbers in their names. +int +ib700wdt_match(struct device *parent, void *match, void *aux) +{ + struct isa_attach_args *ia = aux; + + ia->ia_iosize = IB700WDT_SIZE; + ia->ia_msize = 0; +