The patch titled kernel/power/snapshot.c: cleanups has been added to the -mm tree. Its filename is kernel-power-snapshotc-cleanups.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Adrian Bunk <bunk@xxxxxxxxx> - make needlessly global functions static - make dummy functions static inline Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/power/snapshot.c | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff -puN kernel/power/snapshot.c~kernel-power-snapshotc-cleanups kernel/power/snapshot.c --- devel/kernel/power/snapshot.c~kernel-power-snapshotc-cleanups 2006-04-18 23:57:58.000000000 -0700 +++ devel-akpm/kernel/power/snapshot.c 2006-04-18 23:57:58.000000000 -0700 @@ -112,7 +112,7 @@ static int restore_arch_mem(void) } #ifdef CONFIG_HIGHMEM -unsigned int count_highmem_pages(void) +static unsigned int count_highmem_pages(void) { struct zone *zone; unsigned long zone_pfn; @@ -189,7 +189,7 @@ static int save_highmem_zone(struct zone return 0; } -int save_highmem(void) +static int save_highmem(void) { struct zone *zone; int res = 0; @@ -206,7 +206,7 @@ int save_highmem(void) return 0; } -int restore_highmem(void) +static int restore_highmem(void) { printk("swsusp: Restoring Highmem\n"); while (highmem_copy) { @@ -223,9 +223,9 @@ int restore_highmem(void) return 0; } #else -static unsigned int count_highmem_pages(void) {return 0;} -static int save_highmem(void) {return 0;} -static int restore_highmem(void) {return 0;} +static inline unsigned int count_highmem_pages(void) {return 0;} +static inline int save_highmem(void) {return 0;} +static inline int restore_highmem(void) {return 0;} #endif unsigned int count_special_pages(void) @@ -472,7 +472,8 @@ unsigned long get_safe_page(gfp_t gfp_ma * On each page we set up a list of struct_pbe elements. */ -struct pbe *alloc_pagedir(unsigned int nr_pages, gfp_t gfp_mask, int safe_needed) +static struct pbe *alloc_pagedir(unsigned int nr_pages, gfp_t gfp_mask, + int safe_needed) { unsigned int num; struct pbe *pblist, *pbe; _ Patches currently in -mm which might be from bunk@xxxxxxxxx are hugetlbfs-add-kconfig-help-text.patch remove-the-obsolete-idepci_flag_force_pdc.patch git-acpi.patch acpiphp-use-new-dock-driver-fix.patch git-dvb.patch drivers-media-video-bt866c-small-fixes-2.patch gregkh-i2c-w1-cleanups-fix.patch git-intelfb.patch nfs-make-2-functions-static.patch fix-nfs-proc_fs=n-compile-error.patch git-ocfs2.patch gregkh-pci-acpiphp-configure-_prt-v3-cleanup.patch drivers-scsi-aic7xxx-possible-cleanups.patch drivers-scsi-small-cleanups.patch drivers-scsi-megaraidc-add-a-dummy-mega_create_proc_entry-for-proc_fs=y.patch drivers-scsi-gdthc-make-__gdth_execute-static.patch drivers-scsi-qla2xxx-make-some-functions-static.patch drivers-scsi-aic7xxx-aic79xx_corec-make-ahd_done_with_status-static.patch scsi-megaraid-megaraid_mmc-fix-a-null-pointer-dereference.patch remove-drivers-scsi-constantscscsi_print_req_sense.patch drivers-scsi-aic7xxx-aic79xx_corec-make-ahd_match_scb-static.patch drivers-scsi-aic7xxx-possible-cleanups-2.patch ieee80211_wxc-remove-dead-code.patch bcm43xx_phyc-fix-a-memory-leak.patch memory_hotplugh-cleanup.patch acx1xx-wireless-driver.patch arch-i386-kernel-apicc-make-modern_apic-static.patch drivers-acpi-busc-make-struct-acpi_sci_dir-static.patch kernel-power-snapshotc-cleanups.patch remove-fs-jffs2-ioctlc.patch update-obsolete_oss_driver-schedule-and-dependencies.patch make-the-oss-sound_via82cxxx-option-available-again.patch fs-locksc-make-posix_locks_deadlock-static.patch remove-config_parport_arc-drivers-parport-parport_arcc.patch fs-fat-miscc-unexport-fat_sync_bhs.patch the-scheduled-unexport-of-insert_resource.patch time-i386-clocksource-drivers.patch dlm-recovery.patch dlm-build.patch dlm-cleanup-unused-functions.patch dlm-include-own-headers.patch reiser4.patch fs-reiser4-misc-cleanups.patch nmi-lockup-and-altsysrq-p-dumping-calltraces-on-_all_-cpus.patch slab-cache-shrinker-statistics.patch i386-enable-4k-stacks-by-default.patch mutex-subsystem-synchro-test-module.patch drivers-char-ipmi-ipmi_msghandlerc-make-proc_ipmi_root-static.patch drivers-message-i2o-iopc-unexport-i2o_msg_nop.patch x86_64-unexport-ia32_sys_call_table.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html