Changeset 4f87a85a in mainline for uspace/drv/block/ddisk/ddisk.c


Ignore:
Timestamp:
2018-12-10T14:29:35Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ca4c5596
Parents:
433d52f
git-author:
Jiri Svoboda <jiri@…> (2018-12-10 07:39:07)
git-committer:
Jiri Svoboda <jiri@…> (2018-12-10 14:29:35)
Message:

Check return code from ddf_add_fun_to_category

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/block/ddisk/ddisk.c

    r433d52f r4f87a85a  
    319319        errno_t rc;
    320320        ddf_fun_t *fun = NULL;
     321        bool bound = false;
    321322
    322323        fun = ddf_fun_create(ddisk->dev, fun_exposed, DDISK_FUN_NAME);
     
    337338        }
    338339
    339         ddf_fun_add_to_category(fun, "disk");
     340        bound = true;
     341
     342        rc = ddf_fun_add_to_category(fun, "disk");
     343        if (rc != EOK) {
     344                ddf_msg(LVL_ERROR, "Failed adding function %s to category "
     345                    "'disk': %s.\n", DDISK_FUN_NAME, str_error(rc));
     346                goto error;
     347        }
    340348        ddisk->fun = fun;
    341349
    342350        return EOK;
    343351error:
     352        if (bound)
     353                ddf_fun_unbind(fun);
    344354        if (fun != NULL)
    345355                ddf_fun_destroy(fun);
Note: See TracChangeset for help on using the changeset viewer.