arch/mips/net/bpf_jit.c: fix failure check
authorAndrey Utkin <andrey.krieger.utkin@gmail.com>
Thu, 17 Jul 2014 14:22:38 +0000 (17:22 +0300)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 26 Aug 2014 00:18:59 +0000 (02:18 +0200)
commit98fb24af5e6885ae5ae6b1598a875922e0d83a36
tree6d361d95926fe5620d335ac95dd3e227741f77e9
parent68c77d8a1e1ad6cfe228390702f3e4eb2bf8e17a
arch/mips/net/bpf_jit.c: fix failure check

static int pkt_type_offset(void) returned -1 in case of failure, and actual
(positive) offset value in case of success. In the only instance of its usage,
the result was saved to local "unsigned int off" variable, which is used in a
lot of places in the same (large) function, so changing its type could cause
many warnings. So new signed int variable was added.

Signed-off-by: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=80371
Reported-by: David Binderman <dcb314@hotmail.com>
Cc: linux-kernel@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org
Cc: linux-mips@linux-mips.org
Cc: dborkman@redhat.com
Cc: markos.chandras@imgtec.com
Patchwork: https://patchwork.linux-mips.org/patch/7380/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/net/bpf_jit.c