[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130126001419.GG3341@elie.Belkin>
Date: Fri, 25 Jan 2013 16:14:19 -0800
From: Jonathan Nieder <jrnieder@...il.com>
To: paul.szabo@...ney.edu.au
Cc: 695182@...s.debian.org, ben@...adent.org.uk,
linux-kernel@...r.kernel.org, linux-mm@...ck.org,
minchan@...nel.org
Subject: Re: [PATCH] Subtract min_free_kbytes from dirtyable memory
Hi Paul,
paul.szabo@...ney.edu.au wrote:
> Dear Ben,
>> If you can identify where it was fixed then ...
>
> Sorry I cannot do that. I have no idea where kernel changelogs are kept.
Here are some tools.
# prerequisite:
apt-get install git; # as root
# to get the kernel history:
git clone \
https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux.git
cd linux
# to view the changelog:
git log v3.2..
# to grep change descriptions:
git log --grep=min_free_kbytes v3.2..
# to view the patches corresponding to changes:
git log --patch v3.2.. -- mm/
# graphical interface
apt-get install gitk; # as root
gitk v3.2.. -- mm
# web interface:
w3m http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git
The "exploring git history" section of the git user manual has more
details:
http://git-htmldocs.googlecode.com/git/user-manual.html#exploring-git-history
Thanks,
Jonathan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists