[uml-devel] [PATCH linux-next] remove csum_partial_copy_generic_i386 to clean up exception table

2014-06-04 Thread Honggang Li
The csum_partial_copy_generic_i386 never been called. It mess up x86 uml kernel exception table. So remove it. linux-next]$ grep -n -r csum_partial_copy_generic_i386 . ./arch/x86/um/checksum_32.S:249:csum_partial_copy_generic_i386: ./arch/x86/um/checksum_32.S:384:csum_partial_copy_generic_i386:

[uml-devel] [PATCH] remove csum_partial_copy_generic_i386 to clean up exception table

2014-06-04 Thread Honggang Li
arch/x86/um/checksum_32.S had been copy & paste from x86. When build x86 uml, csum_partial_copy_generic_i386 mess up the exception table. In fact, exception table dose not work in uml kernel. And csum_partial_copy_generic_i386 never been called. So, delete it. Signed-off-by: Honggang Li --- arc