Commit 72d3d232 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

dump: Drop parasite_complete_ip from parasite_ctl

It was used for debug only to be able to work without
task seizing. Not needed anymore.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@gmail.com>
parent 417fe5d8
......@@ -16,7 +16,6 @@ struct parasite_ctl {
pid_t pid; /* process pid where we live in */
struct vma_area *vma_area; /* our space we host */
unsigned long parasite_ip; /* service routine start ip */
unsigned long parasite_complete_ip; /* where we end execution */
unsigned long addr_cmd; /* addr for command */
unsigned long addr_args; /* address for arguments */
};
......
......@@ -520,7 +520,6 @@ struct parasite_ctl *parasite_infect_seized(pid_t pid, void *addr_hint, struct l
}
ctl->parasite_ip = PARASITE_HEAD_ADDR((unsigned long)mmaped);
ctl->parasite_complete_ip = PARASITE_COMPLETE_ADDR((unsigned long)mmaped);
ctl->addr_cmd = PARASITE_CMD_ADDR((unsigned long)mmaped);
ctl->addr_args = PARASITE_ARGS_ADDR((unsigned long)mmaped);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment