forked from Qortal/Brooklyn
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
46 lines
764 B
C
46 lines
764 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/*
|
|
* Copyright 2021 Google LLC.
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <linux/bpf.h>
|
|
#include <bpf/bpf_helpers.h>
|
|
|
|
__u32 invocations = 0;
|
|
__u32 assertion_error = 0;
|
|
__u32 retval_value = 0;
|
|
__u32 ctx_retval_value = 0;
|
|
|
|
SEC("cgroup/getsockopt")
|
|
int get_retval(struct bpf_sockopt *ctx)
|
|
{
|
|
retval_value = bpf_get_retval();
|
|
ctx_retval_value = ctx->retval;
|
|
__sync_fetch_and_add(&invocations, 1);
|
|
|
|
return 1;
|
|
}
|
|
|
|
SEC("cgroup/getsockopt")
|
|
int set_eisconn(struct bpf_sockopt *ctx)
|
|
{
|
|
__sync_fetch_and_add(&invocations, 1);
|
|
|
|
if (bpf_set_retval(-EISCONN))
|
|
assertion_error = 1;
|
|
|
|
return 1;
|
|
}
|
|
|
|
SEC("cgroup/getsockopt")
|
|
int clear_retval(struct bpf_sockopt *ctx)
|
|
{
|
|
__sync_fetch_and_add(&invocations, 1);
|
|
|
|
ctx->retval = 0;
|
|
|
|
return 1;
|
|
}
|