Charles Hedrick
Charles Hedrick
there's been a history of encryption-related bugs. To my knowledge the only current known issues are with zfs receive of things sent with zfs send -w. At any rate, Ubuntu...
Yes, it probably does make sense. I'm willing to try. (I didn't actually write the code, but I can probaby figure that out.) However before doing that it's worth asking...
For clarify, the actual function is int get_name(const struct path *path, char *name, struct dentry *child); * get_name - default export_operations->get_name function * @path: the directory in which to find...
I've changed it to have a limit rather than a boolean. If non-zero, any directory larger than the limit disables prefetch. Note that it fails checkstyle. Checkstyle demands that I...
there's no unit. It's a count. Directory size. Unlike other file systems, in ZFS the size of the directory is a count of the files in it.
I looked a bit further into writing an alternative zfs_get_name. It looks like one could use zap_value_search. However the basic functions for iterating through the zap seem to be the...
How do I squash? On Jul 11, 2024, at 8:07 PM, Tony Hutter ***@***.***> wrote: I can take a look at this. Would you mind squashing the commits and...
the complaint about non-posix definition was hard to understand. All lthe POSIX alternatives generate compile errors. And I found plenty of uses of ulong in other files. Here's my attempt...
ulong is the one that compiles but fails style ulong_t is the one that passes style but doesn't compile. I'm leaving ulong. I haven't been able to figure out why...
The original version, that allows one to disable all prefetch is running in production. I tried the current vetsion on a test server. I’ll retry on test tomorrow to make...