Re: sanitizers broken (was RE: libc/libsys split coming soon)

2024-02-21 Thread Hartmut Brandt
On Wed, 21 Feb 2024, Mark Johnston wrote: MJ>On Wed, Feb 21, 2024 at 09:52:23AM +, hartmut.bra...@dlr.de wrote: MJ>> Hi, MJ>> MJ>> I updated yesterday and now event a minimal program with MJ>> MJ>> cc -fsanitize=address MJ>> MJ>> produces MJ>> MJ>> ld: error: undefined symbol:

RTM_NEWNEIGH message for static ARP entry

2023-06-21 Thread Hartmut Brandt
Hi, when I set a static ARP entry I see an RTM_NEWNEIGH message on a netlink socket as expected, but the ndm_state is NUD_INCOMPLETE. Should'nt this be NUD_NOARP? At least this is what Linux returns. Cheers, Harti

int128_t and uint128_t typeinfo

2017-02-21 Thread Hartmut Brandt
Hi, it looks like the typeinfo for __int128_t and __uint128_t is missing from our dynamically linked libcxxrt. I added it like: Index: lib/libcxxrt/Version.map === --- lib/libcxxrt/Version.map(revision 313007) +++

(boost::)asio and kqueue problem

2016-07-19 Thread Hartmut Brandt
Hi, I'm trying to use asio (that's boost::asio without boost) to handle listening sockets asynchronuosly. This appears not to work. There are also some reports on the net about this problem. I was able to reproduce the problem with a small C-programm that does the same steps as asio. The

RE: Call for testers: SNMPv3 support for bsnmpd(1)

2014-04-01 Thread Hartmut Brandt
On Mon, 31 Mar 2014, Marciano, Anthony wrote: MACurrently, we are just looking to monitor standard objects such as MAinterfaces and send traps accordingly. Would it be possible to provide MAa trap example of what needs to be added to the snmpd.config file to MAmonitor an object and have it

Re: Call for testers: SNMPv3 support for bsnmpd(1)

2014-03-30 Thread Hartmut Brandt
Hi Anthony, On Fri, 28 Mar 2014, Marciano, Anthony wrote: MAI've been tasked to get bsnmpd V3 working for my company. The post MAreferenced in the subject above gave me some insights but I'm still MAstuck and was wondering if you would take the time to answer some MAquestions. I'm a snmpV3

Re: files disappearing from ls on NFS

2013-05-15 Thread Hartmut Brandt
, Hartmut RM Cc: curr...@freebsd.org RM Subject: Re: files disappearing from ls on NFS RM RM Hartmut Brandt wrote: RM On Mon, 13 May 2013, Rick Macklem wrote: RM RM RMHartmut Brandt wrote: RM RM On Sun, 12 May 2013, Rick Macklem wrote: RM RM RM RM RMHartmut Brandt wrote: RM RM RM Hi, RM RM RM

Re: files disappearing from ls on NFS

2013-05-14 Thread Hartmut Brandt
On Mon, 13 May 2013, Rick Macklem wrote: RMHartmut Brandt wrote: RM On Sun, 12 May 2013, Rick Macklem wrote: RM RM RMHartmut Brandt wrote: RM RM Hi, RM RM RM RM I've updated one of my -current machines this week (previous RM update RM RM was in RM RM february). Now I see a strange effect (it

Re: files disappearing from ls on NFS

2013-05-13 Thread Hartmut Brandt
On Sun, 12 May 2013, Rick Macklem wrote: RMHartmut Brandt wrote: RM Hi, RM RM I've updated one of my -current machines this week (previous update RM was in RM february). Now I see a strange effect (it seems only on NFS mounts): RM ls or RM even echo * will list only some files (strange enough

Re: files disappearing from ls on NFS

2013-05-07 Thread Hartmut Brandt
: Re: files disappearing from ls on NFS RM RM Hartmut Brandt wrote: RM On Fri, 3 May 2013, Rick Macklem wrote: RM RM RMOk, if you succeed in isolating the commit, that would be great. RM RM Hmm. I'm somewhat stuck. clang from yesterday can't compile clang RM from RM a month ago... RM RM

Re: files disappearing from ls on NFS

2013-05-04 Thread Hartmut Brandt
On Fri, 3 May 2013, Rick Macklem wrote: RMOk, if you succeed in isolating the commit, that would be great. Hmm. I'm somewhat stuck. clang from yesterday can't compile clang from a month ago... harti RM RMrick RM RM harti RM RM On Fri, 3 May 2013, Rick Macklem wrote: RM RM RMHartmut Brandt

Re: files disappearing from ls on NFS

2013-05-03 Thread Hartmut Brandt
Hi Rick, I checked. readdirsize is 64k. I will try to do a binary search for the problematic commit next week. For this I had to do a local checkout (usually I have the system sources on the file server and this fails, of course). harti On Fri, 3 May 2013, Rick Macklem wrote: RMHartmut

Re: files disappearing from ls on NFS

2013-05-03 Thread Hartmut Brandt
On Fri, 3 May 2013, Daniel Braniss wrote: DBI don't know about current, but on 9.1-stable, the nfsstat -m only works DBfor root! nfsstat can be run by anybody. Same for current. It silently prints nothing. Took me some time to figure out I should try as root... harti

files disappearing from ls on NFS

2013-05-02 Thread Hartmut Brandt
Hi, I've updated one of my -current machines this week (previous update was in february). Now I see a strange effect (it seems only on NFS mounts): ls or even echo * will list only some files (strange enough the first files from the normal, alphabetically ordered list). If I change something

Re: files disappearing from ls on NFS

2013-05-02 Thread Hartmut Brandt
:05.nfsserver that seams to be related to the NFS server only. My problem is in the client. harti FC FC FCOn Thu, May 2, 2013 at 9:11 AM, Hartmut Brandt hartmut.bra...@dlr.de FCwrote: FC Hi, FC FC I've updated one of my -current machines this week (previous FC update

clang+VNET - netstat: no namelist

2012-05-21 Thread Hartmut Brandt
Hi, I'm running a kernel+world compiled with clang (everything fresh from two days ago). Kernel and world are in sync. When I run netstat -rn I get a 'no namelist'. I tried to track that down and it looks like this is an issue with the symbol dumptid defined in kern_shutdown. libkvm tries to

Syntax error in malloc_np.h

2012-05-21 Thread Hartmut Brandt
Hi, it seems that there is a syntax error in malloc_np.h. It contains lines like: int allocm(void **ptr, size_t *rsize, size_t size, int flags) __attribute__(nonnull(1)); The problem is that the syntax of the attributes actually requires two parenthesis: