Skip to content

Commit 215b28a

Browse files
groecktorvalds
authored andcommitted
s390: Fix broken build
Fix this build error: In file included from fs/exec.c:61:0: arch/s390/include/asm/tlb.h:35:23: error: expected identifier or '(' before 'unsigned' arch/s390/include/asm/tlb.h:36:1: warning: no semicolon at end of struct or union [enabled by default] arch/s390/include/asm/tlb.h: In function 'tlb_gather_mmu': arch/s390/include/asm/tlb.h:57:5: error: 'struct mmu_gather' has no member named 'end' Broken due to commit 2b04725 ("Fix TLB gather virtual address range invalidation corner cases"). Cc: Greg Kroah-Hartman <[email protected]> Cc: [email protected] Signed-off-by: Guenter Roeck <[email protected]> [ Oh well. We had build testing for ppc amd um, but no s390 - Linus ] Signed-off-by: Linus Torvalds <[email protected]>
1 parent e180383 commit 215b28a

File tree

1 file changed

+1
-1
lines changed
  • arch/s390/include/asm

1 file changed

+1
-1
lines changed

arch/s390/include/asm/tlb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ struct mmu_gather {
3232
struct mm_struct *mm;
3333
struct mmu_table_batch *batch;
3434
unsigned int fullmm;
35-
unsigned long start, unsigned long end;
35+
unsigned long start, end;
3636
};
3737

3838
struct mmu_table_batch {

0 commit comments

Comments
 (0)