Changeset d5a89a3 in mainline for uspace/srv


Ignore:
Timestamp:
2019-02-11T22:31:04Z (7 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
aaf9789c
Parents:
e3272101 (diff), 4805495 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merging with upstream/master

Location:
uspace/srv
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/main.c

    re3272101 rd5a89a3  
    136136
    137137        async_exch_t *exch = async_exchange_begin(driver->sess);
    138         async_forward_fast(icall, exch, INTERFACE_DDF_CLIENT, handle, 0, IPC_FF_NONE);
     138        async_forward_1(icall, exch, INTERFACE_DDF_CLIENT, handle, IPC_FF_NONE);
    139139        async_exchange_end(exch);
    140140
     
    215215
    216216        async_exch_t *exch = async_exchange_begin(driver->sess);
    217         async_forward_fast(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, 0, IPC_FF_NONE);
     217        async_forward_1(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, IPC_FF_NONE);
    218218        async_exchange_end(exch);
    219219
     
    250250
    251251        async_exch_t *exch = async_exchange_begin(driver->sess);
    252         async_forward_fast(icall, exch, iface, handle, 0, IPC_FF_NONE);
     252        async_forward_1(icall, exch, iface, handle, IPC_FF_NONE);
    253253        async_exchange_end(exch);
    254254
  • uspace/srv/fs/locfs/locfs_ops.c

    re3272101 rd5a89a3  
    583583
    584584                /* Forward the IPC_M_DATA_READ request to the driver */
    585                 async_forward_fast(&call, exch, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
     585                async_forward_0(&call, exch, 0, IPC_FF_ROUTE_FROM_ME);
    586586
    587587                async_exchange_end(exch);
     
    647647
    648648                /* Forward the IPC_M_DATA_WRITE request to the driver */
    649                 async_forward_fast(&call, exch, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
     649                async_forward_0(&call, exch, 0, IPC_FF_ROUTE_FROM_ME);
    650650
    651651                async_exchange_end(exch);
  • uspace/srv/fs/udf/udf_ops.c

    re3272101 rd5a89a3  
    6262#include "udf_osta.h"
    6363
    64 /** Mutex protecting the list of cached free nodes. */
    65 static FIBRIL_MUTEX_INITIALIZE(ffn_mutex);
    66 
    6764/** List of cached free nodes. */
    6865static LIST_INITIALIZE(ffn_list);
  • uspace/srv/hid/input/ctl/stty.c

    re3272101 rd5a89a3  
    228228        0,      KC_RIGHT,       0x1b, 0x5b, 0x43, GSP_END,
    229229
     230        KM_CTRL,        KC_Q,           0x11, GSP_END,
     231        KM_CTRL,        KC_W,           0x17, GSP_END,
     232        KM_CTRL,        KC_E,           0x05, GSP_END,
     233        KM_CTRL,        KC_R,           0x12, GSP_END,
     234        KM_CTRL,        KC_T,           0x14, GSP_END,
     235        KM_CTRL,        KC_Y,           0x19, GSP_END,
     236        KM_CTRL,        KC_U,           0x15, GSP_END,
     237        KM_CTRL,        KC_O,           0x0f, GSP_END,
     238        KM_CTRL,        KC_P,           0x10, GSP_END,
     239
     240        KM_CTRL,        KC_A,           0x01, GSP_END,
     241        KM_CTRL,        KC_S,           0x13, GSP_END,
     242        KM_CTRL,        KC_D,           0x04, GSP_END,
     243        KM_CTRL,        KC_F,           0x06, GSP_END,
     244        KM_CTRL,        KC_G,           0x07, GSP_END,
     245        KM_CTRL,        KC_K,           0x0b, GSP_END,
     246        KM_CTRL,        KC_L,           0x0c, GSP_END,
     247
     248        KM_CTRL,        KC_Z,           0x1a, GSP_END,
     249        KM_CTRL,        KC_X,           0x18, GSP_END,
     250        KM_CTRL,        KC_C,           0x03, GSP_END,
     251        KM_CTRL,        KC_V,           0x16, GSP_END,
     252        KM_CTRL,        KC_B,           0x02, GSP_END,
     253        KM_CTRL,        KC_N,           0x0e, GSP_END,
     254
    230255        /*
    231256         * Sequences specific to Gnome terminal
  • uspace/srv/hid/input/stroke.c

    re3272101 rd5a89a3  
    4848static unsigned int mods_keys[][2] = {
    4949        { KM_LSHIFT, KC_LSHIFT },
     50        { KM_LCTRL, KC_LCTRL },
    5051        { 0, 0 }
    5152};
  • uspace/srv/hid/isdv4_tablet/isdv4.c

    re3272101 rd5a89a3  
    2727 */
    2828
    29 #include <async.h>
    3029#include <errno.h>
     30#include <fibril.h>
    3131#include <io/chardev.h>
    3232#include <mem.h>
  • uspace/srv/locsrv/locsrv.c

    re3272101 rd5a89a3  
    726726
    727727        async_exch_t *exch = async_exchange_begin(svc->server->sess);
    728         async_forward_fast(call, exch, iface, svc->id, 0, IPC_FF_NONE);
     728        async_forward_1(call, exch, iface, svc->id, IPC_FF_NONE);
    729729        async_exchange_end(exch);
    730730
     
    14091409         */
    14101410        static_assert((INTERFACE_LOC_SUPPLIER & IFACE_EXCHANGE_MASK) ==
    1411             IFACE_EXCHANGE_SERIALIZE);
     1411            IFACE_EXCHANGE_SERIALIZE, "");
    14121412
    14131413        loc_server_t *server = loc_server_register();
  • uspace/srv/net/inetsrv/icmp.c

    re3272101 rd5a89a3  
    133133        sdu.dest = dgram->dest;
    134134        sdu.seq_no = uint16_t_be2host(reply->seq_no);
    135         sdu.data = reply + sizeof(icmp_echo_t);
     135        sdu.data = dgram->data + sizeof(icmp_echo_t);
    136136        sdu.size = dgram->size - sizeof(icmp_echo_t);
    137137
  • uspace/srv/net/inetsrv/icmpv6.c

    re3272101 rd5a89a3  
    124124
    125125        sdu.seq_no = uint16_t_be2host(reply->un.echo.seq_no);
    126         sdu.data = reply + sizeof(icmpv6_message_t);
     126        sdu.data = dgram->data + sizeof(icmpv6_message_t);
    127127        sdu.size = dgram->size - sizeof(icmpv6_message_t);
    128128
  • uspace/srv/net/inetsrv/pdu.c

    re3272101 rd5a89a3  
    224224                return EINVAL;
    225225
    226         static_assert(sizeof(ip6_header_t) % 8 == 0);
     226        static_assert(sizeof(ip6_header_t) % 8 == 0, "");
    227227        assert(hdr_size % 8 == 0);
    228228        assert(offs % FRAG_OFFS_UNIT == 0);
  • uspace/srv/ns/clonable.c

    re3272101 rd5a89a3  
    9494
    9595        async_exch_t *exch = async_exchange_begin(sess);
    96         async_forward_fast(&csr->call, exch, csr->iface,
    97             IPC_GET_ARG3(csr->call), 0, IPC_FF_NONE);
     96        async_forward_1(&csr->call, exch, csr->iface,
     97            IPC_GET_ARG3(csr->call), IPC_FF_NONE);
    9898        async_exchange_end(exch);
    9999
  • uspace/srv/ns/service.c

    re3272101 rd5a89a3  
    154154{
    155155        async_exch_t *exch = async_exchange_begin(sess);
    156         async_forward_fast(call, exch, iface, IPC_GET_ARG3(*call), 0,
    157             IPC_FF_NONE);
     156        async_forward_1(call, exch, iface, IPC_GET_ARG3(*call), IPC_FF_NONE);
    158157        async_exchange_end(exch);
    159158}
  • uspace/srv/vfs/vfs_ops.c

    re3272101 rd5a89a3  
    637637
    638638        async_exch_t *exch = vfs_exchange_grab(node->fs_handle);
    639         errno_t rc = async_data_read_forward_fast(exch, VFS_OUT_STAT,
    640             node->service_id, node->index, true, 0, NULL);
     639        errno_t rc = async_data_read_forward_3_0(exch, VFS_OUT_STAT,
     640            node->service_id, node->index, true);
    641641        vfs_exchange_release(exch);
    642642
     
    654654
    655655        async_exch_t *exch = vfs_exchange_grab(node->fs_handle);
    656         errno_t rc = async_data_read_forward_fast(exch, VFS_OUT_STATFS,
    657             node->service_id, node->index, false, 0, NULL);
     656        errno_t rc = async_data_read_forward_3_0(exch, VFS_OUT_STATFS,
     657            node->service_id, node->index, false);
    658658        vfs_exchange_release(exch);
    659659
Note: See TracChangeset for help on using the changeset viewer.