diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-10-03 20:15:36 +0200 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2014-10-08 09:57:07 +0100 |
commit | d29c0afe4db72ceb72149c3894a6079674e9751f (patch) | |
tree | 8ee3de0ac0022ac91ed82bf2fef790a723dcd5fa /fs/gfs2/glock.c | |
parent | d24e0569e046430832d32eb3ea231dc763782e4d (diff) | |
download | linux-stable-d29c0afe4db72ceb72149c3894a6079674e9751f.tar.gz linux-stable-d29c0afe4db72ceb72149c3894a6079674e9751f.tar.bz2 linux-stable-d29c0afe4db72ceb72149c3894a6079674e9751f.zip |
GFS2: use _RET_IP_ instead of (unsigned long)__builtin_return_address(0)
use macro definition
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/glock.c')
-rw-r--r-- | fs/gfs2/glock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 7f513b1ceb2c..8f0c19d1d943 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -811,7 +811,7 @@ void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags, { INIT_LIST_HEAD(&gh->gh_list); gh->gh_gl = gl; - gh->gh_ip = (unsigned long)__builtin_return_address(0); + gh->gh_ip = _RET_IP_; gh->gh_owner_pid = get_pid(task_pid(current)); gh->gh_state = state; gh->gh_flags = flags; @@ -835,7 +835,7 @@ void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder * gh->gh_state = state; gh->gh_flags = flags; gh->gh_iflags = 0; - gh->gh_ip = (unsigned long)__builtin_return_address(0); + gh->gh_ip = _RET_IP_; if (gh->gh_owner_pid) put_pid(gh->gh_owner_pid); gh->gh_owner_pid = get_pid(task_pid(current)); |