Taegyun Kim

Results 6 comments of Taegyun Kim

I have the same issue on my Debian 4.16.12-1 (2018-05-27)

The underlying reason is that setup_timer() macro has been removed circa kernel 4.15 and replaced with timer_setup(). For details, look at this article. https://lwn.net/Articles/735887/ So this repository needs to be...

defineMetric, getMetric, and recordMetric are all low level metrics API. You probably want to high level metrics API, `Counter`, `Gauge`, `Histogram` https://github.com/proxy-wasm/proxy-wasm-cpp-sdk/blob/b3a4ea9a4700e9e1d9edbd028ad68100289c7900/proxy_wasm_api.h#L1120 https://github.com/proxy-wasm/proxy-wasm-cpp-sdk/blob/b3a4ea9a4700e9e1d9edbd028ad68100289c7900/proxy_wasm_api.h#L1169 https://github.com/proxy-wasm/proxy-wasm-cpp-sdk/blob/b3a4ea9a4700e9e1d9edbd028ad68100289c7900/proxy_wasm_api.h#L1215 as https://github.com/taegyunkim/proxy-wasm-examples/blob/65b4b82597971bef5664595d57e972fe30fcc437/dump/rpc-count/filter.cc#L11

Probably related to https://github.com/rust-lang/rust/issues/69933. The fix for this issue is already included in nightly, so I assume it will eventually be fixed. However, it's weird that `cargo build` from terminal...

Some comments in this repository refers to V2 https://github.com/filecoin-project/bls-signatures/blob/0da49c1c8eb7bdea9c531dc873a9a8432f88a35b/src/signature.rs#L144 I don't know either whether this crate implements newer drafts. By default, this crate uses bls12_381 v0.7.0 with experimental feature, and...