summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/llite/llite_mmap.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-03 06:01:58 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-03 06:01:58 +0800
commit23f14e79ace301c1e46b52344ce02e72254c57b6 (patch)
tree3b88c36c39126b252d8cf32e2ad817373afb63e5 /drivers/staging/lustre/lustre/llite/llite_mmap.c
parente05e02e42092dc5e432a9c84d46bd3109808172d (diff)
downloadlinux-0-day-23f14e79ace301c1e46b52344ce02e72254c57b6.tar.gz
linux-0-day-23f14e79ace301c1e46b52344ce02e72254c57b6.tar.xz
staging: lustre: remove EXIT macro
We have a kernel-wide function tracing system, so use that instead of rolling a custom one just for one filesystem. Cc: Peng Tao <tao.peng@emc.com> Cc: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre/llite/llite_mmap.c')
-rw-r--r--drivers/staging/lustre/lustre/llite/llite_mmap.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/staging/lustre/lustre/llite/llite_mmap.c b/drivers/staging/lustre/lustre/llite/llite_mmap.c
index d98a40f61bfce..26a5247cbc29b 100644
--- a/drivers/staging/lustre/lustre/llite/llite_mmap.c
+++ b/drivers/staging/lustre/lustre/llite/llite_mmap.c
@@ -249,7 +249,6 @@ static int ll_page_mkwrite0(struct vm_area_struct *vma, struct page *vmpage,
spin_unlock(&lli->lli_lock);
}
}
- EXIT;
out_io:
cl_io_fini(env, io);
@@ -432,7 +431,6 @@ static void ll_vm_open(struct vm_area_struct * vma)
LASSERT(vma->vm_file);
LASSERT(atomic_read(&vob->cob_mmap_cnt) >= 0);
atomic_inc(&vob->cob_mmap_cnt);
- EXIT;
}
/**
@@ -446,7 +444,6 @@ static void ll_vm_close(struct vm_area_struct *vma)
LASSERT(vma->vm_file);
atomic_dec(&vob->cob_mmap_cnt);
LASSERT(atomic_read(&vob->cob_mmap_cnt) >= 0);
- EXIT;
}