> @@ -390,6 +296,13 @@ static int acpi_memory_device_add(struct > if (!device) > return -EINVAL; > > + /* Check for _STA and EJ0 func */ > + if (!device->flags.dynamic_status || !device->flags.ejectable){ > + printk(KERN_INFO PREFIX "Memory device %s has no _STA or" > + "EJ0/EJD function", acpi_device_bid(device)); > + return -ENODEV; > + } > + > mem_device = kmalloc(sizeof(struct acpi_memory_device), GFP_KERNEL); > if (!mem_device) > return -ENOMEM; One comment. Memory device might not have _EJ0/_EJD, but parent device (like one NUMA node) might be able to be ejectable. In this case, only the parent device has _EJ0/_EJD. So, one more check is necessary. (If a node is hot-added, container driver of acpi calls acpi_memhotplug driver.) Thanks. -- Yasunori Goto - To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html