Comment 6 for bug 550274

Revision history for this message
shawnlandden (shawnlandden) wrote :

Handling for this error was added in commit be826706b5c0fcca3bdeff6934cd8d46d046ddfe

....
- BUG_ON(!chunk_root->node);
+ if (!chunk_root->node) {
+ printk("Couldn't read chunk root\n");
+ goto out_devices;
+ }
...