-
tozhu
hello all, a simple question: for Intel CPU, there are base frequency and turbo frequency, and the frequency is very high; my question is how to speed up the CPU on Turbo frequency in illumos/smartos? is it possible? and how to do if it’s okay, is there anyone tried?
-
tomww
shouldn't that happen automatically by BIOS Settings? You may watch with powertop
-
tozhu
tomww: Thank you
-
tozhu
I’ll take a loo
-
tozhu
look
-
Aedil
I wish you all good progress in your doings. Excel!
-
gitomat
[illumos-gate] 16331 loader: return errors from writing ZFS labels -- Warner Losh <imp⊙Fo>
-
sommerfeld
found the paper on the collision in reduced-round SHA-256 discussed here yesterday:
eprint.iacr.org/2024/349.pdf
-
sommerfeld
what's new is they had a more efficient search for the 31-round collision (reduced from 2^65.5 to 2^49.5). full sha-256 is 64 rounds.
-
jclulow
papertigers: Sorry, I've sorted out the indexing job again
-
jbk
just to ask (because I'll probably end up doing this in the next few weeks if not), anyone happen to be planning to add mhd(4I) support to nvme any time soon?
-
nomad
Quick question: if you have two different sized drives in a zpool (e.g 12TB & 20TB) and you have one hot spare of each size is there any way to make sure that a failing 12TB drive is replaced with the 12TB hot spare?
-
nomad
We've had a few situations now where the system grabs the larger hot spare to replace a smaller drive.
-
nomad
I asked about this on #zfs and they suggested it would require a code change in cmd/zed/agents which comes from illumos according to the README.md in there.
-
nomad
The situations I'm looking at right now are all in OmniOS, not ZoL.
-
jbk
zed is very much an openzfs thing and not illumos
-
nomad
understood. I'm just going by the README.md in there which says the code is lifted from illumos.
-
nomad
but that's a side quest. My main thing is trying to get our omnios hosts to grab the correct hotspare.
-
» nomad does not use ZoL in production anywhere, but he does have multiple OmniOS ZFS fileservers.
-
sommerfeld
nomad: you may be looking for the syseventd plugin in usr/src/cmd/syseventd/modules/zfs_mod
-
sommerfeld
(or not?)
-
sommerfeld
strike that. you want to look at usr/src/cmd/fm/modules/common/zfs-retire/zfs_retire.c
-
sommerfeld
the function replace_with_spare
-
sommerfeld
"Try to replace each spare, ending when we successfully replace it."
-
sommerfeld
likely want to sort the list of spares by size and start with the smallest one that's big enough.
-
nomad
that's great but I'm not a coder.
-
nomad
I suppose I could put in a ticket. It seems kind of an obvious thing to me that you would want to replace like with like.
-
sommerfeld
nomad: so, it's possible that you could get the behavior you want by ensuring that the spares are listed in order from smallest to largest.
-
sommerfeld
nomad: and I agree -- it's a reasonable request. But then there's the question of how far you go in terms of picking the spare that is most "like" the disk that failed.
-
sommerfeld
do you just look at size, or at other parameters (SSD vs spinny disk. If spinny, disk RPM? manufacturer? )
-
sommerfeld
or disk model?