Merge 5.6-rc3 into char-misc-next
We need the char/misc fixes in here as well. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -932,10 +932,6 @@ sub get_maintainers {
|
||||
}
|
||||
}
|
||||
|
||||
foreach my $fix (@fixes) {
|
||||
vcs_add_commit_signers($fix, "blamed_fixes");
|
||||
}
|
||||
|
||||
foreach my $email (@email_to, @list_to) {
|
||||
$email->[0] = deduplicate_email($email->[0]);
|
||||
}
|
||||
@@ -974,6 +970,10 @@ sub get_maintainers {
|
||||
}
|
||||
}
|
||||
|
||||
foreach my $fix (@fixes) {
|
||||
vcs_add_commit_signers($fix, "blamed_fixes");
|
||||
}
|
||||
|
||||
my @to = ();
|
||||
if ($email || $email_list) {
|
||||
if ($email) {
|
||||
@@ -1341,35 +1341,11 @@ sub add_categories {
|
||||
}
|
||||
}
|
||||
} elsif ($ptype eq "M") {
|
||||
my ($name, $address) = parse_email($pvalue);
|
||||
if ($name eq "") {
|
||||
if ($i > 0) {
|
||||
my $tv = $typevalue[$i - 1];
|
||||
if ($tv =~ m/^([A-Z]):\s*(.*)/) {
|
||||
if ($1 eq "P") {
|
||||
$name = $2;
|
||||
$pvalue = format_email($name, $address, $email_usename);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($email_maintainer) {
|
||||
my $role = get_maintainer_role($i);
|
||||
push_email_addresses($pvalue, $role);
|
||||
}
|
||||
} elsif ($ptype eq "R") {
|
||||
my ($name, $address) = parse_email($pvalue);
|
||||
if ($name eq "") {
|
||||
if ($i > 0) {
|
||||
my $tv = $typevalue[$i - 1];
|
||||
if ($tv =~ m/^([A-Z]):\s*(.*)/) {
|
||||
if ($1 eq "P") {
|
||||
$name = $2;
|
||||
$pvalue = format_email($name, $address, $email_usename);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($email_reviewer) {
|
||||
my $subsystem = get_subsystem_name($i);
|
||||
push_email_addresses($pvalue, "reviewer:$subsystem");
|
||||
|
@@ -210,7 +210,7 @@ static struct sym_entry *read_symbol(FILE *in)
|
||||
|
||||
len = strlen(name) + 1;
|
||||
|
||||
sym = malloc(sizeof(*sym) + len);
|
||||
sym = malloc(sizeof(*sym) + len + 1);
|
||||
if (!sym) {
|
||||
fprintf(stderr, "kallsyms failure: "
|
||||
"unable to allocate required amount of memory\n");
|
||||
@@ -219,7 +219,7 @@ static struct sym_entry *read_symbol(FILE *in)
|
||||
sym->addr = addr;
|
||||
sym->len = len;
|
||||
sym->sym[0] = type;
|
||||
memcpy(sym_name(sym), name, len);
|
||||
strcpy(sym_name(sym), name);
|
||||
sym->percpu_absolute = 0;
|
||||
|
||||
return sym;
|
||||
|
@@ -239,7 +239,7 @@ else
|
||||
fi;
|
||||
|
||||
# final build of init/
|
||||
${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init
|
||||
${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init need-builtin=1
|
||||
|
||||
#link vmlinux.o
|
||||
info LD vmlinux.o
|
||||
|
Reference in New Issue
Block a user