From: John L. <mov...@us...> - 2001-07-27 00:58:30
|
Update of /cvsroot/oprofile/oprofile In directory usw-pr-cvs1:/tmp/cvs-serv3620 Modified Files: op_syscalls.c Log Message: whitespace Index: op_syscalls.c =================================================================== RCS file: /cvsroot/oprofile/oprofile/op_syscalls.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- op_syscalls.c 2001/07/25 02:54:49 1.11 +++ op_syscalls.c 2001/07/27 00:58:27 1.12 @@ -399,7 +399,7 @@ if (!(mm = task->mm)) goto out; - + take_mmap_sem(mm); spin_lock(&map_lock); for (map = mm->mmap; map; map = map->vm_next) { @@ -423,7 +423,7 @@ int ret; MOD_INC_USE_COUNT; - + filename = getname((char *)regs.ebx); if (IS_ERR(filename)) { MOD_DEC_USE_COUNT; @@ -449,7 +449,7 @@ struct file *file; MOD_INC_USE_COUNT; - + file = fget(fd); if (!file) return; @@ -487,7 +487,7 @@ int ret; MOD_INC_USE_COUNT; - + ret = old_old_mmap(arg); if ((pid_filter && current->pid != pid_filter) || @@ -527,7 +527,7 @@ int ret; MOD_INC_USE_COUNT; - + ret = old_sys_fork(regs); if (ret) oprof_report_fork(pid,ret); @@ -566,7 +566,7 @@ long ret; MOD_INC_USE_COUNT; - + ret = old_sys_init_module(name_user, mod_user); if (ret >= 0) { @@ -586,7 +586,7 @@ struct op_sample samp; MOD_INC_USE_COUNT; - + if ((pid_filter && current->pid != pid_filter) || (pgrp_filter && current->pgrp != pgrp_filter)) goto out; |