Re: New hw.perfpolicy behavior

2021-11-03 Thread Jurjen Oskam
on modern CPUs, which would mean running "apmd -A" is not useful anymore on such systems. Is my understanding correct? -- Jurjen Oskam

Re: veb(4) exceeds 1514 byte frame size while bridge(4) doesn't?

2021-03-27 Thread Jurjen Oskam
gt; total_len -= roundup(pktlen, URE_RX_BUF_ALIGN); > buf += sizeof(rxhdr); > > + /* trim fcs */ > + pktlen -= ETHER_CRC_LEN; > m = m_devget(buf, pktlen, ETHER_ALIGN); > if (m == NULL) { > DPRINTF(("unable to allocate mbuf for next packet\n")); > -- Jurjen Oskam

veb(4) exceeds 1514 byte frame size while bridge(4) doesn't?

2021-03-21 Thread Jurjen Oskam
1.00 addr 8 ure0: RTL8153B (0x6010), address 00:e0:4c:68:28:ed rgephy0 at ure0 phy 0: RTL8251 PHY, rev. 0 umass0 at uhub0 port 15 configuration 1 interface 0 "Kingston DT Workspace" rev 3.00/0.09 addr 9 umass0: using SCSI over Bulk-Only scsibus1 at umass0: 2 targets, initiator 0 sd0 at scsibus1 targ 1 lun 0: serial.0951168f01340135 sd0: 30533MB, 512 bytes/sector, 62533292 sectors vscsi0 at root scsibus2 at vscsi0: 256 targets softraid0 at root scsibus3 at softraid0: 256 targets root on sd0a (ed418629a16fee19.a) swap on sd0b dump on sd0b inteldrm0: 1920x1080, 32bpp wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0 wsdisplay0: screen 1-5 added (std, vt100 emulation) iwm0: hw rev 0x310, fw ver 34.3125811985.0, address 14:f6:d8:df:0a:b1 -- Jurjen Oskam

nvme.c: trivial patch fixing a typo in a warning message

2017-05-01 Thread Jurjen Oskam
452,7 @@ nvme_shutdown(struct nvme_softc *sc) delay(1000); } - printf("%s: unable to shudown, disabling\n", DEVNAME(sc)); + printf("%s: unable to shutdown, disabling\n", DEVNAME(sc)); disable: nvme_disable(sc); Regards, Jurjen Oskam

Make dhclient not use lease files

2014-12-08 Thread Jurjen Oskam
RCS file: /cvs/src/sbin/dhclient/dhctoken.h,v retrieving revision 1.9 diff -u -p -r1.9 dhctoken.h --- sbin/dhclient/dhctoken.h5 Dec 2013 22:31:35 - 1.9 +++ sbin/dhclient/dhctoken.h8 Dec 2014 10:07:39 - @@ -78,6 +78,7 @@ #define TOK_REJECT 292 #define TOK_LINK_TIMEOUT 294 #define TOK_IGNORE 295 +#define TOK_NO_LEASE_FILE 296 #define is_identifier(x) ((x) >= TOK_FIRST_TOKEN && \ (x) != TOK_STRING && \ Regards, Jurjen Oskam