Merge 21873bd66b ("Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux") into android-mainline
Steps on the way to 5.19-rc1 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: If311727467bac64a2f4295ce67b1d86f26e55185
This commit is contained in:
commit
0968c481bc
5 changed files with 10 additions and 5 deletions
|
|
@ -427,7 +427,7 @@ int swsusp_arch_resume(void)
|
|||
return rc;
|
||||
|
||||
/*
|
||||
* We need a zero page that is zero before & after resume in order to
|
||||
* We need a zero page that is zero before & after resume in order
|
||||
* to break before make on the ttbr1 page tables.
|
||||
*/
|
||||
zero_page = (void *)get_safe_page(GFP_ATOMIC);
|
||||
|
|
|
|||
|
|
@ -303,13 +303,14 @@ void __init __no_sanitize_address setup_arch(char **cmdline_p)
|
|||
early_fixmap_init();
|
||||
early_ioremap_init();
|
||||
|
||||
setup_machine_fdt(__fdt_pointer);
|
||||
|
||||
/*
|
||||
* Initialise the static keys early as they may be enabled by the
|
||||
* cpufeature code and early parameters.
|
||||
* cpufeature code, early parameters, and DT setup.
|
||||
*/
|
||||
jump_label_init();
|
||||
|
||||
setup_machine_fdt(__fdt_pointer);
|
||||
|
||||
parse_early_param();
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -385,7 +385,7 @@ static int preserve_za_context(struct za_context __user *ctx)
|
|||
return err ? -EFAULT : 0;
|
||||
}
|
||||
|
||||
static int restore_za_context(struct user_ctxs __user *user)
|
||||
static int restore_za_context(struct user_ctxs *user)
|
||||
{
|
||||
int err;
|
||||
unsigned int vq;
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ int ftrace_graph_active;
|
|||
/* Both enabled by default (can be cleared by function_graph tracer flags */
|
||||
static bool fgraph_sleep_time = true;
|
||||
|
||||
#ifdef CONFIG_DYNAMIC_FTRACE
|
||||
/*
|
||||
* archs can override this function if they must do something
|
||||
* to enable hook for graph tracer.
|
||||
|
|
@ -47,6 +48,7 @@ int __weak ftrace_disable_ftrace_graph_caller(void)
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
/**
|
||||
* ftrace_graph_stop - set to permanently disable function graph tracing
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
* supported and is expected to segfault.
|
||||
*/
|
||||
|
||||
#include <kselftest.h>
|
||||
#include <signal.h>
|
||||
#include <ucontext.h>
|
||||
#include <sys/prctl.h>
|
||||
|
|
@ -40,6 +41,7 @@ static bool sve_get_vls(struct tdescr *td)
|
|||
/* We need at least two VLs */
|
||||
if (nvls < 2) {
|
||||
fprintf(stderr, "Only %d VL supported\n", nvls);
|
||||
td->result = KSFT_SKIP;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue