Linux 7.2 is landing real work – cache-aware scheduling, a two-line IOPS fix – while Daniel Stenberg draws a line on CVE noise. Google’s data-agent announcement is mostly previews dressed as GA.
- Linux 7.2 Cache-Aware Scheduling Merged, Finally Handles Multiple Last-Level Caches on Modern CPUs — Phoronix · Jun 15
Cache-Aware Scheduling landed in Linux 7.2, merged under the CONFIG_SCHED_CACHE Kconfig option after more than a year of development by Intel engineers. The feature co-locates tasks that share data within the same last-level cache domain, reducing cache misses and bouncing on CPUs with complex cache topologies – particularly relevant for high core-count AMD EPYC and Intel Xeon 6 parts. Earlier benchmarks showed meaningful gains on AMD Zen 5 workloads including PostgreSQL, Valkey, and network performance, though the author notes fresh 7.2-specific numbers are still coming. The same scheduling pull also includes SD_ASYM_CPUCAPACITY SMT awareness improvements and better data locality for cfs_rq and sched_entity allocation. It’s opt-in at build time, so distros will need to decide whether to ship it enabled before you see it in production kernels. - Daniel Stenberg Is Closing curl’s Vulnerability Queue July 1 Through August 3 — LWN.net · Jun 15
Daniel Stenberg is closing curl’s vulnerability intake queue from July 1 through August 3 – paid support contracts excepted – citing four months of unusually high pressure from security reports. He’s calling it the “curl summer of bliss” and is openly encouraging other open-source maintainers to do the same. The curl 8.22.0 release slips two weeks to September 2, 2026 as a result. The practical note for security teams: if you’re sitting on a curl CVE to disclose this summer, the coordinated disclosure window just got narrower. - Linux 7.2 Gets +5% IOPS on EXT4 and XFS by Reordering Two Lines in IOmap — Phoronix · Jun 16
Bytedance engineer Fengnan Chang landed a two-line fix in Linux 7.2’s IOmap layer that skips a now-pointless memset in iomap_iter() once iteration completes – the memset was burning memory write bandwidth for nothing. The gain is ~5% IOPS on ext4 and xfs, measured on 4K random-read NVMe workloads using io_uring polling. If you run high-IOPS NVMe storage with either filesystem and io_uring, this is a free win once you’re on 7.2. The same pull also adds VFS infrastructure for FS-VERITY support on XFS via a post-EOF Merkle tree. - Redis Monitoring 101: Key Issues and Best Practices — groundcover · Jun 13
A broad Redis monitoring primer covering the most common performance problems and the metrics worth tracking. The practical bits: low hit rates (check via INFO keyspace_hits/keyspace_misses), large values in sorted sets and hashes triggering cleanup bugs, MOVED errors from multi-key pipeline operations across shards, and lost atomicity when chaining Exists + INCR separately – fixable with a Lua script eval. On the cluster side, using a general-purpose hash key instead of spreading data across multiple keys pushes all lookup pressure to a single node, which becomes a bottleneck at scale. Built-in tools (INFO, SLOWLOG, MONITOR) give you the raw data; the article recommends exporting INFO output to Prometheus for ongoing monitoring. Nothing groundbreaking if you’ve operated Redis in production before, but a reasonable reference if you’re just starting to instrument it. - What’s new in data agents: Supercharging your AI workflows — Google Cloud Blog · Jun 15
Google announced a large batch of data agent features across BigQuery, AlloyDB, Spanner, Cloud SQL, Looker, and Lakehouse – most in preview, a handful now generally available. The headline claims include near-100% accuracy for natural language-to-SQL conversion via QueryData, Managed MCP Servers for five databases now GA, and MCP Toolbox for Databases hitting 1.0. Practically, the release covers three layers: conversational analytics for business users querying databases in plain English, purpose-built agents for data engineers, scientists, and DBAs that automate pipeline builds and database monitoring, and developer tooling to connect agents to enterprise data via MCP. The accuracy claim is vendor-tested against unspecified benchmarks, so treat it as aspirational until you run it against your own schema complexity. Teams already on Google Cloud data products have the most to gain here; anyone evaluating MCP-based agent infrastructure should look at the Managed MCP Server GA as the lowest-friction entry point.
// In other news
ai
- Import AI 461: “Alignment is not on track”; FrontierCode; and synthetic research interns (Import AI) · Jun 15 — Jack Clark’s Import AI summarizes a notable claim that alignment research is falling behind capabilities, plus FrontierCode benchmark results and early experiments with synthetic AI research assistants.
- “They screwed us”: Personality clashes sent Anthropic’s models offline (Simon Willison) · Jun 15 — Axios reports that White House personality conflicts caused Anthropic’s Fable and Mythos models to be pulled offline – Simon Willison links with context on the political fallout.
- Cloudflare CAPTCHA on at least one ampersand (Simon Willison) · Jun 16 — Cloudflare’s CAPTCHA API triggers on any string containing an ampersand, breaking programmatic use in ways that aren’t documented – a sharp edge worth knowing before shipping.
- datasette-agent 0.3a0 (Simon Willison) · Jun 15 — datasette-agent 0.3a0 adds a write-SQL execution tool, moving the plugin from read-only exploration toward agentic data modification – review your permissions if you’re running this publicly.
- [AINews] Fable and Mythos officially too dangerous to release (Latent Space) · Jun 13 — Latent Space covers Anthropic’s decision to shelve Fable and Mythos as too dangerous to release, with context on what the safety evaluations reportedly found.
cloud
- AWS WAF adds AI traffic monetization capability to help content owners charge AI bots for content access (AWS News Blog) · Jun 15 — AWS WAF’s Bot Control now lets publishers meter and charge AI crawlers per-request, shifting the bot-blocking model toward tollgating rather than just blocking.
- How Samsung achieved real-time pricing with AWS Lambda Response Streaming (AWS Architecture) · Jun 15 — Samsung’s pricing pipeline moved to Lambda response streaming to cut latency on real-time price calculations – the post covers the stateless architecture and measured throughput gains.
iac
- Implementing workload identity with HashiCorp Vault and SPIFFE (HashiCorp Blog) · Jun 15 — HashiCorp walks through using Vault as a SPIFFE identity issuer, clarifying where SPIRE is still required and where Vault alone covers the workload-auth use case.
k8s
- Improving Arm64 support in CNCF projects with OCI credits (CNCF Blog) · Jun 15 — CNCF is distributing OCI compute credits to improve arm64 CI coverage across hosted projects, prompted by arm64 now exceeding 50% of new AWS instances and 33% on Azure.
linux
- Reading /proc/filesystems Is Surprisingly Done Very Often & Now As Much As 444% Faster (Phoronix) · Jun 15 — Linux 7.2 patches /proc/filesystems reads to run up to 444% faster after profiling revealed SELinux’s libselinux hammers it far more often than anyone expected.
- FreeBSD 15.1 Released With Updated WiFi Drivers, Better C23 Support & Other Improvements (Phoronix) · Jun 16 — FreeBSD 15.1 ships with updated WiFi drivers and improved C23 support, two weeks late due to last-minute blockers – upgrade path from 14.x is documented in the release notes.
- Linux 7.2 Introducing The Rust Zerocopy Library To Eliminate More “Unsafe” Code (Phoronix) · Jun 15 — Linux 7.2 pulls in the Rust zerocopy library and adds over 40,000 new lines of Rust, reducing unsafe blocks in driver code – the biggest single Rust commit to the kernel so far.
- GCC Steering Committee Supports Inclusion Of WebAssembly Backend (Phoronix) · Jun 15 — GCC’s steering committee approved a new WebAssembly backend, meaning C/C++ can soon compile to WASM directly via GCC without relying on LLVM/Emscripten.
- OpenZFS 2.4.3 Released With Many Bug Fixes (Phoronix) · Jun 13 — OpenZFS 2.4.3 is out with bug fixes across the 2.4, 2.3, and 2.2 stable series simultaneously – check the changelog if you’ve hit pool import or send/receive edge cases recently.
sec
- The FCC Wants to Eliminate Burner Phones (Schneier on Security) · Jun 15 — A proposed FCC rule would require telecoms to collect verified ID for all prepaid SIM customers, effectively ending anonymous burner phones in the US – Schneier covers the privacy implications.
web
- Caching get_certificate lookups in Caddy (Freek Van der Herten) · Jun 15 — A new open-source Caddy module caches get_certificate HTTP lookups so your backend isn’t hit on every TLS handshake – useful for high-traffic multi-tenant setups.
Cache-aware scheduling, a two-liner that buys 5% IOPS, and Stenberg taking a break — not a bad week. Back Wednesday.

Leave a comment