Home
last modified time | relevance | path

Searched refs:req (Results 1 – 25 of 1575) sorted by relevance

12345678910>>...63

/freebsd-src/sys/geom/
H A Dgeom_ctl.c80 gctl_error(struct gctl_req *req, const char *fmt, ...) in gctl_error() argument
84 if (req == NULL) in gctl_error()
88 if (sbuf_done(req->serror)) { in gctl_error()
89 if (!req->nerror) in gctl_error()
90 req->nerror = EEXIST; in gctl_error()
94 return (req->nerror); in gctl_error()
96 if (!req->nerror) in gctl_error()
97 req->nerror = EINVAL; in gctl_error()
100 if (sbuf_len(req->serror) > 0) in gctl_error()
101 sbuf_cat(req->serror, "\n\t"); in gctl_error()
[all …]
/freebsd-src/sys/dev/netmap/
H A Dnetmap_legacy.c62 struct nmreq_register *req) in nmreq_register_from_legacy() argument
64 req->nr_offset = nmr->nr_offset; in nmreq_register_from_legacy()
65 req->nr_memsize = nmr->nr_memsize; in nmreq_register_from_legacy()
66 req->nr_tx_slots = nmr->nr_tx_slots; in nmreq_register_from_legacy()
67 req->nr_rx_slots = nmr->nr_rx_slots; in nmreq_register_from_legacy()
68 req->nr_tx_rings = nmr->nr_tx_rings; in nmreq_register_from_legacy()
69 req->nr_rx_rings = nmr->nr_rx_rings; in nmreq_register_from_legacy()
70 req->nr_host_tx_rings = 0; in nmreq_register_from_legacy()
71 req->nr_host_rx_rings = 0; in nmreq_register_from_legacy()
72 req->nr_mem_id = nmr->nr_arg2; in nmreq_register_from_legacy()
[all …]
/freebsd-src/contrib/lib9p/
H A Drequest.c51 static int l9p_dispatch_tversion(struct l9p_request *req);
52 static int l9p_dispatch_tattach(struct l9p_request *req);
53 static int l9p_dispatch_tclunk(struct l9p_request *req);
54 static int l9p_dispatch_tcreate(struct l9p_request *req);
55 static int l9p_dispatch_topen(struct l9p_request *req);
56 static int l9p_dispatch_tread(struct l9p_request *req);
57 static int l9p_dispatch_tremove(struct l9p_request *req);
58 static int l9p_dispatch_tstat(struct l9p_request *req);
59 static int l9p_dispatch_twalk(struct l9p_request *req);
60 static int l9p_dispatch_twrite(struct l9p_request *req);
[all …]
/freebsd-src/lib/libgeom/
H A Dgeom_ctl.c54 gctl_dump(struct gctl_req *req, FILE *f) in gctl_dump() argument
60 if (req == NULL) { in gctl_dump()
64 fprintf(f, "Dump of gctl request at %p:\n", req); in gctl_dump()
65 if (req->error != NULL) in gctl_dump()
66 fprintf(f, " error:\t\"%s\"\n", req->error); in gctl_dump()
69 for (i = 0; i < req->narg; i++) { in gctl_dump()
70 ap = &req->arg[i]; in gctl_dump()
95 gctl_set_error(struct gctl_req *req, const char *error, ...) in gctl_set_error() argument
99 if (req->error != NULL) in gctl_set_error()
102 vasprintf(&req->error, error, ap); in gctl_set_error()
[all …]
/freebsd-src/sys/dev/io/
H A Diodev.c50 static int iopio_read(struct iodev_pio_req *req);
51 static int iopio_write(struct iodev_pio_req *req);
121 iopio_read(struct iodev_pio_req *req) in iopio_read() argument
124 switch (req->width) { in iopio_read()
126 req->val = iodev_read_1(req->port); in iopio_read()
129 if (req->port & 1) { in iopio_read()
130 req->val = iodev_read_1(req->port); in iopio_read()
131 req->val |= iodev_read_1(req->port + 1) << 8; in iopio_read()
133 req->val = iodev_read_2(req->port); in iopio_read()
136 if (req->port & 1) { in iopio_read()
[all …]
/freebsd-src/usr.sbin/ctld/
H A Disns.c49 struct isns_req *req; in isns_req_alloc() local
51 req = calloc(1, sizeof(struct isns_req)); in isns_req_alloc()
52 if (req == NULL) { in isns_req_alloc()
56 req->ir_buflen = sizeof(struct isns_hdr); in isns_req_alloc()
57 req->ir_usedlen = 0; in isns_req_alloc()
58 req->ir_buf = calloc(1, req->ir_buflen); in isns_req_alloc()
59 if (req->ir_buf == NULL) { in isns_req_alloc()
60 free(req); in isns_req_alloc()
64 return (req); in isns_req_alloc()
70 struct isns_req *req; isns_req_create() local
83 isns_req_free(struct isns_req * req) isns_req_free() argument
91 isns_req_getspace(struct isns_req * req,uint32_t len) isns_req_getspace() argument
110 isns_req_add(struct isns_req * req,uint32_t tag,uint32_t len,const void * value) isns_req_add() argument
128 isns_req_add_delim(struct isns_req * req) isns_req_add_delim() argument
135 isns_req_add_str(struct isns_req * req,uint32_t tag,const char * value) isns_req_add_str() argument
142 isns_req_add_32(struct isns_req * req,uint32_t tag,uint32_t value) isns_req_add_32() argument
151 isns_req_add_addr(struct isns_req * req,uint32_t tag,struct addrinfo * ai) isns_req_add_addr() argument
177 isns_req_add_port(struct isns_req * req,uint32_t tag,struct addrinfo * ai) isns_req_add_port() argument
201 isns_req_send(int s,struct isns_req * req) isns_req_send() argument
218 isns_req_receive(int s,struct isns_req * req) isns_req_receive() argument
245 isns_req_get_status(struct isns_req * req) isns_req_get_status() argument
[all...]
H A Dkernel.c703 struct ctl_lun_req req; in kernel_lun_add() local
706 bzero(&req, sizeof(req)); in kernel_lun_add()
708 strlcpy(req.backend, lun->l_backend, sizeof(req.backend)); in kernel_lun_add()
709 req.reqtype = CTL_LUNREQ_CREATE; in kernel_lun_add()
711 req.reqdata.create.blocksize_bytes = lun->l_blocksize; in kernel_lun_add()
714 req.reqdata.create.lun_size_bytes = lun->l_size; in kernel_lun_add()
717 req.reqdata.create.req_lun_id = lun->l_ctl_lun; in kernel_lun_add()
718 req in kernel_lun_add()
810 struct ctl_lun_req req; kernel_lun_modify() local
893 struct ctl_lun_req req; kernel_lun_remove() local
927 struct ctl_iscsi req; kernel_handoff() local
989 struct ctl_iscsi req; kernel_limits() local
1044 struct ctl_req req; kernel_port_add() local
1203 struct ctl_req req; kernel_port_remove() local
1278 struct ctl_iscsi req; kernel_listen() local
1304 struct ctl_iscsi req; kernel_accept() local
1329 struct ctl_iscsi req; kernel_send() local
1354 struct ctl_iscsi req; kernel_receive() local
[all...]
/freebsd-src/lib/geom/eli/
H A Dgeom_eli.c70 static void eli_main(struct gctl_req *req, unsigned flags);
71 static void eli_init(struct gctl_req *req);
72 static void eli_attach(struct gctl_req *req);
73 static void eli_configure(struct gctl_req *req);
74 static void eli_setkey(struct gctl_req *req);
75 static void eli_delkey(struct gctl_req *req);
76 static void eli_resume(struct gctl_req *req);
77 static void eli_kill(struct gctl_req *req);
78 static void eli_backup(struct gctl_req *req);
79 static void eli_restore(struct gctl_req *req);
[all …]
/freebsd-src/usr.sbin/mpsutil/
H A Dmps_cmd.c284 MPI2_SEP_REQUEST req; in mps_set_slot_status() local
287 bzero(&req, sizeof(req)); in mps_set_slot_status()
288 req.Function = MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR; in mps_set_slot_status()
289 req.Action = MPI2_SEP_REQ_ACTION_WRITE_STATUS; in mps_set_slot_status()
290 req.Flags = MPI2_SEP_REQ_FLAGS_ENCLOSURE_SLOT_ADDRESS; in mps_set_slot_status()
291 req.EnclosureHandle = handle; in mps_set_slot_status()
292 req.Slot = slot; in mps_set_slot_status()
293 req.SlotStatus = status; in mps_set_slot_status()
295 if (mps_pass_command(fd, &req, sizeof(req), &reply, sizeof(reply), in mps_set_slot_status()
308 MPI2_CONFIG_REQUEST req; in mps_read_config_page_header() local
[all …]
/freebsd-src/contrib/mandoc/
H A Dcgi.c61 struct req {
77 static void parse_manpath_conf(struct req *);
78 static void parse_path_info(struct req *, const char *);
79 static void parse_query_string(struct req *, const char *);
82 static void pg_index(const struct req *);
83 static void pg_noresult(const struct req *, int, const char *,
85 static void pg_redirect(const struct req *, const char *);
86 static void pg_search(const struct req *);
87 static void pg_searchres(const struct req *,
89 static void pg_show(struct req *, cons
60 struct req { global() struct
76 isqueryreq global() argument
205 parse_query_string(struct req * req,const char * qs) parse_query_string() argument
430 resp_searchform(const struct req * req,enum focus focus) resp_searchform() argument
520 validate_manpath(const struct req * req,const char * manpath) validate_manpath() argument
555 pg_index(const struct req * req) pg_index() argument
573 pg_noresult(const struct req * req,int code,const char * http_msg,const char * user_msg) pg_noresult() argument
607 pg_redirect(const struct req * req,const char * name) pg_redirect() argument
626 pg_searchres(const struct req * req,struct manpage * r,size_t sz) pg_searchres() argument
736 resp_catman(const struct req * req,const char * file) resp_catman() argument
873 resp_format(const struct req * req,const char * file) resp_format() argument
916 resp_show(const struct req * req,const char * file) resp_show() argument
929 pg_show(struct req * req,const char * fullpath) pg_show() argument
976 pg_search(const struct req * req) pg_search() argument
1060 struct req req; main() local
1164 parse_path_info(struct req * req,const char * path) parse_path_info() argument
1235 parse_manpath_conf(struct req * req) parse_manpath_conf() argument
[all...]
/freebsd-src/crypto/openssl/crypto/x509/
H A Dx509_req.c63 EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) in X509_REQ_get_pubkey() argument
65 if (req == NULL) in X509_REQ_get_pubkey()
67 return X509_PUBKEY_get(req->req_info.pubkey); in X509_REQ_get_pubkey()
70 EVP_PKEY *X509_REQ_get0_pubkey(X509_REQ *req) in X509_REQ_get0_pubkey() argument
72 if (req == NULL) in X509_REQ_get0_pubkey()
74 return X509_PUBKEY_get0(req->req_info.pubkey); in X509_REQ_get0_pubkey()
77 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req) in X509_REQ_get_X509_PUBKEY() argument
79 return req->req_info.pubkey; in X509_REQ_get_X509_PUBKEY()
139 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req) in STACK_OF()
146 if (req == NULL || !ext_nids) in STACK_OF()
[all …]
/freebsd-src/usr.sbin/nvmfd/
H A Dctl.c48 struct ctl_req req; in init_ctl_port() local
62 memset(&req, 0, sizeof(req)); in init_ctl_port()
63 strlcpy(req.driver, "nvmf", sizeof(req.driver)); in init_ctl_port()
64 req.reqtype = CTL_REQ_CREATE; in init_ctl_port()
65 req.args = nvlist_pack(nvl, &req.args_len); in init_ctl_port()
66 if (req.args == NULL) in init_ctl_port()
68 req in init_ctl_port()
94 struct ctl_req req; shutdown_ctl_port() local
124 struct ctl_nvmf req; ctl_handoff_qpair() local
[all...]
/freebsd-src/sys/dev/bnxt/bnxt_re/
H A Dqplib_tlv.h73 static inline u8 __get_cmdq_base_opcode(struct cmdq_base *req, u32 size) in __get_cmdq_base_opcode() argument
75 if (HAS_TLV_HEADER(req) && size > TLV_BYTES) in __get_cmdq_base_opcode()
76 return ((struct cmdq_base *)GET_TLV_DATA(req))->opcode; in __get_cmdq_base_opcode()
78 return req->opcode; in __get_cmdq_base_opcode()
81 static inline void __set_cmdq_base_opcode(struct cmdq_base *req, in __set_cmdq_base_opcode() argument
84 if (HAS_TLV_HEADER(req) && size > TLV_BYTES) in __set_cmdq_base_opcode()
85 ((struct cmdq_base *)GET_TLV_DATA(req))->opcode = val; in __set_cmdq_base_opcode()
87 req->opcode = val; in __set_cmdq_base_opcode()
90 static inline __le16 __get_cmdq_base_cookie(struct cmdq_base *req, u32 size) in __get_cmdq_base_cookie() argument
92 if (HAS_TLV_HEADER(req) && size > TLV_BYTES) in __get_cmdq_base_cookie()
[all …]
/freebsd-src/sbin/gvinum/
H A Dgvinum.c
/freebsd-src/contrib/wpa/src/wps/
H A Dhttp_server.c30 void (*cb)(void *ctx, struct http_request *req);
44 struct http_request *req = cookie; in http_request_cb() local
45 struct http_server *srv = req->srv; in http_request_cb()
49 inet_ntoa(req->cli.sin_addr), in http_request_cb()
50 ntohs(req->cli.sin_port)); in http_request_cb()
51 srv->cb(srv->cb_ctx, req); in http_request_cb()
55 "completely", inet_ntoa(req->cli.sin_addr), in http_request_cb()
56 ntohs(req->cli.sin_port)); in http_request_cb()
57 http_request_deinit(req); in http_request_cb()
64 struct http_request *req; in http_request_init() local
[all …]
/freebsd-src/sys/dev/firmware/arm/
H A Dscmi.c269 struct scmi_req *req; in scmi_transport_init()
275 req = malloc(sizeof(*req) + max_payld_sz, in scmi_transport_init()
278 req->dev = dev; in scmi_transport_init()
279 req->tsk.ta_context = &req->tsk; in scmi_transport_init()
280 req->tsk.ta_func = scmi_req_async_waiter; in scmi_transport_init()
282 mtx_init(&req->mtx, "req", "SCMI", MTX_SPIN); in scmi_transport_init()
283 LIST_INSERT_HEAD(&rp->head, req, nex in scmi_transport_init()
218 struct scmi_req *req; scmi_reqs_pool_allocate() local
239 struct scmi_req *req; scmi_reqs_pool_free() local
306 struct scmi_req *req = NULL; scmi_req_alloc() local
324 scmi_req_free_unlocked(struct scmi_softc * sc,enum scmi_chan ch_idx,struct scmi_req * req) scmi_req_free_unlocked() argument
338 scmi_req_get(struct scmi_softc * sc,struct scmi_req * req) scmi_req_get() argument
353 scmi_req_put(struct scmi_softc * sc,struct scmi_req * req) scmi_req_put() argument
400 scmi_finalize_req(struct scmi_softc * sc,struct scmi_req * req) scmi_finalize_req() argument
420 scmi_req_track_inflight(struct scmi_softc * sc,struct scmi_req * req) scmi_req_track_inflight() argument
440 scmi_req_drop_inflight(struct scmi_softc * sc,struct scmi_req * req) scmi_req_drop_inflight() argument
457 struct scmi_req *req = NULL; scmi_req_lookup_inflight() local
475 struct scmi_req *req; scmi_process_response() local
531 scmi_wait_for_response(struct scmi_softc * sc,struct scmi_req * req,void ** out) scmi_wait_for_response() argument
589 struct scmi_req *req; scmi_buf_get() local
617 struct scmi_req *req; scmi_buf_put() local
629 struct scmi_req *req; scmi_request() local
[all...]
/freebsd-src/sys/dev/usb/
H A Dusb_request.c138 usbd_get_debug_bits(struct usb_device *udev, struct usb_device_request *req, in usbd_get_debug_bits() argument
175 if ((temp != req->bmRequestType) && (temp >= 0) && (temp <= 255)) in usbd_get_debug_bits()
180 if ((temp != req->bRequest) && (temp >= 0) && (temp <= 255)) in usbd_get_debug_bits()
227 struct usb_device_request req; in usb_do_clear_stall_callback() local
278 req.bmRequestType = UT_WRITE_ENDPOINT; in usb_do_clear_stall_callback()
279 req.bRequest = UR_CLEAR_FEATURE; in usb_do_clear_stall_callback()
280 USETW(req.wValue, UF_ENDPOINT_HALT); in usb_do_clear_stall_callback()
281 req.wIndex[0] = ep->edesc->bEndpointAddress; in usb_do_clear_stall_callback()
282 req.wIndex[1] = 0; in usb_do_clear_stall_callback()
283 USETW(req.wLength, 0); in usb_do_clear_stall_callback()
[all …]
/freebsd-src/sys/geom/raid3/
H A Dg_raid3_ctl.c94 g_raid3_ctl_configure(struct gctl_req *req, struct g_class *mp) in g_raid3_ctl_configure() argument
106 nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs)); in g_raid3_ctl_configure()
108 gctl_error(req, "No '%s' argument.", "nargs"); in g_raid3_ctl_configure()
112 gctl_error(req, "Invalid number of arguments."); in g_raid3_ctl_configure()
115 autosync = gctl_get_paraml(req, "autosync", sizeof(*autosync)); in g_raid3_ctl_configure()
117 gctl_error(req, "No '%s' argument.", "autosync"); in g_raid3_ctl_configure()
120 noautosync = gctl_get_paraml(req, "noautosync", sizeof(*noautosync)); in g_raid3_ctl_configure()
122 gctl_error(req, "No '%s' argument.", "noautosync"); in g_raid3_ctl_configure()
126 gctl_error(req, "'%s' and '%s' specified.", "autosync", in g_raid3_ctl_configure()
130 failsync = gctl_get_paraml(req, "failsync", sizeof(*failsync)); in g_raid3_ctl_configure()
[all …]
/freebsd-src/sys/dev/bnxt/bnxt_en/
H A Dbnxt_hwrm.c41 struct hwrm_port_phy_cfg_input *req);
43 struct hwrm_port_phy_cfg_input *req);
45 struct hwrm_port_phy_cfg_input *req);
134 struct input *req = request; in bnxt_hwrm_cmd_hdr_init() local
136 req->req_type = htole16(req_type); in bnxt_hwrm_cmd_hdr_init()
137 req->cmpl_ring = 0xffff; in bnxt_hwrm_cmd_hdr_init()
138 req->target_id = 0xffff; in bnxt_hwrm_cmd_hdr_init()
139 req->resp_addr = htole64(softc->hwrm_cmd_resp.idi_paddr); in bnxt_hwrm_cmd_hdr_init()
145 struct input *req = msg; in _hwrm_send_message() local
155 req->seq_id = htole16(softc->hwrm_cmd_seq++); in _hwrm_send_message()
[all …]
/freebsd-src/lib/libdevctl/
H A Ddevctl.c35 devctl_request(u_long cmd, struct devreq *req) in devctl_request() argument
44 return (ioctl(devctl2_fd, cmd, req)); in devctl_request()
50 struct devreq req; in devctl_simple_request() local
52 memset(&req, 0, sizeof(req)); in devctl_simple_request()
53 if (strlcpy(req.dr_name, name, sizeof(req.dr_name)) >= in devctl_simple_request()
54 sizeof(req.dr_name)) { in devctl_simple_request()
58 req.dr_flags = flags; in devctl_simple_request()
59 return (devctl_request(cmd, &req)); in devctl_simple_request()
109 struct devreq req; in devctl_set_driver() local
111 memset(&req, 0, sizeof(req)); in devctl_set_driver()
[all …]
/freebsd-src/sys/geom/eli/
H A Dg_eli_ctl.c52 g_eli_ctl_attach(struct gctl_req *req, struct g_class *mp) in g_eli_ctl_attach() argument
63 nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs)); in g_eli_ctl_attach()
65 gctl_error(req, "No '%s' argument.", "nargs"); in g_eli_ctl_attach()
69 gctl_error(req, "Invalid number of arguments."); in g_eli_ctl_attach()
73 detach = gctl_get_paraml(req, "detach", sizeof(*detach)); in g_eli_ctl_attach()
75 gctl_error(req, "No '%s' argument.", "detach"); in g_eli_ctl_attach()
81 valp = gctl_get_param(req, "keyno", &dummy); in g_eli_ctl_attach()
83 valp = gctl_get_paraml(req, "keyno", sizeof(*valp)); in g_eli_ctl_attach()
88 gctl_error(req, "Invalid '%s' argument.", "keyno"); in g_eli_ctl_attach()
92 readonly = gctl_get_paraml(req, "readonly", sizeof(*readonly)); in g_eli_ctl_attach()
[all …]
/freebsd-src/contrib/libevent/
H A Dhttp.c166 #define REQ_VERSION_BEFORE(req, major_v, minor_v) \ argument
167 ((req)->major < (major_v) || \
168 ((req)->major == (major_v) && (req)->minor < (minor_v)))
170 #define REQ_VERSION_ATLEAST(req, major_v, minor_v) \ argument
171 ((req)->major > (major_v) || \
172 ((req)->major == (major_v) && (req)->minor >= (minor_v)))
192 struct evhttp_request *req);
194 struct evhttp_request *req);
356 evhttp_response_needs_body(struct evhttp_request *req) in evhttp_response_needs_body() argument
358 return (req->response_code != HTTP_NOCONTENT && in evhttp_response_needs_body()
[all …]
/freebsd-src/contrib/ntp/sntp/libevent/
H A Dhttp.c166 #define REQ_VERSION_BEFORE(req, major_v, minor_v) \ argument
167 ((req)->major < (major_v) || \
168 ((req)->major == (major_v) && (req)->minor < (minor_v)))
170 #define REQ_VERSION_ATLEAST(req, major_v, minor_v) \ argument
171 ((req)->major > (major_v) || \
172 ((req)->major == (major_v) && (req)->minor >= (minor_v)))
192 struct evhttp_request *req);
194 struct evhttp_request *req);
356 evhttp_response_needs_body(struct evhttp_request *req) in evhttp_response_needs_body() argument
358 return (req->response_code != HTTP_NOCONTENT && in evhttp_response_needs_body()
[all …]
/freebsd-src/sys/dev/sfxge/common/
H A Def10_nic.c47 efx_mcdi_req_t req; in efx_mcdi_get_port_assignment() local
56 req.emr_cmd = MC_CMD_GET_PORT_ASSIGNMENT; in efx_mcdi_get_port_assignment()
57 req.emr_in_buf = payload; in efx_mcdi_get_port_assignment()
58 req.emr_in_length = MC_CMD_GET_PORT_ASSIGNMENT_IN_LEN; in efx_mcdi_get_port_assignment()
59 req.emr_out_buf = payload; in efx_mcdi_get_port_assignment()
60 req.emr_out_length = MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN; in efx_mcdi_get_port_assignment()
62 efx_mcdi_execute(enp, &req); in efx_mcdi_get_port_assignment()
64 if (req.emr_rc != 0) { in efx_mcdi_get_port_assignment()
65 rc = req.emr_rc; in efx_mcdi_get_port_assignment()
69 if (req.emr_out_length_used < MC_CMD_GET_PORT_ASSIGNMENT_OUT_LEN) { in efx_mcdi_get_port_assignment()
[all …]
/freebsd-src/sys/geom/mirror/
H A Dg_mirror_ctl.c145 g_mirror_ctl_configure(struct gctl_req *req, struct g_class *mp) in g_mirror_ctl_configure() argument
156 nargs = gctl_get_paraml(req, "nargs", sizeof(*nargs)); in g_mirror_ctl_configure()
158 gctl_error(req, "No '%s' argument.", "nargs"); in g_mirror_ctl_configure()
162 gctl_error(req, "Invalid number of arguments."); in g_mirror_ctl_configure()
165 name = gctl_get_asciiparam(req, "arg0"); in g_mirror_ctl_configure()
167 gctl_error(req, "No 'arg%u' argument.", 0); in g_mirror_ctl_configure()
170 balancep = gctl_get_asciiparam(req, "balance"); in g_mirror_ctl_configure()
172 gctl_error(req, "No '%s' argument.", "balance"); in g_mirror_ctl_configure()
175 autosync = gctl_get_paraml(req, "autosync", sizeof(*autosync)); in g_mirror_ctl_configure()
177 gctl_error(req, "No '%s' argument.", "autosync"); in g_mirror_ctl_configure()
[all …]

12345678910>>...63