Daniel Xu

Results 63 issues of Daniel Xu

The README mentions hot patch support. Is there anywhere I can read more about this?

The query API is iterator based. Each iteration is technically fallible but there's no great way to report errors. I played around with making the iterator type by `Result` but...

pexpect has `child.logfile*` APIs to log child process output to a file-like destination. I looked around the docs but I didn't seem to find anything similar for `rexpect`. Is there...

We have remote viewing implemented internally at FB. Laziness and dependency issues have kept it closed source. If there's any interest/desire from other folks to have it open sourced I...

Here's what the dmesg stack trace looks like: ``` [76523.209096] RIP: 0010:hash_netiface4_resize+0x608/0x6a0 [ip_set_hash_netiface] [76523.209096] Code: ff e9 6e fe ff ff 8d 4b f6 b8 01 00 00 00 d3...

Allow pinning entire object files at once instead of on a per-map or per-prog basis. Also make it work for bpf2go users. See individual commits for motivation and details.

These help with maintaining some uniformity in code. I think the codebase is already pretty good about these rules, so it's just codifying it. ##### Checklist - [ ] Language...

### What reproduces the bug? Provide code if possible. ``` #!/usr/bin/env bpftrace BEGIN { $i = 0; while ($i < 1) { $j = 0; $i++; } print($j); exit(); }...

bug
language
difficulty: medium

`clang-tidy` seems like a useful linter. C++ could really use all the linters it can get. https://github.com/marketplace/actions/clang-tidy-review looks useful but it might be nice to be able to run clang-tidy...

enhancement
ci
difficulty: medium

We've noticed quite a few runtime tests that use regex to validate output are overly permissive in accepted input or are flat out wrong. For example `other.positional lhist` is probably...

good first issue
tests