Re: reiser4fs in openbsd

2017-08-25 Thread Dinar Talypov
No code, nothing to discuss. 25 авг. 2017 г. 18:51 пользователь "Victor Kukshiev" < andrey0bolkon...@gmail.com> написал: > Reiser4 isn't dead FS, but with advanced features, > > 2017-08-25 18:35 GMT+03:00 Daniil Berendeev : > > > ok. is reiser4 need on openbsd? > >> > > Well, a dead fs is not muc

Re: [patch] fake pv drivers installation on xen

2017-01-18 Thread Dinar Talypov
I use Xenserver 7.0 with xencenter management console. without it doesn't allow shutdown or reboot. Anyway I'll try with hostctl. Thanks. 2017-01-18 21:53 GMT+03:00 Mike Belopuhov : > On Wed, Jan 18, 2017 at 21:23 +0300, Dinar Talypov wrote: > > +void > > +xen_inform_

[patch] fake pv drivers installation on xen

2017-01-18 Thread Dinar Talypov
Hi, The patch below fakes pv drivers installation. Version numbers are taken from FreeBSD sysutils/xe-guest-utilities. With this xen allows reboot or shutdown OpenBSD guest. Index: sys/dev/pv/xen.c === RCS file: /cvs/src/sys/dev/pv/

Re: run(4) firmware update; please test

2014-05-16 Thread Dinar Talypov
Hi, I have tested with D-Link DWA-140 rev B2G: run0 at uhub0 port 1 "Ralink 11n Adapter" rev 1.10/1.01 addr 2 run0: MAC/BBP RT3071 (rev 0x021C), RF RT3022 (MIMO 2T2R), address 14:d6:4d:49:73:4e with this diff nothing works. It doesn't find any access point. 2014-05-15 19:32 GMT+04:00 Fred :

Re: system freeze with DWL-G520 and possible fix

2013-01-30 Thread Dinar Talypov
Any comments on this? 2013/1/16 Dinar Talypov : > Hi, > > My D-link DWL-G520 card attaches on ath(4): > > ath0 at pci0 dev 9 function 0 "Atheros AR5212" rev 0x01: irq 11 > ath0: AR2414 7.9 phy 4.5 rf2413 5.6, FCC2A*, address 00:17:9a:09:f4:5a > > On ifconfig

system freeze with DWL-G520 and possible fix

2013-01-16 Thread Dinar Talypov
RUE) { - AR5K_REG_WRITE(AR5K_AR5212_SCR, - AR5K_AR5212_SCR_SLE_SLP); - } + if (set_chip == AH_TRUE) + ar5k_ar5212_warm_reset(hal); staid |= AR5K_AR5212_STA_ID1_PWR_SV; break; -- Dinar Talypov

Re: PATCH: Virtio memory balooning

2012-11-12 Thread Dinar Talypov
ov 12 10:37:07 2012 @@ -0,0 +1,75 @@ +.\"$NetBSD: viomb.4,v 1.2 2011/11/26 22:36:14 wiz Exp $ +.\"$OpenBSD$ +.\" Copyright (c) 2012 Dinar Talypov +.\" Copyright (C) 2011 Minoura Makoto. +.\" All rights reserved. +.\" +.\" Redistribution and use in

Re: PATCH: Virtio memory balooning

2012-11-07 Thread Dinar Talypov
/viomb.c Thu Nov 8 11:02:31 2012 @@ -0,0 +1,447 @@ +/* $OpenBSD$*/ +/* $NetBSD: viomb.c,v 1.1 2011/10/30 12:12:21 hannken Exp $ */ +/* + * Copyright (c) 2012 Dinar Talypov + * Copyright (c) 2010 Minoura Makoto. + * All rights reserved. + * + * Redistribution and use in source and binary forms

a small if_vio error handling patch

2012-11-05 Thread Dinar Talypov
Hi, Here is a small rewrite for consistency in vio_attach() error handling path, also a fix for dmesg message "vlan2: initialized with non-standard mtu 1496 (parent vio0)", while creating vlan Index: if_vio.c === RCS file: /cvs/src/sy

YP=no in mk.conf and ypldap

2011-02-09 Thread Dinar Talypov
Hi, While building system with YP=no set in mk.conf I have found a bug: ypldap depends on yp in libc. The fix below. -- Dinar Talypov Index: Makefile === RCS file: /cvs/src/usr.sbin/Makefile,v retrieving revision 1.153 diff -u

fork1(9) flags not documented, but used?

2010-03-29 Thread Dinar Talypov
Hi, While looking at the code found that some flags are not documented in fork1(9), but used. These are: - FORK_SIGHAND - FORK_PTRACE - FORK_THREAD Can someone point out what they are? -- Dinar