aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/mm
ModeNameSize
-rw-r--r--Makefile443logstatsplainblame
-rw-r--r--cmm.c10857logstatsplainblame
-rw-r--r--dump_pagetables.c7418logstatsplainblame
-rw-r--r--extmem.c16109logstatsplainblame
-rw-r--r--fault.c21550logstatsplainblame
-rw-r--r--gmap.c77389logstatsplainblame
-rw-r--r--hugetlbpage.c7702logstatsplainblame
-rw-r--r--init.c6286logstatsplainblame
-rw-r--r--kasan_init.c11201logstatsplainblame
-rw-r--r--maccess.c5610logstatsplainblame
-rw-r--r--mmap.c5237logstatsplainblame
-rw-r--r--page-states.c6053logstatsplainblame
-rw-r--r--pageattr.c9182logstatsplainblame
-rw-r--r--pgalloc.c15514logstatsplainblame
-rw-r--r--pgtable.c29036logstatsplainblame
-rw-r--r--vmem.c10520logstatsplainblame
delin1-1/+5 Certain codepaths (notably "git log --pretty=format...") use prefixcmp() extensively, with very short prefixes. In those cases, calling strlen() is a wasteful operation, so avoid it. Initial patch by Marco Costalba. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com> 2008-01-02lock_any_ref_for_update(): reject wildcard return from check_ref_formatJunio C Hamano2-10/+22 Recent check_ref_format() returns -3 as well as -1 (general error) and -2 (less than two levels). The caller was explicitly checking for -1, to allow "HEAD" but still needed to disallow bogus refs. This introduces symbolic constants for the return values from check_ref_format() to make them read better and more meaningful. Normal ref creation codepath can still treat non-zero return values as errors. Signed-off-by: Junio C Hamano <gitster@pobox.com> 2008-01-02git-reset: refuse to do hard reset in a bare repositoryJeff King2-0/+31 It makes no sense since there is no working tree. A soft reset should be fine, though. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com> 2008-01-02config: handle lack of newline at end of file betterJeff King2-5/+46 The config parsing routines use the static global 'config_file' to store the FILE* pointing to the current config file being parsed. The function get_next_char() automatically converts an EOF on this file to a newline for the convenience of its callers, and it sets config_file to NULL to indicate that EOF was reached. This throws away useful information, though, since some routines want to call ftell on 'config_file' to find out exactly _where_ the routine ended. In the case of a key ending at EOF boundary, we ended up segfaulting in some cases (changing that key or adding another key in its section), or failing to provide the necessary newline (adding a new section). This patch adds a new flag to indicate EOF and uses that instead of setting config_file to NULL. It also makes sure to add newlines where necessary for truncated input. All three included tests fail without the patch. Signed-off-by: Junio C Hamano <gitster@pobox.com> 2007-12-31Documentation/user-manual.txt: fix typoGustaf Hendeby1-1/+1 Signed-off-by: Gustaf Hendeby <hendeby@isy.liu.se> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> 2007-12-31Documentation: fix remote.<name>.skipDefaultUpdate descriptionJ. Bruce Fields1-1/+1 Fix the subcommand name. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> 2007-12-30git-rebase -i: clean-up error check codepath.Junio C Hamano1-10/+19 After replaying a single change, the code performed a number of checks, but some of them were for sanity checking, failures from which should make the command abort, and others were checks to see if it should make a new commit object. Stringing them together with "&&" was wrong. Signed-off-by: Junio C Hamano <gitster@pobox.com> 2007-12-30git-rebase -i behaves better on commits with incomplete messagesJunio C Hamano1-2/+4 The commit message template when squashing multiple commits is prepared by concatenating the messages of existing commits together. If the messages from some of them end with incomplete lines, this would result in a suboptimal message template. Make sure that we add a terminating LF after each commit message. Signed-off-by: Junio C Hamano <gitster@pobox.com> 2007-12-30Fix double-free() in http-push.c:remote_exists()Grégoire Barbier1-2/+0 Signed-off-by: Junio C Hamano <gitster@pobox.com> 2007-12-29git-gui: Make commit log messages end with a newlinegitgui-0.9.1Bernt Hansen1-1/+1 Concatenating commit log messages from multiple commits works better when all of the commits end with a clean line break. Its good to be strict in what you create, and lenient in what you accept, and since we're creating here, we should always try to Do The Right Thing(tm). Signed-off-by: Bernt Hansen <bernt@alumni.uwaterloo.ca> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>