-
jbkcan anyone think of any reason why mdb_ctf_member_info() doesn't use ctf_member_info() and instead does it's own iteration?
-
danmcdping @cross
-
danmcdNVM.
-
tozhudoes bhyve support RDMA/RoCE in illumos/smartos ?
-
rmustaccjbk: it appears it's doing its own thing so it can try to manually resolve forwards.
-
rmustaccmdb_ctf_type_resolve() does more than ctf_type_resolve() at first blush.
-
teutat3sMaybe a dumb question: can gcc12 on illumos build binaries for a linux x86_64 target?
-
Woodstockif you build a cross compiler targeting linux x86_64, you can certainly use it to build binaries for linux x86_64
-
teutat3sWoodstock (LIBERA-IRC): Thanks, I was hoping such a cross compiler could already be packaged in e.g. pkgsrc
-
teutat3sI see cross-* for different CPU archs only
-
jperkinin theory sure, in practise it's unlikely to be worth the effort given the amount of time it takes to build and the likelyhood of folks wanting different targets
-
jperkina set of pre-built targets available somewhere might be useful though
-
teutat3sjperkin (LIBERA-IRC): I thought so, thanks
-
ryaoThe AVL tree code's TREE_TMP() is a really clever way of getting -1, 0 or 1 to indicate how two numbers compare. Unfortunately, a simple subtraction that gives a negative value, 0 or a positive value is always faster. :/
-
ryaos/TREE_TMP/TREE_CMP/
-
ryaoNow I see why it is done this way... the subtraction trick doesn't work with unsigned integers.
-
nbjoergryao: it can also fail if the diff is too large
-
ryaoGood point.
-
ADS_SrThanks for the help, everyone!