MIPS: Fix delay slot emulation count in debugfs

Commit 432c6bacbd0c ("MIPS: Use per-mm page to execute branch delay slot
instructions") accidentally removed use of the MIPS_FPU_EMU_INC_STATS
macro from do_dsemulret, leading to the ds_emul file in debugfs always
returning zero even though we perform delay slot emulations.

Fix this by re-adding the use of the MIPS_FPU_EMU_INC_STATS macro.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Fixes: 432c6bacbd0c ("MIPS: Use per-mm page to execute branch delay slot instructions")
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/14301/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

authored by Paul Burton and committed by Ralf Baechle 116e7111 8f46cca1

Changed files
+1
arch
mips
math-emu
+1
arch/mips/math-emu/dsemul.c
··· 298 298 /* Set EPC to return to post-branch instruction */ 299 299 xcp->cp0_epc = current->thread.bd_emu_cont_pc; 300 300 pr_debug("dsemulret to 0x%08lx\n", xcp->cp0_epc); 301 + MIPS_FPU_EMU_INC_STATS(ds_emul); 301 302 return true; 302 303 }