Re: cpu cores

2024-06-10 Thread Riccardo Mottola
Hi Stuartd, Stuart Henderson wrote: Exactly. dmesg | grep smt will make it obvious. The cache information for each attached cpu will probably also show differences between the P and E cores. Spec of the CPU listed in dmesg https://ark.intel.com/content/www/us/en/ark/products/226269/intel-core

Re: cpu cores

2024-06-10 Thread Riccardo Mottola
Hi, Kirill A. Korinsky wrote: Thus, here old but interesting results that enabling hyperthreading has negative effect on performance of have CPU used applications: https://web.archive.org/web/20220325090914/http://users.telenet.be/nicvroom/performanceP4.htm there are many different experiences

Re: cpu cores

2024-06-10 Thread Jan Stary
> > You've been on these lists for over 15 years and yet didn't include a > > complete dmesg. Ok. On Jun 09 22:31:02, rios.gust...@gmail.com wrote: > here it goes! > Stuart Henderson wrote: > > dmesg | grep smt will make it obvious. cpu0: smt 0, core 0, package 0 cpu1: smt 1, core 0, package 0

Updated Operations Research tools

2024-06-10 Thread Ronald Dahlgren
I am excited to announce a number of software packages that have been updated to work on OpenBSD. 1. COIN-OR (coin-or.org) - The CBC solver was failing to build due to a casting error. Pull request 653 (https://github.com/coin-or/Cbc/pull/653) corrects this issue; 2. HiGHS solver (https://ergo-cod

Re: cpu cores

2024-06-10 Thread Kirill A . Korinsky
Greetings, On Mon, 10 Jun 2024 13:15:13 +0100, Riccardo Mottola wrote: > > This is for workstation use, mixed user and developer. To each its own. > I bet it ends depending also on cache, memory and specific jobs. > Do not forget about IO, which can be a bottel neck in case of compiling. Have

Missing vlan interfaces in OPENBSD-PF-MIB::pfIfTable

2024-06-10 Thread Marc Boisis
Hello, I've a 7.5 openBSD router, when I'm asking OPENBSD-PF-MIB I have only 64 physicals and carp interfaces but not my 45 vlan interfaces. My /etc/snmpd.conf ROOT:amdrg2:/root > cat /etc/snmpd.conf listen on 127.0.0.1 snmpv2c read-only community public "pfctl -sI" list all interfaces (carp

How to configure vlans with vmm

2024-06-10 Thread jrmu
How can I configure vmm to use vlans for virtual machines? I saw openbsd.amsterdam * use this, but I am not sure how to replicate it. As I understand it, vmm creates a tap(4) interface for each virtual machine, and all tap interfaces are then placed inside the switch defined in vm.conf, which in

Re: How to configure vlans with vmm

2024-06-10 Thread Mischa
Hi, You would have to do something like the following. In /etc/vm.conf you configure multiple switches: switch "uplink_vlan800" { interface veb800 } switch "uplink_vlan880" { interface veb880 For /etc/hostname.if you have to go through the config per VLAN. The actual interface

mouse cursor no longer changes over hyperlinks in Firefox on OpenBSD 7.5

2024-06-10 Thread Andy Bradford
Hello, I'm not sure if this is expected behavior or not, but it seems that after upgrading to OpenBSD 7.5 the mouse cursor no longer changes from an arrow pointer to a hand when I hover over links in Firefox. It does work for some other programs though. Also, moving the mouse over other

Re: mouse cursor no longer changes over hyperlinks in Firefox on OpenBSD 7.5

2024-06-10 Thread Hiltjo Posthuma
Hi, iirc it can be worked around by setting in about:config: widget.gtk.legacy-cursors.enabled to true On Mon, Jun 10, 2024 at 03:07:24PM -0600, Andy Bradford wrote: > Hello, > > I'm not sure if this is expected behavior or not, but it seems that > after upgrading to OpenBSD 7.5 the mouse

Re: mouse cursor no longer changes over hyperlinks in Firefox on OpenBSD 7.5

2024-06-10 Thread Andy Bradford
Thus said Hiltjo Posthuma on Tue, 11 Jun 2024 01:19:13 +0200: > iirc it can be worked around by setting in about:config: > > widget.gtk.legacy-cursors.enabled to true Madness! But it works. Thanks. Andy