From: Johannes Weiner <hannes@cmpxchg.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
linux-fsdevel@vger.kernel.org
Subject: Re: mmotm 2011-02-04-15-15 uploaded
Date: Sat, 5 Feb 2011 12:40:44 +0100 [thread overview]
Message-ID: <20110205114044.GA2317@cmpxchg.org> (raw)
In-Reply-To: <20110205104430.GB2315@cmpxchg.org>
On Sat, Feb 05, 2011 at 11:44:30AM +0100, Johannes Weiner wrote:
> On Fri, Feb 04, 2011 at 06:43:00PM -0800, Andrew Morton wrote:
> > On Sat, 5 Feb 2011 13:34:50 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> > > On Fri, 04 Feb 2011 15:15:17 -0800 akpm@linux-foundation.org wrote:
> > > >
> > > > The mm-of-the-moment snapshot 2011-02-04-15-15 has been uploaded to
> > > >
> > > > http://userweb.kernel.org/~akpm/mmotm/
> > > >
> > > > and will soon be available at
> > > >
> > > > git://zen-kernel.org/kernel/mmotm.git
> > >
> > > Just an FYI (origin is the above git repo):
> > >
> > > $ git remote update origin
> > > Fetching origin
> > > fatal: read error: Connection reset by peer
> > > error: Could not fetch origin
> >
> > Yes, that's been dead for a while and James isn't responding to email.
>
> I created an automated tree for myself a while ago. It has been
> working fine for the last few -mmotm snapshots:
>
> http://git.cmpxchg.org/?p=linux-mmotm.git;a=summary
>
> Feel free to use that and let me know if something is not right.
Here is the script I use for tree generation, btw:
---
#!/bin/bash
set -e
cd `dirname $0`
CWD="`pwd`"
TAR="broken-out.tar.gz"
URL="http://kernel.org/~akpm/mmotm/$TAR"
TREE_PRIVATE="$CWD/linux-2.6"
TREE_PUBLIC="/pub/git/linux-mmotm.git"
mtime()
{
stat --printf='%Y' "$@"
}
prepare()
{
if [ -f "$TAR" ]
then
ORG="`mtime $TAR`"
wget -qN "$URL"
[ "$ORG" = "`mtime $TAR`" ] && exit 0
else
wget -q "$URL"
fi
rm -rf broken-out
tar -xf "$TAR"
mv .DATE* series broken-out/
# fix empty binary hunks so git will eat them
sed -i '/^Binary files.*differ/d' broken-out/*.patch
}
[ "$1" = "-r" ] || prepare
LTAG="v`sed -n 2p broken-out/.DATE`"
ATAG="$LTAG-mmotm-`sed -n 1p broken-out/.DATE`"
cd "$TREE_PRIVATE"
git fetch --tags
git reset --quiet --hard "$LTAG"
git clean --quiet -fdx
rm -rf .git/rebase-apply
git quiltimport --author "mmotm auto import <mm-commits@vger.kernel.org>" --patches "$CWD/broken-out"
git tag -f "$ATAG"
git push --force "$TREE_PUBLIC" --tags
git push --force "$TREE_PUBLIC" --all
WARNING: multiple messages have this Message-ID (diff)
From: Johannes Weiner <hannes@cmpxchg.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
linux-fsdevel@vger.kernel.org
Subject: Re: mmotm 2011-02-04-15-15 uploaded
Date: Sat, 5 Feb 2011 12:40:44 +0100 [thread overview]
Message-ID: <20110205114044.GA2317@cmpxchg.org> (raw)
In-Reply-To: <20110205104430.GB2315@cmpxchg.org>
On Sat, Feb 05, 2011 at 11:44:30AM +0100, Johannes Weiner wrote:
> On Fri, Feb 04, 2011 at 06:43:00PM -0800, Andrew Morton wrote:
> > On Sat, 5 Feb 2011 13:34:50 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> > > On Fri, 04 Feb 2011 15:15:17 -0800 akpm@linux-foundation.org wrote:
> > > >
> > > > The mm-of-the-moment snapshot 2011-02-04-15-15 has been uploaded to
> > > >
> > > > http://userweb.kernel.org/~akpm/mmotm/
> > > >
> > > > and will soon be available at
> > > >
> > > > git://zen-kernel.org/kernel/mmotm.git
> > >
> > > Just an FYI (origin is the above git repo):
> > >
> > > $ git remote update origin
> > > Fetching origin
> > > fatal: read error: Connection reset by peer
> > > error: Could not fetch origin
> >
> > Yes, that's been dead for a while and James isn't responding to email.
>
> I created an automated tree for myself a while ago. It has been
> working fine for the last few -mmotm snapshots:
>
> http://git.cmpxchg.org/?p=linux-mmotm.git;a=summary
>
> Feel free to use that and let me know if something is not right.
Here is the script I use for tree generation, btw:
---
#!/bin/bash
set -e
cd `dirname $0`
CWD="`pwd`"
TAR="broken-out.tar.gz"
URL="http://kernel.org/~akpm/mmotm/$TAR"
TREE_PRIVATE="$CWD/linux-2.6"
TREE_PUBLIC="/pub/git/linux-mmotm.git"
mtime()
{
stat --printf='%Y' "$@"
}
prepare()
{
if [ -f "$TAR" ]
then
ORG="`mtime $TAR`"
wget -qN "$URL"
[ "$ORG" = "`mtime $TAR`" ] && exit 0
else
wget -q "$URL"
fi
rm -rf broken-out
tar -xf "$TAR"
mv .DATE* series broken-out/
# fix empty binary hunks so git will eat them
sed -i '/^Binary files.*differ/d' broken-out/*.patch
}
[ "$1" = "-r" ] || prepare
LTAG="v`sed -n 2p broken-out/.DATE`"
ATAG="$LTAG-mmotm-`sed -n 1p broken-out/.DATE`"
cd "$TREE_PRIVATE"
git fetch --tags
git reset --quiet --hard "$LTAG"
git clean --quiet -fdx
rm -rf .git/rebase-apply
git quiltimport --author "mmotm auto import <mm-commits@vger.kernel.org>" --patches "$CWD/broken-out"
git tag -f "$ATAG"
git push --force "$TREE_PUBLIC" --tags
git push --force "$TREE_PUBLIC" --all
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2011-02-05 11:40 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-04 23:15 mmotm 2011-02-04-15-15 uploaded akpm
2011-02-04 23:15 ` akpm
2011-02-05 2:31 ` mmotm 2011-02-04-15-15 uploaded (printk DEFAULT_MESSAGE_LOGLEVEL) Randy Dunlap
2011-02-05 2:31 ` Randy Dunlap
2011-02-05 2:34 ` mmotm 2011-02-04-15-15 uploaded Stephen Rothwell
2011-02-05 2:43 ` Andrew Morton
2011-02-05 2:43 ` Andrew Morton
2011-02-05 10:44 ` Johannes Weiner
2011-02-05 10:44 ` Johannes Weiner
2011-02-05 11:40 ` Johannes Weiner [this message]
2011-02-05 11:40 ` Johannes Weiner
2011-02-05 2:38 ` mmotm 2011-02-04-15-15 uploaded (page_cgroup.h) Randy Dunlap
2011-02-05 9:04 ` [patch fixup] memcg: remove direct page_cgroup-to-page pointer fix Johannes Weiner
2011-02-05 9:04 ` Johannes Weiner
2011-02-05 18:04 ` Randy Dunlap
2011-02-05 18:04 ` Randy Dunlap
2011-02-05 17:36 ` [PATCH -mmotm] staging/easycap: fix build when SND is not enabled Randy Dunlap
2011-02-05 17:36 ` Randy Dunlap
2011-02-06 7:25 ` Tomas Winkler
2011-02-06 7:25 ` Tomas Winkler
2011-02-06 16:01 ` Randy Dunlap
2011-02-06 16:01 ` Randy Dunlap
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110205114044.GA2317@cmpxchg.org \
--to=hannes@cmpxchg.org \
--cc=akpm@linux-foundation.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=sfr@canb.auug.org.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.