typo fix in csh/file.c

2019-11-28 Thread Nayden Markatchev
spotted when reading code.. -- cvs diff: Diffing . Index: file.c === RCS file: /home/nayden/cvsync/src/bin/csh/file.c,v retrieving revision 1.38 diff -u -p -r1.38 file.c --- file.c 28 Jun 2019 13:34:58 - 1.38 +++ file.c

Add __func__ to panic() and printf() calls in sys/netinet6/*

2019-11-28 Thread nayden
=== RCS file: /home/nayden/cvsync/src/sys/netinet6/icmp6.c,v retrieving revision 1.229 diff -u -p -r1.229 icmp6.c --- icmp6.c 25 Dec 2018 19:28:25 - 1.229 +++ icmp6.c 17 Jan 2019 03:50:22 - @@ -225,7 +225,7 @@ icmp6_mtudisc_callback_register(void

replace references of cvsync with rsync in INSTALL

2019-11-27 Thread Nayden Markatchev
://www.openbsd.org/cvsync.html already links to the instructions outlined in anoncvs.html of how to use rsync in place of cvsync. ok? -- Index: distrib//notes/INSTALL === RCS file: /home/nayden/cvsync/src/distrib/notes/INSTALL,v

__func__ to panic() calls in sys/net*

2018-07-11 Thread nayden
Hello, tb@ hinted to me that sys/net* can benefit from more __func__ springkling and I these are the potentially useful places that I found. ok? Index: net/if_pppx.c === RCS file: /home/nayden/cvsync/src/sys/net/if_pppx.c,v

adding __func__ identifier to panic() calls in vmm.c

2018-07-09 Thread nayden
Hi, Would this change make it simpler to diagnose a vmm crash? Nayden Index: arch/amd64/amd64/vmm.c === RCS file: /home/nayden/cvsync/src/sys/arch/amd64/amd64/vmm.c,v retrieving revision 1.207 diff -u -p -r1.207 vmm.c --- arch

vmd: cleaning up virtio.c

2016-08-31 Thread nayden
Addressing "this function needs a cleanup block, lots of free(blah); return (0)" comment for vioblk_notifyq() and doing the same for vionet_enq_rx(). Index: virtio.c === RCS file: /home/nayden/cvsync/src/usr.sbin/vmd/

Re: new feature in pkg_add(1)

2016-06-19 Thread Nayden Markatchev
amd64 snapshots have been flowing again since yesterday. apologies for the delay. On Fri, Jun 17, 2016 at 8:02 AM, Marc Espie wrote: > I was waiting for snapshots to come up with the new stuff, but it > looks like amd64 will be a bit late. Someone is still hiking in > the

Re: Firefox, malloc(3) and threads

2016-01-26 Thread Nayden Markatchev
FYI: This diff is in the snapshots since Sunday. On Mon, Jan 25, 2016 at 4:34 PM, Matthew Via wrote: > I've had the patch applied for two days now and have not seen any ill > efects. This is a Thinkpad T410 running snapshots. > > Before, youtube was unwatchable. Sound

Re: [PATCH] Fix segmentation fault in ping(8)

2015-08-09 Thread Nayden Markatchev
OK nayden@ On 5 Aug 2015 3:42 pm, Theo de Raadt dera...@cvs.openbsd.org wrote: You can reproduce with ping -s 0 host (it crashes if the packet size is less than 24). === RCS file: /cvs/src/sbin/ping/ping.c,v retrieving

Re: sudo alloc.c -- cleanup required?

2014-04-23 Thread Nayden Markatchev
, most of alloc.c contains wrapper functions. Some are useful, like estrdup(), but could be implemented better (it calls the malloc wrapper). ​I haven't gone through the rest of the functions in this file but if you think that the implementations could be improved, give it a shot. Cheers, Nayden