The patch titled revert gregkh-driver-fb-device has been removed from the -mm tree. Its filename is revert-gregkh-driver-fb-device.patch This patch was dropped because of ongoing build fiasco. So now my main test box won't boot. ------------------------------------------------------ Subject: revert gregkh-driver-fb-device From: Andrew Morton <akpm@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/fbmem.c | 16 +-- drivers/video/fbsysfs.c | 162 ++++++++++++++++---------------------- include/linux/fb.h | 8 - 3 files changed, 83 insertions(+), 103 deletions(-) diff -puN drivers/video/fbmem.c~revert-gregkh-driver-fb-device drivers/video/fbmem.c --- a/drivers/video/fbmem.c~revert-gregkh-driver-fb-device +++ a/drivers/video/fbmem.c @@ -1295,14 +1295,14 @@ register_framebuffer(struct fb_info *fb_ break; fb_info->node = i; - fb_info->dev = device_create(fb_class, fb_info->parent, - MKDEV(FB_MAJOR, i), "fb%d", i); - if (IS_ERR(fb_info->dev)) { + fb_info->class_device = class_device_create(fb_class, NULL, MKDEV(FB_MAJOR, i), + fb_info->device, "fb%d", i); + if (IS_ERR(fb_info->class_device)) { /* Not fatal */ - printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev)); - fb_info->dev = NULL; + printk(KERN_WARNING "Unable to create class_device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->class_device)); + fb_info->class_device = NULL; } else - fb_init_device(fb_info); + fb_init_class_device(fb_info); if (fb_info->pixmap.addr == NULL) { fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL); @@ -1355,8 +1355,8 @@ unregister_framebuffer(struct fb_info *f fb_destroy_modelist(&fb_info->modelist); registered_fb[i]=NULL; num_registered_fb--; - fb_cleanup_device(fb_info); - device_destroy(fb_class, MKDEV(FB_MAJOR, i)); + fb_cleanup_class_device(fb_info); + class_device_destroy(fb_class, MKDEV(FB_MAJOR, i)); event.info = fb_info; fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event); return 0; diff -puN drivers/video/fbsysfs.c~revert-gregkh-driver-fb-device drivers/video/fbsysfs.c --- a/drivers/video/fbsysfs.c~revert-gregkh-driver-fb-device +++ a/drivers/video/fbsysfs.c @@ -54,7 +54,7 @@ struct fb_info *framebuffer_alloc(size_t if (size) info->par = p + fb_info_size; - info->parent = dev; + info->device = dev; #ifdef CONFIG_FB_BACKLIGHT mutex_init(&info->bl_mutex); @@ -71,7 +71,7 @@ EXPORT_SYMBOL(framebuffer_alloc); * * @info: frame buffer info structure * - * Drop the reference count of the device embedded in the + * Drop the reference count of the class_device embedded in the * framebuffer info structure. * */ @@ -118,10 +118,10 @@ static int mode_string(char *buf, unsign m, mode->xres, mode->yres, v, mode->refresh); } -static ssize_t store_mode(struct device *device, struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_mode(struct class_device *class_device, const char * buf, + size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); char mstr[100]; struct fb_var_screeninfo var; struct fb_modelist *modelist; @@ -149,10 +149,9 @@ static ssize_t store_mode(struct device return -EINVAL; } -static ssize_t show_mode(struct device *device, struct device_attribute *attr, - char *buf) +static ssize_t show_mode(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); if (!fb_info->mode) return 0; @@ -160,11 +159,10 @@ static ssize_t show_mode(struct device * return mode_string(buf, 0, fb_info->mode); } -static ssize_t store_modes(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_modes(struct class_device *class_device, const char * buf, + size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); LIST_HEAD(old_list); int i = count / sizeof(struct fb_videomode); @@ -186,10 +184,9 @@ static ssize_t store_modes(struct device return 0; } -static ssize_t show_modes(struct device *device, struct device_attribute *attr, - char *buf) +static ssize_t show_modes(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); unsigned int i; struct list_head *pos; struct fb_modelist *modelist; @@ -204,10 +201,10 @@ static ssize_t show_modes(struct device return i; } -static ssize_t store_bpp(struct device *device, struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_bpp(struct class_device *class_device, const char * buf, + size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); struct fb_var_screeninfo var; char ** last = NULL; int err; @@ -219,18 +216,16 @@ static ssize_t store_bpp(struct device * return count; } -static ssize_t show_bpp(struct device *device, struct device_attribute *attr, - char *buf) +static ssize_t show_bpp(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->var.bits_per_pixel); } -static ssize_t store_rotate(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_rotate(struct class_device *class_device, const char *buf, + size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); struct fb_var_screeninfo var; char **last = NULL; int err; @@ -245,19 +240,17 @@ static ssize_t store_rotate(struct devic } -static ssize_t show_rotate(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_rotate(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->var.rotate); } -static ssize_t store_virtual(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_virtual(struct class_device *class_device, + const char * buf, size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); struct fb_var_screeninfo var; char *last = NULL; int err; @@ -274,26 +267,23 @@ static ssize_t store_virtual(struct devi return count; } -static ssize_t show_virtual(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_virtual(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xres_virtual, fb_info->var.yres_virtual); } -static ssize_t show_stride(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_stride(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->fix.line_length); } -static ssize_t store_blank(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_blank(struct class_device *class_device, const char * buf, + size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); char *last = NULL; int err; @@ -307,48 +297,42 @@ static ssize_t store_blank(struct device return count; } -static ssize_t show_blank(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_blank(struct class_device *class_device, char *buf) { -// struct fb_info *fb_info = dev_get_drvdata(device); +// struct fb_info *fb_info = class_get_devdata(class_device); return 0; } -static ssize_t store_console(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_console(struct class_device *class_device, + const char * buf, size_t count) { -// struct fb_info *fb_info = dev_get_drvdata(device); +// struct fb_info *fb_info = class_get_devdata(class_device); return 0; } -static ssize_t show_console(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_console(struct class_device *class_device, char *buf) { -// struct fb_info *fb_info = dev_get_drvdata(device); +// struct fb_info *fb_info = class_get_devdata(class_device); return 0; } -static ssize_t store_cursor(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_cursor(struct class_device *class_device, + const char * buf, size_t count) { -// struct fb_info *fb_info = dev_get_drvdata(device); +// struct fb_info *fb_info = class_get_devdata(class_device); return 0; } -static ssize_t show_cursor(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_cursor(struct class_device *class_device, char *buf) { -// struct fb_info *fb_info = dev_get_drvdata(device); +// struct fb_info *fb_info = class_get_devdata(class_device); return 0; } -static ssize_t store_pan(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_pan(struct class_device *class_device, const char * buf, + size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); struct fb_var_screeninfo var; char *last = NULL; int err; @@ -369,27 +353,24 @@ static ssize_t store_pan(struct device * return count; } -static ssize_t show_pan(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_pan(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xoffset, fb_info->var.xoffset); } -static ssize_t show_name(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_name(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); return snprintf(buf, PAGE_SIZE, "%s\n", fb_info->fix.id); } -static ssize_t store_fbstate(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_fbstate(struct class_device *class_device, + const char *buf, size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); u32 state; char *last = NULL; @@ -402,19 +383,17 @@ static ssize_t store_fbstate(struct devi return count; } -static ssize_t show_fbstate(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_fbstate(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->state); } #ifdef CONFIG_FB_BACKLIGHT -static ssize_t store_bl_curve(struct device *device, - struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t store_bl_curve(struct class_device *class_device, + const char *buf, size_t count) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); u8 tmp_curve[FB_BACKLIGHT_LEVELS]; unsigned int i; @@ -445,10 +424,9 @@ static ssize_t store_bl_curve(struct dev return count; } -static ssize_t show_bl_curve(struct device *device, - struct device_attribute *attr, char *buf) +static ssize_t show_bl_curve(struct class_device *class_device, char *buf) { - struct fb_info *fb_info = dev_get_drvdata(device); + struct fb_info *fb_info = class_get_devdata(class_device); ssize_t len = 0; unsigned int i; @@ -473,7 +451,7 @@ static ssize_t show_bl_curve(struct devi /* When cmap is added back in it should be a binary attribute * not a text one. Consideration should also be given to converting * fbdev to use configfs instead of sysfs */ -static struct device_attribute device_attrs[] = { +static struct class_device_attribute class_device_attrs[] = { __ATTR(bits_per_pixel, S_IRUGO|S_IWUSR, show_bpp, store_bpp), __ATTR(blank, S_IRUGO|S_IWUSR, show_blank, store_blank), __ATTR(console, S_IRUGO|S_IWUSR, show_console, store_console), @@ -491,22 +469,24 @@ static struct device_attribute device_at #endif }; -int fb_init_device(struct fb_info *fb_info) +int fb_init_class_device(struct fb_info *fb_info) { unsigned int i; - dev_set_drvdata(fb_info->dev, fb_info); + class_set_devdata(fb_info->class_device, fb_info); - for (i = 0; i < ARRAY_SIZE(device_attrs); i++) - device_create_file(fb_info->dev, &device_attrs[i]); + for (i = 0; i < ARRAY_SIZE(class_device_attrs); i++) + class_device_create_file(fb_info->class_device, + &class_device_attrs[i]); return 0; } -void fb_cleanup_device(struct fb_info *fb_info) +void fb_cleanup_class_device(struct fb_info *fb_info) { unsigned int i; - for (i = 0; i < ARRAY_SIZE(device_attrs); i++) - device_remove_file(fb_info->dev, &device_attrs[i]); + for (i = 0; i < ARRAY_SIZE(class_device_attrs); i++) + class_device_remove_file(fb_info->class_device, + &class_device_attrs[i]); } #ifdef CONFIG_FB_BACKLIGHT diff -puN include/linux/fb.h~revert-gregkh-driver-fb-device include/linux/fb.h --- a/include/linux/fb.h~revert-gregkh-driver-fb-device +++ a/include/linux/fb.h @@ -773,8 +773,8 @@ struct fb_info { #endif struct fb_ops *fbops; - struct device *parent; - struct device *dev; /* sysfs per device attrs */ + struct device *device; + struct class_device *class_device; /* sysfs per device attrs */ #ifdef CONFIG_FB_TILEBLITTING struct fb_tile_ops *tileops; /* Tile Blitting */ #endif @@ -908,8 +908,8 @@ static inline void __fb_pad_aligned_buff /* drivers/video/fbsysfs.c */ extern struct fb_info *framebuffer_alloc(size_t size, struct device *dev); extern void framebuffer_release(struct fb_info *info); -extern int fb_init_device(struct fb_info *fb_info); -extern void fb_cleanup_device(struct fb_info *head); +extern int fb_init_class_device(struct fb_info *fb_info); +extern void fb_cleanup_class_device(struct fb_info *head); extern void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max); /* drivers/video/fbmon.c */ _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch knfsd-have-ext2-reject-file-handles-with-bad-inode-numbers-early.patch knfsd-make-ext3-reject-filehandles-referring-to-invalid-inode-numbers.patch hvc_console-suspend-fix.patch git-acpi.patch acpi-asus-s3-resume-fix.patch sony_apci-resume.patch git-alsa.patch kauditd_thread-warning-fix.patch git-block.patch git-block-hack.patch revert-gregkh-driver-fb-device.patch drivers-base-check-errors.patch scsi-device_reprobe-can-fail.patch git-drm.patch git-dvb.patch git-dvb-fixup.patch git-gfs2.patch git-ia64.patch git-ieee1394-fixup.patch git-input.patch git-intelfb-fixup.patch git-kbuild.patch git-libata-all.patch 1-of-2-jmicron-driver-fix.patch via-pata-controller-xfer-fixes-fix.patch git-magic-fixup.patch git-netdev-all.patch drivers-net-ns83820c-add-paramter-to-disable-auto.patch git-net.patch git-net-fixup.patch git-nfs-fixup.patch revert-allow-file-systems-to-manually-d_move-inside-of-rename.patch git-ocfs2.patch git-pcmcia-fixup.patch git-powerpc.patch tickle-nmi-watchdog-on-serial-output-fix.patch serial-fix-uart_bug_txen-test.patch pcie-check-and-return-bus_register-errors-fix.patch git-scsi-misc.patch git-scsi-misc-fixup.patch revert-scsi-improve-inquiry-printing.patch git-scsi-misc-nlmsg_multicast-fix.patch git-block-vs-git-sas.patch git-scsi-target-fixup.patch git-scsi-target-vs-git-block.patch revert-gregkh-usb-usbcore-remove-usb_suspend_root_hub.patch gregkh-usb-usb-storage-add-rio-karma-eject-support-fix.patch fix-gregkh-usb-usbcore-add-autosuspend-autoresume-infrastructure.patch git-watchdog.patch revert-x86_64-mm-i386-remove-lock-section.patch revert-x86_64-mm-detect-cfi.patch fix-x86_64-mm-i386-backtrace-ebp-fallback.patch fix-x86_64-mm-i386-pda-smp-processorid.patch fix-x86_64-mm-spinlock-cleanup.patch xfs-rename-uio_read.patch adix-tree-rcu-lockless-readside-update-tidy.patch mm-tracking-shared-dirty-pages-checks.patch mm-tracking-shared-dirty-pages-wimp.patch convert-i386-numa-kva-space-to-bootmem-tidy.patch reduce-max_nr_zones-make-display-of-highmem-counters-conditional-on-config_highmem-tidy.patch reduce-max_nr_zones-use-enum-to-define-zones-reformat-and-comment-cleanup.patch reduce-max_nr_zones-use-enum-to-define-zones-reformat-and-comment-fix.patch reduce-max_nr_zones-remove-display-of-counters-for-unconfigured-zones-s390-fix.patch out-of-memory-notifier-tidy.patch mm-swap-write-failure-fixup-fix.patch slab-optimize-kmalloc_node-the-same-way-as-kmalloc-fix.patch slab-fix-lockdep-warnings-fix-2.patch have-x86-use-add_active_range-and-free_area_init_nodes-fix.patch zone_reclaim-dynamic-slab-reclaim-tidy.patch vm-add-per-zone-writeout-counter.patch convert-s390-page-handling-macros-to-functions-fix.patch slab-fix-kmalloc_node-applying-memory-policies-if-nodeid-==-numa_node_id-fix.patch gfp_thisnode-for-the-slab-allocator-v2-fix.patch get-rid-of-zone_table-fix.patch acx1xx-wireless-driver.patch tiacx-pci-build-fix.patch tiacx-ia64-fix.patch tiacx-build-fix.patch binfmt_elf-consistently-use-loff_t.patch nommu-set-bdi-capabilities-for-dev-mem-and-dev-kmem-tidy.patch nommu-move-the-fallback-arch_vma_name-to-a-sensible-place-fix.patch convert-i386-summit-subarch-to-use-srat-info-for-apicid_to_node-calls-tidy.patch i386-adds-smp_call_function_single-fix.patch swsusp-write-timer.patch swsusp-write-speedup.patch swsusp-read-timer.patch swsusp-read-speedup.patch swsusp-read-speedup-fix.patch swsusp-read-speedup-cleanup.patch swsusp-read-speedup-cleanup-2.patch swsusp-read-speedup-fix-fix-2.patch deprecate-smbfs-in-favour-of-cifs.patch edac-new-opteron-athlon64-memory-controller-driver-tidy.patch inode_diet-replace-inodeugeneric_ip-with-inodei_private-gfs-fix.patch x86-microcode-microcode-driver-cleanup-tidy.patch x86-microcode-add-sysfs-and-hotplug-support-fix.patch eisa-bus-modalias-attributes-support-1-fix-git-kbuild-fix.patch add-address_space_operationsbatch_write-fix.patch alloc_fdtable-cleanup.patch sysctl-allow-proc-sys-without-sys_sysctl-fix.patch add-probe_kernel_address.patch x86-use-probe_kernel_address-in-handle_bug.patch blockdevc-check-errors.patch let-warn_on-warn_on_once-return-the-condition-fix.patch let-warn_on-warn_on_once-return-the-condition-fix-2.patch omap-add-watchdog-driver-support-tweaks.patch move-valid_dma_direction-from-x86_64-to-generic-code-fix.patch single-bit-flip-detector-tidy.patch fix-unserialized-task-files-changing-fix.patch tty-make-termios_sem-a-mutex-fix.patch solaris-emulation-incorrect-tty-locking-fix.patch solaris-emulation-incorrect-tty-locking-fix-2.patch cpuset-top_cpuset-tracks-hotplug-changes-to-node_online_map-fix.patch remove-sound-oss-copying.patch maximum-latency-tracking-infrastructure-tidy.patch fs-nameic-replace-multiple-current-fs-by-shortcut-variable-tidy.patch call-mm-page-writebackcset_ratelimit-when-new-pages-tidy.patch sys-modules-patch-allow-full-length-section-names.patch expand_fdtable-remove-pointless-unlocklock.patch implement-a-general-integer-log2-facility-in-the-kernel-safety.patch alter-roundup_pow_of_two-so-that-it-can-make-use-of-ilog2-on-a-constant-fix.patch ntp-move-all-the-ntp-related-code-to-ntpc-fix.patch reiserfs-on-demand-bitmap-loading.patch streamline-generic_file_-interfaces-and-filemap-gfs-fix.patch add-vector-aio-support-fix.patch csa-basic-accounting-over-taskstats-fix.patch fs-cache-make-kafs-use-fs-cache-fix.patch fs-cache-make-kafs-use-fs-cache-vs-streamline-generic_file_-interfaces-and-filemap.patch nfs-use-local-caching-12-fix.patch stack-overflow-safe-kdump-crash_use_safe_smp_processor_id-fix.patch generic-ioremap_page_range-x86_64-conversion-fix.patch vfs-make-filldir_t-and-struct-kstat-deal-in-64-bit-inode-numbers-alpha-fix.patch some-cleanup-in-the-pipe-code-tidy.patch support-piping-into-commands-in-proc-sys-kernel-core_pattern-fix.patch move-pidmap-to-pspaceh-fix.patch kprobes-handle-symbol-resolution-when-modulesymbol-is-specified-tidy.patch isdn-work-around-excessive-udelay.patch knfsd-add-a-callback-for-when-last-rpc-thread-finishes-tidy.patch knfsd-add-a-callback-for-when-last-rpc-thread-finishes-fix.patch knfsd-separate-out-some-parts-of-nfsd_svc-which-start-nfs-servers-tweaks.patch knfsd-define-new-nfsdfs-file-portlist-contains-list-of-ports-tidy.patch knfsd-define-new-nfsdfs-file-portlist-contains-list-of-ports-fix.patch knfsd-drop-serv-option-to-svc_recv-and-svc_process-nfs-callback-fix-nfs-callback-fix.patch knfsd-move-tempsock-aging-to-a-timer-tidy.patch sched-remove-unnecessary-sched-group-allocations-fix.patch swap_prefetch-vs-zoned-counters.patch ecryptfs-mmap-operations.patch ecryptfs-alpha-build-fix.patch ecryptfs-more-elegant-aes-key-size-manipulation.patch ecryptfs-get_sb_dev-fix.patch make-kmem_cache_destroy-return-void-ecryptfs.patch ecryptfs-versioning-fixes-tidy.patch namespaces-add-nsproxy.patch namespaces-utsname-switch-to-using-uts-namespaces.patch namespaces-utsname-switch-to-using-uts-namespaces-klibc-bit-sparc.patch namespaces-utsname-use-init_utsname-when-appropriate.patch namespaces-utsname-implement-utsname-namespaces.patch namespaces-utsname-sysctl-hack.patch ipc-namespace-core.patch readahead-sysctl-parameters-fix.patch make-copy_from_user_inatomic-not-zero-the-tail-on-i386-vs-reiser4.patch make-kmem_cache_destroy-return-void-reiser4.patch reiser4-hardirq-include-fix.patch reiser4-run-truncate_inode_pages-in-reiser4_delete_inode.patch reiser4-get_sb_dev-fix.patch reiser4-vs-zoned-allocator.patch reiser4-rename-generic_sounding_globalspatch-fix.patch hpt3xx-rework-rate-filtering-tidy.patch genirq-convert-the-i386-architecture-to-irq-chips.patch genirq-x86_64-irq-reenable-migrating-irqs-to-other-cpus.patch genirq-msi-simplify-msi-enable-and-disable.patch genirq-ia64-irq-dynamic-irq-support.patch genirq-msi-only-build-msi-apicc-on-ia64-fix.patch genirq-i386-irq-remove-the-msi-assumption-that-irq-==-vector.patch genirq-x86_64-irq-make-vector_irq-per-cpu-fix.patch genirq-x86_64-irq-make-vector_irq-per-cpu-warning-fix.patch add-hypertransport-capability-defines-fix.patch initial-generic-hypertransport-interrupt-support-Kconfig-fix.patch srcu-report-out-of-memory-errors-fixlet.patch isdn-debug-build-fix.patch isdn-more-pr_debug-fixes.patch nr_blockdev_pages-in_interrupt-warning.patch device-suspend-debug.patch slab-leaks3-default-y.patch x86-kmap_atomic-debugging.patch restore-rogue-readahead-printk.patch input_register_device-debug.patch put_bh-debug.patch acpi_format_exception-debug.patch jmicron-warning-fix.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