|
@@ -1701,19 +1701,15 @@ static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
|
|
|
/*
|
|
|
* If this record is being updated from a nop, then
|
|
|
* return UPDATE_MAKE_CALL.
|
|
|
- * Otherwise, if the EN flag is set, then return
|
|
|
- * UPDATE_MODIFY_CALL_REGS to tell the caller to convert
|
|
|
- * from the non-save regs, to a save regs function.
|
|
|
* Otherwise,
|
|
|
* return UPDATE_MODIFY_CALL to tell the caller to convert
|
|
|
- * from the save regs, to a non-save regs function.
|
|
|
+ * from the save regs, to a non-save regs function or
|
|
|
+ * vice versa.
|
|
|
*/
|
|
|
if (flag & FTRACE_FL_ENABLED)
|
|
|
return FTRACE_UPDATE_MAKE_CALL;
|
|
|
- else if (rec->flags & FTRACE_FL_REGS_EN)
|
|
|
- return FTRACE_UPDATE_MODIFY_CALL_REGS;
|
|
|
- else
|
|
|
- return FTRACE_UPDATE_MODIFY_CALL;
|
|
|
+
|
|
|
+ return FTRACE_UPDATE_MODIFY_CALL;
|
|
|
}
|
|
|
|
|
|
if (update) {
|
|
@@ -1815,7 +1811,6 @@ __ftrace_replace_code(struct dyn_ftrace *rec, int enable)
|
|
|
case FTRACE_UPDATE_MAKE_NOP:
|
|
|
return ftrace_make_nop(NULL, rec, ftrace_addr);
|
|
|
|
|
|
- case FTRACE_UPDATE_MODIFY_CALL_REGS:
|
|
|
case FTRACE_UPDATE_MODIFY_CALL:
|
|
|
return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
|
|
|
}
|