Re: openjdk6 broken on current

2013-05-09 Thread Damjan Jovanovic
a bisection-search in SVN like git bisect would do. Regards Damjan Jovanovic ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

ufs/devfs lock order reversal on poweroff

2015-02-18 Thread Damjan Jovanovic
Hi On r278909 (and probably earlier) I get the following when I run poweroff (retyped from a video of it I had to record, since it disappears very quickly): Syncing disks, vnodes remaining...4 1 0 0 done All buffers synced. lock order reversal: 1st 0xf80014d4d060 ufs (ufs) 0

Re: Intel Haswell support - Any updates?

2015-09-17 Thread Damjan Jovanovic
On Thu, Sep 17, 2015 at 12:15 PM, O. Hartmann wrote: > On Thu, 17 Sep 2015 18:55:10 +0900 > "Lundberg, Johannes" wrote: > >> Looking at those pages it seems like development has basically been >> standing still for the last couple of

Re: libreoffice 5.x && problem with threads?

2016-02-05 Thread Damjan Jovanovic
Some threads are in accept while others are in join - could be that "close(socket) doesn't wake up threads in accept(socket)" deadlock I fixed in AOO months ago. Does that patch help: https://github.com/apache/openoffice/commit/033c508048e3cd55bdbf4476f5f35b0aa0fcc5c0 Damjan On Fri, Feb 5, 2016

Re: FreeBSD MachO File format, your comments on it.

2016-03-24 Thread Damjan Jovanovic
ELF itself is a disaster. Symbol lookup in ELF is process scoped, not library scoped like Windows's PE and Mac's Mach-O, so same named symbols from different libraries in the same process (loaded through any number of levels of indirection) can and do clash, resulting in memory corruption. This is

Re: FreeBSD, IPFW and the SIP/VoIP NAT problem

2017-09-26 Thread Damjan Jovanovic
On Tue, Sep 26, 2017 at 3:44 PM, O. Hartmann <o.hartm...@walstatt.org> wrote: > On Tue, 26 Sep 2017 11:00:45 +0200 > Damjan Jovanovic <damjan@gmail.com> wrote: > > > On Tue, Sep 26, 2017 at 10:35 AM, O. Hartmann <ohartm...@walstatt.org> > > wrote: >

Re: FreeBSD, IPFW and the SIP/VoIP NAT problem

2017-09-26 Thread Damjan Jovanovic
On Tue, Sep 26, 2017 at 10:35 AM, O. Hartmann wrote: > Hello, > > trying to build a FreeBSD based router/PBX (Asterisk 13) appliance, I ran > into > several problems. My questions might have a "noobish" character, so my > apology, > my experiences with IPFW are not as

Re: FreeBSD, IPFW and the SIP/VoIP NAT problem

2017-09-27 Thread Damjan Jovanovic
On Tue, Sep 26, 2017 at 11:27 AM, Guido Falsi wrote: > On 09/26/2017 10:35, O. Hartmann wrote: > > > of the RTP connection doesn't make it through IPFW/NAT. As often I > search the > > net, I always get informed this is a typical problem and solutions are > > provided by so

Re: FreeBSD, IPFW and the SIP/VoIP NAT problem

2017-09-27 Thread Damjan Jovanovic
On Wed, Sep 27, 2017 at 1:16 PM, O. Hartmann <o.hartm...@walstatt.org> wrote: > On Tue, 26 Sep 2017 16:26:51 +0200 > Damjan Jovanovic <damjan@gmail.com> wrote: > > > On Tue, Sep 26, 2017 at 3:44 PM, O. Hartmann <o.hartm...@walstatt.org> > > wrote: >

Re: Building freebsd on another OS

2019-03-18 Thread Damjan Jovanovic
On Tue, Mar 19, 2019 at 2:04 AM Eric Joyner wrote: > On Sun, Mar 17, 2019 at 6:35 AM Hans Petter Selasky > wrote: > > > > > See the freebsd-build utils package for Linux. > > > > --HPS > > > > > Is there anything for Windows? > > > FreeBSD uses ELF binaries. Microsoft's compilers only generate

Re: FreeBSD 13.0-CURRENT r346362 + webcamd -- no /dev/video*

2019-04-21 Thread Damjan Jovanovic
t; > I was doing some webcamd development just a few days ago and might be able to help. Does your camera work in Linux? If so, on what version? Regards Damjan Jovanovic ___ freebsd-current@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Re: FUSE Call for Testing

2019-08-08 Thread Damjan Jovanovic
NTFS-3G (sysutils/fusefs-ntfs) is probably the most widely used FUSE filesystem. On Fri, Aug 9, 2019 at 4:21 AM Clay Daniels Jr. wrote: > Alan, I'm pretty much into 13.0 Current and most weeks install the newest > snapshot build. I don't know if I use FUSE or not, if you must know the > truth.

Re: editors/libreoffice PDF export/printing broken

2020-06-22 Thread Damjan Jovanovic
On Mon, Jun 22, 2020 at 7:27 PM Oleksandr Kryvulia wrote: > 22.06.20 20:21, Gleb Popov пишет: > > On Mon, Jun 22, 2020 at 9:04 PM Kostya Berger > wrote: > > > >> r362292In editors/libreoffice 6.4.4 PDF export is broken, including also > >> PDF print to file. Tried with locally built 6.4.4 and

Re: gcc versus clang issue for 32-bit binaries

2020-06-10 Thread Damjan Jovanovic
MAP_FIXED is generally bad news, as it overwrites any prior mappings within the range of addresses being mapped to. They should use MAP_FIXED | MAP_EXCL instead, which will fail if any mappings already exist in the range, and then maybe retry with another range if it fails. Linux and NetBSD have

Re: Using modern APIs in Rust on FreeBSD

2021-09-21 Thread Damjan Jovanovic
On Wed, Sep 22, 2021 at 6:08 AM Alan Somers wrote: > tldr; should the Rust ecosystem ditch FreeBSD 10 compat for new code? > > Rust uses FFI to talk to the OS's C library. That makes cross-compiling a > breeze. Unfortunately, it also fossilizes the ABI. FreeBSD's libc makes > careful use of

Re: native recording of all network connections on freebsd

2022-12-28 Thread Damjan Jovanovic
On Wed, Dec 28, 2022 at 4:21 PM Dan Mack wrote: > > I'm wondering if anyone can help point me at a good way to continously > capture every inbound and outbound connection made to a freebsd system. > I'd prefer a way that is native in base if possible. I don't really want > to record all the