From: Nikita Kalyazin Date: Mon, 5 Sep 2011 06:49:43 +0000 (+0400) Subject: Removed messing debug output (introduced in 625f1537f3d0f93d3eeb5e155a33956ba1894dd6) X-Git-Tag: Tizen_SDK_2.3~833 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82b3e1a2a630736772e685682d00c0ace42e9707;p=kernel%2Fswap-modules.git Removed messing debug output (introduced in 625f1537f3d0f93d3eeb5e155a33956ba1894dd6) --- diff --git a/driver/us_proc_inst.c b/driver/us_proc_inst.c index 6604746..be8e29f 100644 --- a/driver/us_proc_inst.c +++ b/driver/us_proc_inst.c @@ -208,14 +208,12 @@ static int is_android_app_with_dentry(struct vm_area_struct *vma, struct vm_area_struct *android_app_vma = NULL; if (vma->vm_file->f_dentry == app_process_dentry) { - printk("found app_process!\n"); android_app_vma = vma; while (android_app_vma) { if (android_app_vma->vm_file) { if (android_app_vma->vm_file->f_dentry == dentry) { android_app_vma_start = android_app_vma->vm_start; android_app_vma_end = android_app_vma->vm_end; - printk("found apk!\n"); return 1; } }