Changeset af92309 in mainline for uspace/srv/sysman/connection_ctl.c


Ignore:
Timestamp:
2019-08-07T09:33:04Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
9532981
Parents:
918ac9b
git-author:
Michal Koutný <xm.koutny+hos@…> (2015-11-02 22:12:18)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:33:04)
Message:

sysman: Rename configuration to repo(sitory)

It's better suited for dynamic nature of the storage.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/connection_ctl.c

    r918ac9b raf92309  
    3333#include <str.h>
    3434
    35 #include "configuration.h"
     35#include "repo.h"
    3636#include "connection_ctl.h"
    3737#include "job.h"
     
    7979
    8080        // TODO this is connection fibril, UNSYNCHRONIZED access to units!
    81         unit_t *unit = configuration_find_unit_by_name(unit_name);
     81        unit_t *unit = repo_find_unit_by_name(unit_name);
    8282        if (unit == NULL) {
    8383                sysman_log(LVL_NOTE, "Unit '%s' not found.", unit_name);
     
    180180       
    181181        // TODO UNSYNCHRONIZED access to units!
    182         unit_t *u = configuration_find_unit_by_handle(IPC_GET_ARG1(*icall));
     182        unit_t *u = repo_find_unit_by_handle(IPC_GET_ARG1(*icall));
    183183        if (u == NULL) {
    184184                async_answer_0(callid, ENOENT);
     
    196196{
    197197        // TODO UNSYNCHRONIZED access to units!
    198         unit_t *u = configuration_find_unit_by_handle(IPC_GET_ARG1(*icall));
     198        unit_t *u = repo_find_unit_by_handle(IPC_GET_ARG1(*icall));
    199199        if (u == NULL) {
    200200                async_answer_0(iid, ENOENT);
Note: See TracChangeset for help on using the changeset viewer.