Re: Add man parameter for HTML pager

2020-06-15 Thread Abel Romero Prez
On 2020-06-15 20:21, Ingo Schwarze wrote: > Hi Abel, > > i committed a tweaked version of your patch with these changes: > > - pass pointers to structs around, don't pass structs by value > - no need for an additional automatic variable for the URI > - no need for comments similar to:

Re: Add man parameter for HTML pager

2020-06-15 Thread Abel Romero Prez
It is done. On 2020-06-15 20:31, Theo Buehler wrote: > On Mon, Jun 15, 2020 at 08:21:05PM +0200, Ingo Schwarze wrote: >> Your patch was mangled in at least one way. Most lines were prefixed >> with a bogus space character; i did not check whether it was also >> mangled in other ways. > >

update audio/rhythmbox

2020-06-15 Thread Abel Romero Prez
The Rhythmbox radio stations I like are broken, but I don't know two things: 1. where to modify the port to it take effect. 2. where to get the latest radio link.

Re: Add man parameter for HTML pager

2020-06-15 Thread Theo Buehler
On Mon, Jun 15, 2020 at 08:21:05PM +0200, Ingo Schwarze wrote: > Your patch was mangled in at least one way. Most lines were prefixed > with a bogus space character; i did not check whether it was also > mangled in other ways. User-Agent: Mozilla/5.0 (X11; OpenBSD amd64; rv:68.0) Gecko/20100101

Re: Add man parameter for HTML pager

2020-06-15 Thread Ingo Schwarze
Hi Abel, i committed a tweaked version of your patch with these changes: - pass pointers to structs around, don't pass structs by value - no need for an additional automatic variable for the URI - no need for comments similar to: i++; /* increment i */ - only use file:// when -O tag was

Extend filt_dead() with __EV_HUP

2020-06-15 Thread Martin Pieuchot
This extends the existing dead filter to add __EV_HUP in order to make it usable by deadfs. ok? diff 6125a47a01eb7846ac29f04db756ccc8201dee58 ba22f59fc655d5ccdb16c30de07bb3f10a45aa74 blob - bb1340da842353113b6bed8e4af1427d033d594f blob + 56f58fcabe6ac056e1d8846640ceafedda53707a ---

Re: __EV_HUP to emulate POLLHUP

2020-06-15 Thread Martin Pieuchot
On 13/06/20(Sat) 05:54, Todd C. Miller wrote: > On Sat, 13 Jun 2020 10:05:19 +0200, Martin Pieuchot wrote: > > > Diff below extends the existing kqfilter handlers to be able to set > > POLLHUP in the new poll(2) implementation. > > > > __EV_HUP is introduced and now set for this purpose. A new

interrupt to cpu mapping API

2020-06-15 Thread David Gwynne
there's been discussions for years (and even some diffs!) about how we should let drivers establish interrupts on multiple cpus. the simple approach is to let every driver look at the number of cpus in a box and just pin an interrupt on it, which is what pretty much everyone else started with,

Re: Add man parameter for HTML pager

2020-06-15 Thread Romero Pérez , Abel
Thanks for the handy answer, Ingo. I am going to develop it better. On 2020-06-15 04:13, Ingo Schwarze wrote: Hi Abel, Romero Perez, Abel wrote on Mon, Jun 15, 2020 at 03:06:26AM +0200: Romero Perez, Abel wrote: I tried to view the manuals in HTML format with lynx, but I couldn't I

Re: Add man parameter for HTML pager

2020-06-15 Thread Romero Pérez , Abel
Hi again, I have added the modifications I think you told me. Also I changed the extension of the tmp file then it can be interpreted as HTML by any browser used as pager. The extension is set when using html format. Now this works: MANPAGER="lynx" ./man -T html -O tag=k pfctl (no need to

Re: symmetric toeplitz hashing

2020-06-15 Thread David Gwynne
> On 13 Jun 2020, at 3:20 pm, Theo Buehler wrote: > > On Sat, Jun 13, 2020 at 11:35:42AM +1000, David Gwynne wrote: >> On Fri, Jun 12, 2020 at 03:37:59PM +0200, Theo Buehler wrote: >>> I finally found the time to think about the mathematics of this some >>> more and I'm now convinced that

Re: Extend filt_dead() with __EV_HUP

2020-06-15 Thread Todd C . Miller
On Mon, 15 Jun 2020 08:41:00 +0200, Martin Pieuchot wrote: > This extends the existing dead filter to add __EV_HUP in order to make > it usable by deadfs. OK millert@ - todd

Re: __EV_HUP to emulate POLLHUP

2020-06-15 Thread Todd C . Miller
On Mon, 15 Jun 2020 08:36:32 +0200, Martin Pieuchot wrote: > Here's an updated diff that does that and move the defines under _KERNEL > as suggested by visa@. I left the dead-filter for another diff to match > another suggestion. The fifo_vnops.c doesn't check for __EV_POLL. Otherwise OK