Allow also LOCALBASE/etc/periodic.conf
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
All Stories
Today
This commit broke font rendering in desktop Linux apps.
Not sure why the last diff did not apply. I recreated it. Hopefully this one works.
Patch does not apply.
slippy$ git apply /tmp/D40442.diff
error: patch failed: contrib/wpa/src/l2_packet/l2_packet_freebsd.c:99
error: contrib/wpa/src/l2_packet/l2_packet_freebsd.c: patch does not apply
slippy$ patch -C -p1 < /tmp/D40442.diff
Hmm... Looks like a unified diff to me...
The text leading up to this was:
diff --git a/contrib/wpa/src/l2_packet/l2_packet_freebsd.c b/contrib/wpa/src/l2_packet/l2_packet_freebsd.c |
--- a/contrib/wpa/src/l2_packet/l2_packet_freebsd.c |
+++ b/contrib/wpa/src/l2_packet/l2_packet_freebsd.c |
Patching file contrib/wpa/src/l2_packet/l2_packet_freebsd.c using Plan A...
Hunk #1 succeeded at 21.
Hunk #2 failed at 100.
Hunk #3 failed at 131.
2 out of 3 hunks failed while patching contrib/wpa/src/l2_packet/l2_packet_freebsd.c
Hmm... Ignoring the trailing garbage.
done
slippy$
Can you also please send this to our upstream, hostap@lists.infradead.org. I prefer not having our source diverge from upstream too much.
Yesterday
The poll(2) part is added
Are there any updates here?
@arichardson : Use SORT_BY_INIT_PRIORITY()
Change %03X to %07X to print subsystem values, now that I reverted the renumbering of the subsystem and order values.
In D40463#921144, @hselasky wrote:In D40463#921097, @jrtc27 wrote:Oh also linker_file_lookup_set with a section name like that won't work on anything other than amd64, since link_elf relies on the start/stop symbols, not the section name.
Please tell me if I'm mistaken, but isn't that all controlled by the ldscripts we have?
I'm just about to test D40467 on aarch64. It seems to do the trick, at least as seen by objdump.
Fix a bug in sysinit_insert_sorted().
Fix wording. SYSUNINITs are only called on module unload.
Test case for this and the other cursor bug fix: https://reviews.freebsd.org/D40469
Revert back to function with no arguments. Fix typo and formatting.
Thank you for suggestion.
I've re-worked patch with MASTERDIR approach and shortened the patch to only angie and angie-module-geoip2 ports for ease of review process. If we can agree on this method, I'm ready to introduce all the others.
Thank you in advance!
In D40105#921197, @jhb wrote:Can you provide more description of what this change is doing? From what I can tell it uses err directly to abort quicker if it fails to restore an in-kernel structure, it inlines vm_restore_kern_struct into the loop in vm_restore_kern_structs. It renames vm_snapshot_kern_structs which is somewhat gratuitous IMO as it now no longer matches the other function names like vm_snapshot_user_devs. But I think the big change is not using lookup_struct and instead using meta->dev_name instead of meta->dev_req as the main key for the JSON for a given kernel struct? I think this means you can avoid lookup_struct because now instead of a flat array of all kernel structures they are separate objects with unique names? Can you expand on that more perhaps maybe with some examples of before/after JSON snippets? I would also suggest perhaps only doing the JSON change in this commit and not mixing in the other changes that I think obscure the real change you are making (e.g. the function rename, or inlining the function).