Re: Journal Implementation

2015-06-02 Thread Stefan
http://www.openbsd.org/faq/faq8.html#Journaling On Tue, Jun 2, 2015, 2:31 PM Walter Neto wsouz...@gmail.com wrote: Hy.. I want to help OpenBSD developing a journaling system for UFS. Someone can give me a tip? Thanks.

Journal Implementation

2015-06-02 Thread Walter Neto
Hy.. I want to help OpenBSD developing a journaling system for UFS. Someone can give me a tip? Thanks.

Re: Journal Implementation

2015-06-02 Thread Stefan
Just to save time in case soft updates would serve Walter's interests just as well as journaling. No, I can't rest assured that anybody is aware of anything, no offense to Paul or Walter. FreeBSD's gjournal might help... http://lists.freebsd.org/pipermail/freebsd-current/2006-June/064043.html On

Re: Journal Implementation

2015-06-02 Thread Paul de Weerd
On Tue, Jun 02, 2015 at 07:33:58PM +, Stefan wrote: | http://www.openbsd.org/faq/faq8.html#Journaling Right, that doesn't help, it's not a tip for someone interested in *developing a journaling system for UFS*... You can rest assured they're already aware that OpenBSD doesn't support

Re: Journal Implementation

2015-06-02 Thread Walter Neto
Thanks guys.. I will read all the tips, and start to code.. Once I have a diff I share.. On Jun 2, 2015, at 9:06 PM, Walter Neto wsouz...@gmail.com wrote: On Jun 2, 2015, at 5:03 PM, Paul de Weerd we...@weirdnet.nl wrote: On Tue, Jun 02, 2015 at 07:33:58PM +, Stefan wrote: |

Re: Journal Implementation

2015-06-02 Thread Walter Neto
On Jun 2, 2015, at 5:03 PM, Paul de Weerd we...@weirdnet.nl wrote: On Tue, Jun 02, 2015 at 07:33:58PM +, Stefan wrote: | http://www.openbsd.org/faq/faq8.html#Journaling Right, that doesn't help, it's not a tip for someone interested in *developing a journaling system for UFS*... You

Re: Journal Implementation

2015-06-02 Thread Raf Czlonka
On Tue, Jun 02, 2015 at 09:57:01PM BST, Stefan wrote: FreeBSD's gjournal might help... http://lists.freebsd.org/pipermail/freebsd-current/2006-June/064043.html While you're at it, this[0] might also be of interest. [0] http://netbsd.gw.com/cgi-bin/man-cgi?wapbl Raf

Re: Journal Implementation

2015-06-02 Thread Nick Bender
Maybe help port hammer? https://www.google-melange.com/gsoc/project/details/google/gsoc2015/jorisgio/5713964361056256 On Tue, Jun 2, 2015 at 4:21 PM, Raf Czlonka rczlo...@gmail.com wrote: On Tue, Jun 02, 2015 at 09:57:01PM BST, Stefan wrote: FreeBSD's gjournal might help...

Mg: remove unused defines and functions

2015-06-02 Thread Brian Callahan
Hi tech@ -- The diff below removes unused defines and functions in mg. I went through everything in def.h one by one, so hopefully this removes everything unused. OK? ~Brian Index: def.h === RCS file: /cvs/src/usr.bin/mg/def.h,v

Simple upd(4) sensors

2015-06-02 Thread David Higgs
Here are some new sensors for upd(4) devices. All exist on my device except AtRateTimeToEmpty, which still seemed a logical addition given that AtRateTimeToFull is already present. - AtRateTimeToEmpty - RunTimeToEmpty - NeedReplacement - Overload If anyone had an AtRate sensor, it was probably

Re: Thread-safe libcrypto by using weak symbols to pthread

2015-06-02 Thread Brent Cook
On Sun, Mar 29, 2015 at 4:51 AM, Carlos Martín Nieto c...@dwim.me wrote: On Sat, Mar 28, 2015 at 09:59:57PM -0700, Philip Guenther wrote: On Sat, 28 Mar 2015, Carlos Mart?n Nieto wrote: I?ve been looking into making libcrypto automatically thread-safe. The obvious solution is to use pthread

Re: Journal Implementation

2015-06-02 Thread Ville Valkonen
Hi, On Jun 3, 2015 3:17 AM, Walter Neto wsouz...@gmail.com wrote: Thanks guys.. I will read all the tips, and start to code.. Once I have a diff I share.. On Jun 2, 2015, at 9:06 PM, Walter Neto wsouz...@gmail.com wrote: On Jun 2, 2015, at 5:03 PM, Paul de Weerd we...@weirdnet.nl

Re: [Patch] httpd - don't leak fcgi file descriptors

2015-06-02 Thread Joerg Jung
Am 01.06.2015 um 01:25 schrieb Todd Mortimer t...@opennet.ca: I agree that my patch is more of a workaround, and it would be better to track down how it is that the client is being passed to server_fcgi with an open socket. I was going this way when I started looking at the source, but

arp(8) and ndp(8) fixes

2015-06-02 Thread Martin Pieuchot
In order to support multiple connected routes using MPATH, we no longer put an empty link-layer sockaddr in the 'gateway' field of such routes. This made arp(8) and ndp(8) unhappy because they both assumed that the 'gateway' socakddr contains an interface index. Diff below should make them

No #if NCARP in Ethernet layer

2015-06-02 Thread Martin Pieuchot
This diff is a cleanup needed for upcoming bridge(4) changes but has two nice side effects on its own. By moving the Ethernet header rewrite logic into carp_start(), it is now possible to tcpdump(8) output packets on a carp(4) interface and we get rid of the #if NCARP 0 in ether_output().

No #if NVLAN in Ethernet layer

2015-06-02 Thread Martin Pieuchot
Diff below requires the No NCARP diff I just sent to apply cleanly but should be independent. The idea is to move back the VLAN encapsulation into the vlan(4) driver. As with carp(4) vlan_start() is used. This simplifies the bpf(4) dance and make all our pseudo-driver call bpf_mtap() in the

Re: [Patch] httpd - don't leak fcgi file descriptors

2015-06-02 Thread Claudio Jeker
On Tue, Jun 02, 2015 at 01:50:35PM +0200, Joerg Jung wrote: Am 01.06.2015 um 01:25 schrieb Todd Mortimer t...@opennet.ca: I agree that my patch is more of a workaround, and it would be better to track down how it is that the client is being passed to server_fcgi with an open socket. I