summaryrefslogtreecommitdiff
path: root/debian/cscope.emacsen-remove
blob: 859d389c742ba1c8388fedebc788b826d5b2385a (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

FLAVOUR=$1
PACKAGE=cscope
ELCFILE=xcscope.elc

if [ $FLAVOUR != emacs ]; then
	echo "remove/$PACKAGE: Purging byte-compiled files for $FLAVOUR"
	rm -f /usr/share/$FLAVOUR/site-lisp/$ELCFILE
fi
td/>
authorKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>2011-05-24 17:11:31 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2011-05-25 08:39:08 -0700
commit839a4fcc8af7412be2efd11f0bd0504757f79f08 (patch)
tree8387ca9f25f2896dda53c222cd6c7a7cc41b9d74 /mm/memory_hotplug.c
parent37b23e0525d393d48a7d59f870b3bc061a30ccdb (diff)
mm, mem-hotplug: fix section mismatch. setup_per_zone_inactive_ratio() should be __meminit.
Commit bce7394a3e ("page-allocator: reset wmark_min and inactive ratio of zone when hotplug happens") introduced invalid section references. Now, setup_per_zone_inactive_ratio() is marked __init and then it can't be referenced from memory hotplug code. This patch marks it as __meminit and also marks caller as __ref. Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Reviewed-by: Minchan Kim <minchan.kim@gmail.com> Cc: Yasunori Goto <y-goto@jp.fujitsu.com> Cc: Rik van Riel <riel@redhat.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Reviewed-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory_hotplug.c')