Re: urndis issues

2017-07-12 Thread Jonathan Armani
Hi, Thanks I was cooking the same diff. Ok armani@ Le mar. 11 juil. 2017 à 12:32, Mike Belopuhov a écrit : > On Sun, Jul 09, 2017 at 09:57 +0300, Artturi Alm wrote: > > Hi, > > > > anyone else having issues w/urndis(android)? > > victim of circumstances, i have to rely on

Re: malloc: 1st small step in long way to multiple pools

2016-03-13 Thread Jonathan Armani
On Wed, Mar 09, 2016 at 10:06:15AM +0100, Otto Moerbeek wrote: > Hi, > > a future goal for malloc is to use multiple pools in threaded environments, > to reduce lock contention. > > This is a small first step towards that goal: move two globals to the > pool-specific struct dir_info. Currently

Re: audioctl: expose counters returned by AUDIO{I,O}OFFS

2015-05-26 Thread Jonathan Armani
On Sun, May 24, 2015 at 03:39:21AM +0200, Alexandre Ratchov wrote: This exposes the counters returned by AUDIO_GET{I,O}OFFS ioctls, they correspond to the number of bytes processed by the device. The main usefulness of these counters is to check whether the kernel is missing interrupts (by

Re: remove dsp bits from libossaudio

2015-04-18 Thread Jonathan Armani
On Fri, Apr 17, 2015 at 12:34:00PM +0200, Alexandre Ratchov wrote: No code uses the SNDCLT_DSP_* ioctls anymore (the last port using them was removed few months ago), so they could be removed now. As there's no ABI change, no shlib_version crank is necessary. The motivation of removing these

Re: remove oss support from linux compat (i386 only)

2015-04-18 Thread Jonathan Armani
On Fri, Apr 17, 2015 at 12:25:13PM +0200, Alexandre Ratchov wrote: This was discussed and nobody steps up to save it: http://comments.gmane.org/gmane.os.openbsd.misc/217005 removing oss emulation, will remove dependency on obscure audio(4) features we don't use since ~2009, and in turn

Re: urndis(4) fix

2014-11-30 Thread Jonathan Armani
On Sat, Nov 29, 2014 at 09:42:51PM +0100, Mark Kettenis wrote: Recent Oracle SPARC machines have a USB gadget to talk to the Service Processor (ILOM). This gadget supports both RNDIS and CDC Ethernet. The RNDIS bits uncovered a bug in urndis(4). When urndis_ctrl_set() sets up the

Reinforce uvideo_reqbufs

2014-10-18 Thread Jonathan Armani
Hi, In v4l2 VIDIOC_REQBUFS ioctl, a count value of zero frees all buffers. We do not support it, and worse, it triggers a kernel panic. Return EINVAL in this case so app can detect we do not allow it. While there change the easily triggerable panic by a printf and return EINVAL. With that

Re: delete kernel audio conversions code

2014-10-15 Thread Jonathan Armani
On Tue, Oct 14, 2014 at 09:09:26PM +0200, Alexandre Ratchov wrote: Since end 2011 we have complete audio format conversions code enabled by default that runs in user-mode (from any to any encoding, rate, and channel number combination). So there's no reason to keep the incomplete kernel

Add Logitech C310 to usbdevs

2014-10-09 Thread Jonathan Armani
Hi, Diff add my Logitech Webcam C310 to usbdevs. Bus 000 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 ok ? Index: usbdevs === RCS file: /cvs/src/sys/dev/usb/usbdevs,v retrieving revision 1.637 diff -u -p -r1.637 usbdevs

Add Logitech C310 to uvideo(4)

2014-10-09 Thread Jonathan Armani
Hi, The Logitech Webcam C310 just works, diff add it to uvideo(4). ok ? Index: uvideo.4 === RCS file: /cvs/src/share/man/man4/uvideo.4,v retrieving revision 1.35 diff -u -p -r1.35 uvideo.4 --- uvideo.417 Sep 2012 11:04:24

Re: Add Logitech C310 to usbdevs

2014-10-09 Thread Jonathan Armani
:58, Jonathan Armani wrote: Hi, Diff add my Logitech Webcam C310 to usbdevs. Bus 000 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 What do you see in your dmesg when you don't have this entry in usbdevs? Is it understandable? I'm asking, because generally USB device names can

Re: audioctl: drop useless fields

2014-09-11 Thread Jonathan Armani
ok armani@ 2014-09-10 19:31 GMT+02:00 Alexandre Ratchov a...@caoua.org: audioctl output is full of useless, misleading and/or unreliable fields. Let's keep the usable ones only. The plan is to remove them from the kernel as well. OK? Index: audioctl.c

Re: PATCH: acpibat - expose capacity as sensor

2014-05-20 Thread Jonathan Armani
Hi, I have a similar diff in my tree. I think design capacity could be more clear for the sensor description. apart from that, ok armani@ fwiw 2014-05-19 23:58 GMT+02:00 Landry Breuil lan...@rhaalovely.net: On Sun, May 18, 2014 at 08:56:15AM +0200, Landry Breuil wrote: On Sat, May 17, 2014

Re: Fuse (and sshfs) support for OpenBSD

2013-03-07 Thread Jonathan Armani
On Tue, Mar 05, 2013 at 03:24:06PM +0100, Sylvestre Gallon wrote: I am not quite sure but I think that only libfuse and sshfs are GPL licenced. The patches for those two items are only present in ports. All the code present in src is ISC licenced. The kernel communicate with libfuse

Re: vmmap replacement -- please test

2012-03-01 Thread Jonathan Armani
On Sat, Feb 18, 2012 at 05:09:02PM +0100, Ariane van der Steldt wrote: Hi, Just to prove my point that vmmap testing is still relevant: today a bug got found and fixed, where grepping a 1.7GB file on i386 tripped an assertion (I love assertions). This brings the latest versions to:

Re: vgafb(4) cleaning #3

2012-02-25 Thread Jonathan Armani
On Thu, Feb 23, 2012 at 06:12:51PM +0100, Martin Pieuchot wrote: Diff below is a rewrite the vgafb_pci_probe(). The idea is to save the different PCI bars in the device structure for later access in drm(4). It also simplifies the code to make it looks more like vga(4). Ok? Martin Hi,

Re: ALPS Touchpads and pms0: not in sync yet

2012-02-23 Thread Jonathan Armani
On Thu, Feb 23, 2012 at 06:20:17PM +0100, Martin Pieuchot wrote: On 31/01/12(Tue) 16:52, Martin Pieuchot wrote: Diff below add support for the missing ALPS Dualpoint touchpads to the pms(4) driver. Most of the work has been done by shadchin@ and should fix issues you may have seen since

Re: X Intel driver update. [TESTING NEEDED]

2011-09-12 Thread Jonathan Armani
1-5 added (80x25, vt100 emulation) intagp0 at vga1 agp0 at intagp0: aperture at 0xe000, size 0x1000 inteldrm0 at vga1: apic 2 int 16 drm0 at inteldrm0 Thanks. -- Jonathan Armani

Re: hotplug(4) r1.10 ignoring hotplug_put_event() prior to hotplugopen() [Was: hotplugd(8) ignoring devices attached before boot]

2010-12-13 Thread Jonathan Armani
On Mon, 13 Dec 2010 14:28:42 +0100, MERIGHI Marcus mcmer-open...@tor.at wrote: mark.kette...@xs4all.nl (Mark Kettenis), 2010.12.13 (Mon) 13:41 (CET): Date: Mon, 13 Dec 2010 12:48:55 +0100 From: MERIGHI Marcus mcmer-open...@tor.at That sounds good. I was aware of the change, but didn't

Re: ACPI C-States diff

2009-06-08 Thread Jonathan Armani
The patch makes my dell d430 reboot at boot (just after acpi stuff). jor...@peereboom.us a icrit : Sending out an initial attempt at implementing C-states for APCI CPUs. The C-states are used to implement the CPU idle loop per CPU. Please send dmesgs of booting using this patch. Index: