From d24b014e2dcb93e65c022c0a91cde3dbd26a238a Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 4 Jan 2010 14:24:50 +0100 Subject: Change directory instead of setting GIT_DIR, correct tag ref path --- git2svn-sync | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/git2svn-sync b/git2svn-sync index dbb4fc4..b63d468 100755 --- a/git2svn-sync +++ b/git2svn-sync @@ -17,14 +17,17 @@ if [ ! -d $GIT_SVN_REPO_CHECKOUT/.git/svn ] ; then exit 3 fi -export GIT_DIR=$GIT_SVN_REPO_CHECKOUT +p=$(pwd) +cd $GIT_SVN_REPO_CHECKOUT git fetch $GIT_REPO git branch tmp $(cut -b-40 .git/FETCH_HEAD) git tag -a -m "Last fetch" newlast tmp git rebase --onto master last tmp git branch -M tmp master git svn dcommit -mv $GIT_SVN_REPO_CHECKOUT/.git/refs/newlast \ - $GIT_SVN_REPO_CHECKOUT/.git/refs/last +mv $GIT_SVN_REPO_CHECKOUT/.git/refs/tags/newlast \ + $GIT_SVN_REPO_CHECKOUT/.git/refs/tags/last + +cd $p # vim:ft=sh -- cgit v1.2.3-54-g00ecf tion> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/arch/x86/mm
lass='txt' type='search' size='10' name='q' value=''/>
AgeCommit message (Expand)AuthorFilesLines
diff options
context:
space:
mode:
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>2016-09-23 22:57:13 -0400
committerSteven Rostedt <rostedt@goodmis.org>2016-09-25 10:27:08 -0400
commit1245800c0f96eb6ebb368593e251d66c01e61022 (patch)
treec945fb377258b480d806786d33fbd0f6ce118022 /Documentation
parentc87edb36118664f1fa275107c1138b6f47793240 (diff)
tracing: Move mutex to protect against resetting of seq data
The iter->seq can be reset outside the protection of the mutex. So can reading of user data. Move the mutex up to the beginning of the function. Fixes: d7350c3f45694 ("tracing/core: make the read callbacks reentrants") Cc: stable@vger.kernel.org # 2.6.30+ Reported-by: Al Viro <viro@ZenIV.linux.org.uk> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Documentation')