aoe_wq = alloc_workqueue("aoe_wq", 0, 0); if (!aoe_wq) return -ENOMEM;
ret = aoedev_init(); if (ret) goto dev_fail;
ret = aoechr_init(); if (ret) goto chr_fail;
ret = aoeblk_init(); if (ret) goto blk_fail;
ret = aoenet_init(); if (ret) goto net_fail;
ret = aoecmd_init(); if (ret) goto cmd_fail;
ret = register_blkdev(AOE_MAJOR, DEVICE_NAME); if (ret < 0) {
printk(KERN_ERR "aoe: can't register major\n"); goto blkreg_fail;
}
printk(KERN_INFO "aoe: AoE v%s initialised.\n", VERSION);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.