Home
last modified time | relevance | path

Searched refs:call (Results 1 – 200 of 1006) sorted by relevance

123456

/linux-4.4.14/net/rxrpc/
Dar-call.c105 static void rxrpc_call_hash_add(struct rxrpc_call *call) in rxrpc_call_hash_add() argument
111 switch (call->proto) { in rxrpc_call_hash_add()
113 addr_size = sizeof(call->peer_ip.ipv4_addr); in rxrpc_call_hash_add()
116 addr_size = sizeof(call->peer_ip.ipv6_addr); in rxrpc_call_hash_add()
121 key = rxrpc_call_hashfunc(call->in_clientflag, call->cid, in rxrpc_call_hash_add()
122 call->call_id, call->epoch, in rxrpc_call_hash_add()
123 call->service_id, call->proto, in rxrpc_call_hash_add()
124 call->conn->trans->local, addr_size, in rxrpc_call_hash_add()
125 call->peer_ip.ipv6_addr); in rxrpc_call_hash_add()
127 call->hash_key = key; in rxrpc_call_hash_add()
[all …]
Dar-ack.c93 void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason, in __rxrpc_propose_ACK() argument
102 call->debug_id, rxrpc_acks(ack_reason), ntohl(serial), in __rxrpc_propose_ACK()
105 if (prior < rxrpc_ack_priority[call->ackr_reason]) { in __rxrpc_propose_ACK()
113 if (prior == rxrpc_ack_priority[call->ackr_reason]) { in __rxrpc_propose_ACK()
115 call->ackr_serial = serial; in __rxrpc_propose_ACK()
121 call->ackr_reason = ack_reason; in __rxrpc_propose_ACK()
122 call->ackr_serial = serial; in __rxrpc_propose_ACK()
154 if (!timer_pending(&call->ack_timer) || in __rxrpc_propose_ACK()
155 time_after(call->ack_timer.expires, expiry)) in __rxrpc_propose_ACK()
156 mod_timer(&call->ack_timer, expiry); in __rxrpc_propose_ACK()
[all …]
Dar-input.c42 int rxrpc_queue_rcv_skb(struct rxrpc_call *call, struct sk_buff *skb, in rxrpc_queue_rcv_skb() argument
46 struct rxrpc_sock *rx = call->socket; in rxrpc_queue_rcv_skb()
55 ASSERTCMP(sp->call, ==, call); in rxrpc_queue_rcv_skb()
59 if (test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags)) { in rxrpc_queue_rcv_skb()
61 ASSERTCMP(call->state, >=, RXRPC_CALL_COMPLETE); in rxrpc_queue_rcv_skb()
63 sp->call = NULL; in rxrpc_queue_rcv_skb()
64 rxrpc_put_call(call); in rxrpc_queue_rcv_skb()
86 if (!test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags) && in rxrpc_queue_rcv_skb()
87 !test_bit(RXRPC_CALL_RELEASED, &call->flags) && in rxrpc_queue_rcv_skb()
88 call->socket->sk.sk_state != RXRPC_CLOSE) { in rxrpc_queue_rcv_skb()
[all …]
Dar-output.c27 struct rxrpc_call *call,
107 static void rxrpc_send_abort(struct rxrpc_call *call, u32 abort_code) in rxrpc_send_abort() argument
109 write_lock_bh(&call->state_lock); in rxrpc_send_abort()
111 if (call->state <= RXRPC_CALL_COMPLETE) { in rxrpc_send_abort()
112 call->state = RXRPC_CALL_LOCALLY_ABORTED; in rxrpc_send_abort()
113 call->abort_code = abort_code; in rxrpc_send_abort()
114 set_bit(RXRPC_CALL_ABORT, &call->events); in rxrpc_send_abort()
115 del_timer_sync(&call->resend_timer); in rxrpc_send_abort()
116 del_timer_sync(&call->ack_timer); in rxrpc_send_abort()
117 clear_bit(RXRPC_CALL_RESEND_TIMER, &call->events); in rxrpc_send_abort()
[all …]
Dar-skbuff.c24 static void rxrpc_request_final_ACK(struct rxrpc_call *call) in rxrpc_request_final_ACK() argument
27 write_lock(&call->state_lock); in rxrpc_request_final_ACK()
29 switch (call->state) { in rxrpc_request_final_ACK()
31 call->state = RXRPC_CALL_CLIENT_FINAL_ACK; in rxrpc_request_final_ACK()
36 rxrpc_get_call(call); in rxrpc_request_final_ACK()
37 set_bit(RXRPC_CALL_ACK_FINAL, &call->events); in rxrpc_request_final_ACK()
38 if (try_to_del_timer_sync(&call->ack_timer) >= 0) in rxrpc_request_final_ACK()
39 rxrpc_queue_call(call); in rxrpc_request_final_ACK()
43 call->state = RXRPC_CALL_SERVER_ACK_REQUEST; in rxrpc_request_final_ACK()
48 write_unlock(&call->state_lock); in rxrpc_request_final_ACK()
[all …]
Dar-accept.c82 struct rxrpc_call *call; in rxrpc_accept_incoming_call() local
123 call = rxrpc_incoming_call(rx, conn, &sp->hdr, GFP_NOIO); in rxrpc_accept_incoming_call()
125 if (IS_ERR(call)) { in rxrpc_accept_incoming_call()
127 ret = PTR_ERR(call); in rxrpc_accept_incoming_call()
137 if (!test_and_set_bit(RXRPC_CALL_INIT_ACCEPT, &call->flags)) { in rxrpc_accept_incoming_call()
138 rxrpc_get_call(call); in rxrpc_accept_incoming_call()
140 spin_lock(&call->conn->state_lock); in rxrpc_accept_incoming_call()
142 call->conn->state == RXRPC_CONN_SERVER_UNSECURED) { in rxrpc_accept_incoming_call()
144 list_add_tail(&call->accept_link, &rx->secureq); in rxrpc_accept_incoming_call()
145 call->conn->state = RXRPC_CONN_SERVER_CHALLENGING; in rxrpc_accept_incoming_call()
[all …]
Dar-recvmsg.c23 void rxrpc_remove_user_ID(struct rxrpc_sock *rx, struct rxrpc_call *call) in rxrpc_remove_user_ID() argument
25 _debug("RELEASE CALL %d", call->debug_id); in rxrpc_remove_user_ID()
27 if (test_bit(RXRPC_CALL_HAS_USERID, &call->flags)) { in rxrpc_remove_user_ID()
29 rb_erase(&call->sock_node, &call->socket->calls); in rxrpc_remove_user_ID()
30 clear_bit(RXRPC_CALL_HAS_USERID, &call->flags); in rxrpc_remove_user_ID()
34 read_lock_bh(&call->state_lock); in rxrpc_remove_user_ID()
35 if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) && in rxrpc_remove_user_ID()
36 !test_and_set_bit(RXRPC_CALL_RELEASE, &call->events)) in rxrpc_remove_user_ID()
37 rxrpc_queue_call(call); in rxrpc_remove_user_ID()
38 read_unlock_bh(&call->state_lock); in rxrpc_remove_user_ID()
[all …]
Dar-proc.c50 struct rxrpc_call *call; in rxrpc_call_seq_show() local
61 call = list_entry(v, struct rxrpc_call, link); in rxrpc_call_seq_show()
62 trans = call->conn->trans; in rxrpc_call_seq_show()
77 ntohs(call->conn->service_id), in rxrpc_call_seq_show()
78 ntohl(call->conn->cid), in rxrpc_call_seq_show()
79 ntohl(call->call_id), in rxrpc_call_seq_show()
80 call->conn->in_clientflag ? "Svc" : "Clt", in rxrpc_call_seq_show()
81 atomic_read(&call->usage), in rxrpc_call_seq_show()
82 rxrpc_call_states[call->state], in rxrpc_call_seq_show()
83 call->abort_code, in rxrpc_call_seq_show()
[all …]
Dar-connevent.c31 struct rxrpc_call *call; in rxrpc_abort_calls() local
39 call = rb_entry(p, struct rxrpc_call, conn_node); in rxrpc_abort_calls()
40 write_lock(&call->state_lock); in rxrpc_abort_calls()
41 if (call->state <= RXRPC_CALL_COMPLETE) { in rxrpc_abort_calls()
42 call->state = state; in rxrpc_abort_calls()
43 call->abort_code = abort_code; in rxrpc_abort_calls()
45 set_bit(RXRPC_CALL_CONN_ABORT, &call->events); in rxrpc_abort_calls()
47 set_bit(RXRPC_CALL_RCVD_ABORT, &call->events); in rxrpc_abort_calls()
48 rxrpc_queue_call(call); in rxrpc_abort_calls()
50 write_unlock(&call->state_lock); in rxrpc_abort_calls()
[all …]
Dar-error.c212 struct rxrpc_call *call, *_n; in rxrpc_UDP_error_handler() local
219 list_for_each_entry_safe(call, _n, &trans->peer->error_targets, in rxrpc_UDP_error_handler()
221 write_lock(&call->state_lock); in rxrpc_UDP_error_handler()
222 if (call->state != RXRPC_CALL_COMPLETE && in rxrpc_UDP_error_handler()
223 call->state < RXRPC_CALL_NETWORK_ERROR) { in rxrpc_UDP_error_handler()
224 call->state = RXRPC_CALL_NETWORK_ERROR; in rxrpc_UDP_error_handler()
225 set_bit(RXRPC_CALL_RCVD_ERROR, &call->events); in rxrpc_UDP_error_handler()
226 rxrpc_queue_call(call); in rxrpc_UDP_error_handler()
228 write_unlock(&call->state_lock); in rxrpc_UDP_error_handler()
229 list_del_init(&call->error_link); in rxrpc_UDP_error_handler()
Drxkad.c153 static int rxkad_secure_packet_auth(const struct rxrpc_call *call, in rxkad_secure_packet_auth() argument
180 desc.tfm = call->conn->cipher; in rxkad_secure_packet_auth()
197 static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call, in rxkad_secure_packet_encrypt() argument
224 token = call->conn->key->payload.data[0]; in rxkad_secure_packet_encrypt()
226 desc.tfm = call->conn->cipher; in rxkad_secure_packet_encrypt()
239 len = data_size + call->conn->size_align - 1; in rxkad_secure_packet_encrypt()
240 len &= ~(call->conn->size_align - 1); in rxkad_secure_packet_encrypt()
253 static int rxkad_secure_packet(const struct rxrpc_call *call, in rxkad_secure_packet() argument
272 call->debug_id, key_serial(call->conn->key), ntohl(sp->hdr.seq), in rxkad_secure_packet()
275 if (!call->conn->cipher) in rxkad_secure_packet()
[all …]
Dar-security.c226 int rxrpc_secure_packet(const struct rxrpc_call *call, in rxrpc_secure_packet() argument
231 if (call->conn->security) in rxrpc_secure_packet()
232 return call->conn->security->secure_packet( in rxrpc_secure_packet()
233 call, skb, data_size, sechdr); in rxrpc_secure_packet()
240 int rxrpc_verify_packet(const struct rxrpc_call *call, struct sk_buff *skb, in rxrpc_verify_packet() argument
243 if (call->conn->security) in rxrpc_verify_packet()
244 return call->conn->security->verify_packet( in rxrpc_verify_packet()
245 call, skb, _abort_code); in rxrpc_verify_packet()
Dar-connection.c303 struct rxrpc_call *call) in rxrpc_add_call_ID_to_conn() argument
311 call_id = call->call_id; in rxrpc_add_call_ID_to_conn()
326 rb_link_node(&call->conn_node, parent, p); in rxrpc_add_call_ID_to_conn()
327 rb_insert_color(&call->conn_node, &conn->calls); in rxrpc_add_call_ID_to_conn()
338 struct rxrpc_call *call, in rxrpc_connect_exclusive() argument
404 conn->channels[chan] = call; in rxrpc_connect_exclusive()
405 call->conn = conn; in rxrpc_connect_exclusive()
406 call->channel = chan; in rxrpc_connect_exclusive()
407 call->cid = conn->cid | htonl(chan); in rxrpc_connect_exclusive()
408 call->call_id = htonl(++conn->call_counter); in rxrpc_connect_exclusive()
[all …]
Daf_rxrpc.c277 struct rxrpc_call *call; in rxrpc_kernel_begin_call() local
289 call = ERR_CAST(trans); in rxrpc_kernel_begin_call()
296 call = ERR_PTR(-ENOTCONN); in rxrpc_kernel_begin_call()
313 call = ERR_CAST(bundle); in rxrpc_kernel_begin_call()
317 call = rxrpc_get_client_call(rx, trans, bundle, user_call_ID, true, in rxrpc_kernel_begin_call()
324 _leave(" = %p", call); in rxrpc_kernel_begin_call()
325 return call; in rxrpc_kernel_begin_call()
337 void rxrpc_kernel_end_call(struct rxrpc_call *call) in rxrpc_kernel_end_call() argument
339 _enter("%d{%d}", call->debug_id, atomic_read(&call->usage)); in rxrpc_kernel_end_call()
340 rxrpc_remove_user_ID(call->socket, call); in rxrpc_kernel_end_call()
[all …]
/linux-4.4.14/fs/afs/
Drxrpc.c63 struct afs_call *call = container_of(work, struct afs_call, async_work); in afs_async_workfn() local
65 call->async_workfn(call); in afs_async_workfn()
177 static void afs_free_call(struct afs_call *call) in afs_free_call() argument
180 call, call->type->name, atomic_read(&afs_outstanding_calls)); in afs_free_call()
184 ASSERTCMP(call->rxcall, ==, NULL); in afs_free_call()
185 ASSERT(!work_pending(&call->async_work)); in afs_free_call()
186 ASSERT(skb_queue_empty(&call->rx_queue)); in afs_free_call()
187 ASSERT(call->type->name != NULL); in afs_free_call()
189 kfree(call->request); in afs_free_call()
190 kfree(call); in afs_free_call()
[all …]
Dfsclient.c238 static int afs_deliver_fs_fetch_status(struct afs_call *call, in afs_deliver_fs_fetch_status() argument
241 struct afs_vnode *vnode = call->reply; in afs_deliver_fs_fetch_status()
246 afs_transfer_reply(call, skb); in afs_deliver_fs_fetch_status()
250 if (call->reply_size != call->reply_max) in afs_deliver_fs_fetch_status()
254 bp = call->buffer; in afs_deliver_fs_fetch_status()
257 if (call->reply2) in afs_deliver_fs_fetch_status()
258 xdr_decode_AFSVolSync(&bp, call->reply2); in afs_deliver_fs_fetch_status()
283 struct afs_call *call; in afs_fs_fetch_file_status() local
289 call = afs_alloc_flat_call(&afs_RXFSFetchStatus, 16, (21 + 3 + 6) * 4); in afs_fs_fetch_file_status()
290 if (!call) in afs_fs_fetch_file_status()
[all …]
Dcmservice.c99 bool afs_cm_incoming_call(struct afs_call *call) in afs_cm_incoming_call() argument
101 u32 operation_id = ntohl(call->operation_ID); in afs_cm_incoming_call()
107 call->type = &afs_SRXCBCallBack; in afs_cm_incoming_call()
110 call->type = &afs_SRXCBInitCallBackState; in afs_cm_incoming_call()
113 call->type = &afs_SRXCBInitCallBackState3; in afs_cm_incoming_call()
116 call->type = &afs_SRXCBProbe; in afs_cm_incoming_call()
119 call->type = &afs_SRXCBTellMeAboutYourself; in afs_cm_incoming_call()
129 static void afs_cm_destructor(struct afs_call *call) in afs_cm_destructor() argument
137 if (call->unmarshall == 6) { in afs_cm_destructor()
138 ASSERT(call->server && call->count && call->request); in afs_cm_destructor()
[all …]
Dvlclient.c61 static int afs_deliver_vl_get_entry_by_xxx(struct afs_call *call, in afs_deliver_vl_get_entry_by_xxx() argument
71 afs_transfer_reply(call, skb); in afs_deliver_vl_get_entry_by_xxx()
75 if (call->reply_size != call->reply_max) in afs_deliver_vl_get_entry_by_xxx()
79 entry = call->reply; in afs_deliver_vl_get_entry_by_xxx()
80 bp = call->buffer; in afs_deliver_vl_get_entry_by_xxx()
156 struct afs_call *call; in afs_vl_get_entry_by_name() local
166 call = afs_alloc_flat_call(&afs_RXVLGetEntryByName, reqsz, 384); in afs_vl_get_entry_by_name()
167 if (!call) in afs_vl_get_entry_by_name()
170 call->key = key; in afs_vl_get_entry_by_name()
171 call->reply = entry; in afs_vl_get_entry_by_name()
[all …]
/linux-4.4.14/tools/
DMakefile50 $(call descend,power/$@)
53 $(call descend,power/$@)
56 $(call descend,$@)
59 $(call descend,lib/lockdep)
62 $(call descend,lib/api)
73 $(call descend,testing/$@)
76 $(call descend,power/x86/$@)
79 $(call descend,thermal/$@)
82 $(call descend,laptop/$@)
90 $(call descend,power/$(@:_install=),install)
[all …]
/linux-4.4.14/arch/blackfin/mach-bf561/
Datomic.S110 call _get_core_lock_noflush;
134 call _put_core_lock;
149 call _get_core_lock_noflush;
172 call _put_core_lock;
178 call _resync_core_dcache
182 call _put_core_lock;
242 call _resync_core_dcache
281 call _get_core_lock;
286 call _put_core_lock;
301 call _get_core_lock;
[all …]
/linux-4.4.14/arch/m68k/
DMakefile21 CROSS_COMPILE := $(call cc-cross-prefix, \
44 cpuflags-$(CONFIG_M5441x) := $(call cc-option,-mcpu=54455,-mcfv4e)
45 cpuflags-$(CONFIG_M54xx) := $(call cc-option,-mcpu=5475,-m5200)
46 cpuflags-$(CONFIG_M5407) := $(call cc-option,-mcpu=5407,-m5200)
47 cpuflags-$(CONFIG_M532x) := $(call cc-option,-mcpu=532x,-m5307)
48 cpuflags-$(CONFIG_M537x) := $(call cc-option,-mcpu=537x,-m5307)
49 cpuflags-$(CONFIG_M5307) := $(call cc-option,-mcpu=5307,-m5200)
50 cpuflags-$(CONFIG_M528x) := $(call cc-option,-mcpu=528x,-m5307)
51 cpuflags-$(CONFIG_M5275) := $(call cc-option,-mcpu=5275,-m5307)
52 cpuflags-$(CONFIG_M5272) := $(call cc-option,-mcpu=5272,-m5307)
[all …]
/linux-4.4.14/scripts/
DMakefile.extrawarn23 warning-1 += $(call cc-option, -Wmissing-prototypes)
25 warning-1 += $(call cc-option, -Wmissing-include-dirs)
26 warning-1 += $(call cc-option, -Wunused-but-set-variable)
27 warning-1 += $(call cc-option, -Wunused-const-variable)
28 warning-1 += $(call cc-disable-warning, missing-field-initializers)
35 warning-2 += $(call cc-option, -Wlogical-op)
36 warning-2 += $(call cc-option, -Wmissing-field-initializers)
46 warning-3 += $(call cc-option, -Wpacked-bitfield-compat)
47 warning-3 += $(call cc-option, -Wvla)
61 KBUILD_CFLAGS += $(call cc-disable-warning, initializer-overrides)
[all …]
DMakefile.build153 $(call if_changed_dep,cc_s_c)
159 $(call if_changed_dep,cc_i_c)
171 $(call cmd_gensymtypes,true,$@) >/dev/null; \
175 $(call cmd,cc_symtypes_c)
202 $(call cmd_gensymtypes,$(KBUILD_SYMTYPES),$(@:.o=.symtypes)) \
245 $(call echo-cmd,checksrc) $(cmd_checksrc) \
246 $(call echo-cmd,cc_o_c) $(cmd_cc_o_c); \
248 $(call echo-cmd,record_mcount) \
258 $(call cmd,force_checksrc)
259 $(call if_changed_rule,cc_o_c)
[all …]
DMakefile.host75 __hostc_flags = -I$(obj) $(call flags,_hostc_flags)
76 __hostcxx_flags = -I$(obj) $(call flags,_hostcxx_flags)
91 $(call if_changed_dep,host-csingle)
100 $(call if_changed,host-cmulti)
101 $(call multi_depend, $(host-cmulti), , -objs)
108 $(call if_changed_dep,host-cobjs)
118 $(call if_changed,host-cxxmulti)
119 $(call multi_depend, $(host-cxxmulti), , -objs -cxxobjs)
125 $(call if_changed_dep,host-cxxobjs)
DKbuild.include46 # $(call filechk,sample)
72 # Usage: CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-)
86 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
99 # Usage: cflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
101 as-option = $(call try-run,\
105 # Usage: cflags-y += $(call as-instr,instr,option1,option2)
107 as-instr = $(call try-run,\
111 # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
113 cc-option = $(call try-run,\
117 # Usage: flag := $(call cc-option-yn,-march=winchip-c6)
[all …]
DMakefile.lib145 __c_flags = $(call addtree,-I$(obj)) $(call flags,_c_flags)
146 __a_flags = $(call flags,_a_flags)
147 __cpp_flags = $(call flags,_cpp_flags)
190 $(call cmd,gperf)
201 $(call cmd,flex)
212 $(call cmd,bison)
219 $(call cmd,bison_h)
230 $(call cmd,shipped)
282 $(call cmd,dt_S_dtb)
293 $(call if_changed_dep,dtc)
[all …]
DMakefile.kasan12 CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \
15 --param asan-instrumentation-with-call-threshold=$(call_threshold))
17 ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),)
DMakefile.modpost91 $(call cmd,modpost) $(wildcard vmlinux)
97 $(call cmd,kernel-mod)
114 $(call if_changed_dep,cc_o_c)
125 $(call if_changed,ld_ko_o)
/linux-4.4.14/arch/x86/
DMakefile21 M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS))
28 $(call cc-option, -ffreestanding) \
29 $(call cc-option, -fno-stack-protector) \
30 $(call cc-option, -mpreferred-stack-boundary=2)
50 KBUILD_CFLAGS += $(call cc-option,-mno-avx,)
57 biarch := $(call cc-option,-m32)
68 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
72 KBUILD_CFLAGS += $(call cc-ifversion, -lt, 0400, \
73 $(call cc-option,-fno-unit-at-a-time))
97 KBUILD_CFLAGS += $(call cc-option,-mno-80387)
[all …]
DMakefile_32.cpu5 HAS_MTUNE := $(call cc-option-yn, -mtune=i386)
7 tune = $(call cc-option,-mtune=$(1),$(2))
9 tune = $(call cc-option,-mcpu=$(1),$(2))
18 cflags-$(CONFIG_MPENTIUMII) += -march=i686 $(call tune,pentium2)
19 cflags-$(CONFIG_MPENTIUMIII) += -march=i686 $(call tune,pentium3)
20 cflags-$(CONFIG_MPENTIUMM) += -march=i686 $(call tune,pentium3)
21 cflags-$(CONFIG_MPENTIUM4) += -march=i686 $(call tune,pentium4)
26 cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,-march=athlon)
28 cflags-$(CONFIG_MEFFICEON) += -march=i686 $(call tune,pentium3) $(align)-functions=0 $(align)-jumps…
29 cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586)
[all …]
DMakefile.um11 KBUILD_CFLAGS += $(call cc-option,-m32)
12 KBUILD_AFLAGS += $(call cc-option,-m32)
13 LINK-y += $(call cc-option,-m32)
24 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
34 echo $(call cc-option,-fno-unit-at-a-time); \
35 else echo $(call cc-option,-funit-at-a-time); fi ;)
59 KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
/linux-4.4.14/include/trace/
Dtrace_events.h180 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
181 struct trace_event_data_offsets_##call { \
305 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
307 trace_raw_output_##call(struct trace_iterator *iter, int flags, \
312 struct trace_event_raw_##call *field; \
325 static struct trace_event_functions trace_event_type_funcs_##call = { \
326 .trace = trace_raw_output_##call, \
330 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \ argument
332 trace_raw_output_##call(struct trace_iterator *iter, int flags, \
341 if (entry->type != event_##call.event.type) { \
[all …]
Dperf.h33 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
35 perf_trace_##call(void *__data, proto) \
38 struct trace_event_data_offsets_##call __maybe_unused __data_offsets;\
39 struct trace_event_raw_##call *entry; \
48 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \
80 #define DEFINE_EVENT(template, call, proto, args) \ argument
81 static inline void perf_test_probe_##call(void) \
83 check_trace_callback_type_##call(perf_trace_##template); \
/linux-4.4.14/arch/powerpc/
DMakefile15 HAS_BIARCH := $(call cc-option-yn, -m32)
80 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect)
82 ifeq ($(call cc-option-yn,-mbig-endian),y)
104 ifeq ($(call cc-option-yn,-mcmodel=medium),y)
119 CFLAGS-$(CONFIG_PPC64) := $(call cc-option,-mtraceback=no)
121 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2,$(call cc-option,-mcall-aixdesc))
122 AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2)
124 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcall-aixdesc)
126 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,$(call cc-option,-mminimal-toc))
127 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions)
[all …]
/linux-4.4.14/arch/blackfin/kernel/
Dftrace.c51 unsigned char call[8]; in ftrace_make_call() local
52 call[0] = 0x67; /* [--SP] = RETS; */ in ftrace_make_call()
53 call[1] = 0x01; in ftrace_make_call()
54 bfin_make_pcrel24(&call[2], rec->ip + 2, addr); in ftrace_make_call()
55 call[6] = 0x27; /* RETS = [SP++]; */ in ftrace_make_call()
56 call[7] = 0x01; in ftrace_make_call()
57 return ftrace_modify_code(rec->ip, call, sizeof(call)); in ftrace_make_call()
62 unsigned char call[4]; in ftrace_update_ftrace_func() local
64 bfin_make_pcrel24(call, ip, func); in ftrace_update_ftrace_func()
65 return ftrace_modify_code(ip, call, sizeof(call)); in ftrace_update_ftrace_func()
Dftrace-entry.S53 call _ftrace_stub
136 call (p0);
177 call _prepare_ftrace_return;
196 call _ftrace_return_to_handler;
/linux-4.4.14/kernel/trace/
Dtrace_events.c95 trace_find_event_field(struct trace_event_call *call, char *name) in trace_find_event_field() argument
100 head = trace_get_fields(call); in trace_find_event_field()
139 int trace_define_field(struct trace_event_call *call, const char *type, in trace_define_field() argument
145 if (WARN_ON(!call->class)) in trace_define_field()
148 head = trace_get_fields(call); in trace_define_field()
195 static void trace_destroy_fields(struct trace_event_call *call) in trace_destroy_fields() argument
200 head = trace_get_fields(call); in trace_destroy_fields()
207 int trace_event_raw_init(struct trace_event_call *call) in trace_event_raw_init() argument
211 id = register_trace_event(&call->event); in trace_event_raw_init()
301 int trace_event_reg(struct trace_event_call *call, in trace_event_reg() argument
[all …]
Dtrace_syscalls.c22 syscall_get_enter_fields(struct trace_event_call *call) in syscall_get_enter_fields() argument
24 struct syscall_metadata *entry = call->data; in syscall_get_enter_fields()
223 static int __init set_syscall_print_fmt(struct trace_event_call *call) in set_syscall_print_fmt() argument
227 struct syscall_metadata *entry = call->data; in set_syscall_print_fmt()
229 if (entry->enter_event != call) { in set_syscall_print_fmt()
230 call->print_fmt = "\"0x%lx\", REC->ret"; in set_syscall_print_fmt()
243 call->print_fmt = print_fmt; in set_syscall_print_fmt()
248 static void __init free_syscall_print_fmt(struct trace_event_call *call) in free_syscall_print_fmt() argument
250 struct syscall_metadata *entry = call->data; in free_syscall_print_fmt()
252 if (entry->enter_event == call) in free_syscall_print_fmt()
[all …]
Dtrace_export.c163 #define FTRACE_ENTRY_REG(call, struct_name, etype, tstruct, print, filter,\ argument
166 struct trace_event_class __refdata event_class_ftrace_##call = { \
168 .define_fields = ftrace_define_fields_##call, \
169 .fields = LIST_HEAD_INIT(event_class_ftrace_##call.fields),\
173 struct trace_event_call __used event_##call = { \
174 .class = &event_class_ftrace_##call, \
176 .name = #call, \
183 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call;
186 #define FTRACE_ENTRY(call, struct_name, etype, tstruct, print, filter) \ argument
187 FTRACE_ENTRY_REG(call, struct_name, etype, \
[all …]
Dtrace_kprobe.c296 tk->tp.call.class = &tk->tp.class; in alloc_trace_kprobe()
297 tk->tp.call.name = kstrdup(event, GFP_KERNEL); in alloc_trace_kprobe()
298 if (!tk->tp.call.name) in alloc_trace_kprobe()
314 kfree(tk->tp.call.name); in alloc_trace_kprobe()
327 kfree(tk->tp.call.class->system); in free_trace_kprobe()
328 kfree(tk->tp.call.name); in free_trace_kprobe()
339 if (strcmp(trace_event_name(&tk->tp.call), event) == 0 && in find_trace_kprobe()
340 strcmp(tk->tp.call.class->system, group) == 0) in find_trace_kprobe()
514 old_tk = find_trace_kprobe(trace_event_name(&tk->tp.call), in register_trace_kprobe()
515 tk->tp.call.class->system); in register_trace_kprobe()
[all …]
Dtrace_uprobe.c253 tu->tp.call.class = &tu->tp.class; in alloc_trace_uprobe()
254 tu->tp.call.name = kstrdup(event, GFP_KERNEL); in alloc_trace_uprobe()
255 if (!tu->tp.call.name) in alloc_trace_uprobe()
271 kfree(tu->tp.call.name); in alloc_trace_uprobe()
285 kfree(tu->tp.call.class->system); in free_trace_uprobe()
286 kfree(tu->tp.call.name); in free_trace_uprobe()
296 if (strcmp(trace_event_name(&tu->tp.call), event) == 0 && in find_probe_event()
297 strcmp(tu->tp.call.class->system, group) == 0) in find_probe_event()
326 old_tu = find_probe_event(trace_event_name(&tu->tp.call), in register_trace_uprobe()
327 tu->tp.call.class->system); in register_trace_uprobe()
[all …]
Dtrace_events_filter.c829 struct trace_event_call *call = file->event_call; in filter_disable() local
831 if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) in filter_disable()
832 call->flags &= ~TRACE_EVENT_FL_FILTERED; in filter_disable()
886 struct trace_event_call *call = file->event_call; in __remove_filter() local
889 if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) in __remove_filter()
890 remove_filter_string(call->filter); in __remove_filter()
909 struct trace_event_call *call = file->event_call; in __free_subsystem_filter() local
911 if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) { in __free_subsystem_filter()
912 __free_filter(call->filter); in __free_subsystem_filter()
913 call->filter = NULL; in __free_subsystem_filter()
[all …]
Dtrace_functions_graph.c286 struct trace_event_call *call = &event_funcgraph_entry; in __trace_graph_entry() local
297 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_entry()
398 struct trace_event_call *call = &event_funcgraph_exit; in __trace_graph_return() local
409 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_return()
769 struct ftrace_graph_ent *call; in print_graph_entry_leaf() local
774 call = &entry->graph_ent; in print_graph_entry_leaf()
788 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
791 if (call->depth < FTRACE_RETFUNC_DEPTH) in print_graph_entry_leaf()
792 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
799 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
[all …]
/linux-4.4.14/tools/perf/config/
DMakefile22 $(call detected_var,ARCH)
28 $(call detected,CONFIG_X86)
33 $(call detected,CONFIG_X86_64)
51 $(call detected,CONFIG_PERF_REGS)
119 ifeq ($(call get-executable,$(FLEX)),)
123 ifeq ($(call get-executable,$(BISON)),)
139 CFLAGS += $(call cc-option,-Og,-O0)
146 $(call detected_var,PARSER_DEBUG_BISON)
147 $(call detected_var,PARSER_DEBUG_FLEX)
155 PYTHON2 := $(if $(call get-executable,python2),python2,python)
[all …]
Dutilities.mak10 # Usage: escape = $(call nl-escape[,escape])
20 # Usage: escaped-text = $(call escape-nl,text[,escape])
30 # $(call unescape-nl...)
32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1))
36 # Usage: text = $(call unescape-nl,escaped-text[,escape])
40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1))
44 # Usage: $(shell some-command | $(call shell-escape-nl[,escape]))
46 # Use this to escape newlines from within a shell call;
60 # Usage: $(shell some-command | $(call shell-unescape-nl[,escape]))
62 # Use this to unescape newlines from within a shell call;
[all …]
/linux-4.4.14/arch/sh/boot/
DMakefile36 $(call if_changed,objcopy)
43 $(call if_changed,objcopy)
66 $(call if_changed,objcopy)
69 $(call if_changed,gzip)
72 $(call if_changed,bzip2)
75 $(call if_changed,lzma)
78 $(call if_changed,xzkern)
81 $(call if_changed,lzo)
84 $(call if_changed,uimage,bzip2)
87 $(call if_changed,uimage,gzip)
[all …]
/linux-4.4.14/tools/build/
DMakefile.build55 rule_mkdir = $(if $(wildcard $(dir $@)),,@$(call echo-cmd,mkdir) $(cmd_mkdir))
77 $(call rule_mkdir)
78 $(call if_changed_dep,cc_o_c)
81 $(call rule_mkdir)
82 $(call if_changed_dep,cc_o_c)
85 $(call rule_mkdir)
86 $(call if_changed_dep,cc_i_c)
89 $(call rule_mkdir)
90 $(call if_changed_dep,cc_i_c)
93 $(call rule_mkdir)
[all …]
DMakefile.feature87 $(foreach feat,$(FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
92 $(call feature_check,all,$(MSG))
102 $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat)))
105 $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat)))
153 $(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat)))
163 $(foreach feat,$(FEATURE_DISPLAY),$(call feature_print_status,$(feat),))
166 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
176 $(foreach feat,$(TMP),$(call feature_print_status,$(feat),))
DMakefile14 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
15 $(call allow-override,LD,$(CROSS_COMPILE)ld)
31 $(call QUIET_CLEAN, fixdep)
/linux-4.4.14/arch/blackfin/boot/
DMakefile22 $(call if_changed,objcopy)
25 $(call if_changed,gzip)
28 $(call if_changed,bzip2)
31 $(call if_changed,lzma)
34 $(call if_changed,lzo)
40 $(call if_changed,mk_bin_xip)
43 $(call if_changed,uimage,none)
46 $(call if_changed,uimage,bzip2)
49 $(call if_changed,uimage,gzip)
52 $(call if_changed,uimage,lzma)
[all …]
/linux-4.4.14/arch/sparc/boot/
DMakefile25 $(call if_changed,gzip)
29 $(call if_changed,elftoaout)
34 $(call if_changed,strip)
44 $(call if_changed,objcopy)
47 $(call if_changed,gzip)
59 $(call if_changed,uimage)
60 $(call if_changed,uimage.o)
66 $(call if_changed,strip)
70 $(call if_changed,elftoaout)
71 $(call if_changed,piggy)
/linux-4.4.14/arch/mips/boot/
DMakefile36 $(call if_changed,ecoff)
42 $(call if_changed,bin)
48 $(call if_changed,srec)
63 $(call if_changed,bzip2)
66 $(call if_changed,gzip)
69 $(call if_changed,lzma)
72 $(call if_changed,lzo)
86 $(call if_changed,uimage,none)
89 $(call if_changed,uimage,bzip2)
92 $(call if_changed,uimage,gzip)
[all …]
/linux-4.4.14/arch/s390/boot/compressed/
DMakefile14 KBUILD_CFLAGS += $(call cc-option,-mpacked-stack)
15 KBUILD_CFLAGS += $(call cc-option,-ffreestanding)
24 $(call if_changed,ld)
33 $(call if_changed,sizes)
43 $(call if_changed,objcopy)
55 $(call if_changed,gzip)
57 $(call if_changed,bzip2)
59 $(call if_changed,lz4)
61 $(call if_changed,lzma)
63 $(call if_changed,lzo)
[all …]
/linux-4.4.14/arch/mips/vdso/
DMakefile14 $(call cc-option, -fno-stack-protector)
31 ifeq ($(call ld-ifversion, -lt, 22500000, y),y)
42 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv) \
43 $(call cc-ldoption, -Wl$(comma)--build-id)
81 $(call if_changed,vdsold)
84 $(call if_changed,genvdso)
104 $(call if_changed_dep,as_o_S)
107 $(call cmd,force_checksrc)
108 $(call if_changed_rule,cc_o_c)
112 $(call if_changed_dep,cpp_lds_S)
[all …]
/linux-4.4.14/lib/raid6/
DMakefile18 altivec_flags := -maltivec $(call cc-option,-mabi=altivec)
39 $(call if_changed,unroll)
44 $(call if_changed,unroll)
49 $(call if_changed,unroll)
54 $(call if_changed,unroll)
59 $(call if_changed,unroll)
64 $(call if_changed,unroll)
70 $(call if_changed,unroll)
76 $(call if_changed,unroll)
82 $(call if_changed,unroll)
[all …]
/linux-4.4.14/arch/avr32/kernel/
Dsyscall-stubs.S34 call sys_mmap_pgoff
43 call sys_sendto
52 call sys_recvfrom
61 call sys_pselect6
70 call sys_splice
79 call sys_epoll_pwait
88 call sys_sync_file_range
97 call sys_fallocate
106 call sys_fanotify_mark
115 call sys_process_vm_readv
[all …]
Dentry-avr32b.S153 call save_full_context_ex
156 call do_page_fault
253 call schedule_tail
259 call schedule_tail
266 call syscall_trace
274 call syscall_trace
281 call schedule
292 call do_notify_resume
399 call do_critical_exception
413 call save_full_context_ex
[all …]
/linux-4.4.14/arch/metag/boot/
DMakefile37 $(call if_changed,objcopy)
40 $(call if_changed,gzip)
43 $(call if_changed,bzip2)
46 $(call if_changed,xzkern)
49 $(call if_changed,lzo)
52 $(call if_changed,uimage,gzip)
55 $(call if_changed,uimage,bzip2)
58 $(call if_changed,uimage,xz)
61 $(call if_changed,uimage,lzo)
64 $(call if_changed,uimage,none)
/linux-4.4.14/arch/mips/
DMakefile47 …CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-linux-gnu- $(t…
53 ifeq ($(call cc-option-yn,-mmcount-ra-address), y)
58 cflags-y += $(call cc-option, -mno-check-zero-division)
101 ifneq ($(call as-option,-Wa$(comma)-msoft-float,),)
125 cflags-$(CONFIG_SB1XXX_CORELIS) += $(call cc-option,-mno-sched-prolog) \
137 cflags-$(CONFIG_CPU_MIPS32_R1) += $(call cc-option,-march=mips32,-mips32 -U_MIPS_ISA -D_MIPS_ISA=_M…
139 cflags-$(CONFIG_CPU_MIPS32_R2) += $(call cc-option,-march=mips32r2,-mips32r2 -U_MIPS_ISA -D_MIPS_IS…
142 cflags-$(CONFIG_CPU_MIPS64_R1) += $(call cc-option,-march=mips64,-mips64 -U_MIPS_ISA -D_MIPS_ISA=_M…
144 cflags-$(CONFIG_CPU_MIPS64_R2) += $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_IS…
148 cflags-$(CONFIG_CPU_R5432) += $(call cc-option,-march=r5400,-march=r5000) \
[all …]
/linux-4.4.14/arch/blackfin/mach-common/
Ddpmc_modes.S17 call _set_sic_iwr;
30 call _test_pll_locked;
36 call _set_sic_iwr;
48 call _test_pll_locked;
74 call _set_sic_iwr;
75 call _set_dram_srfs;
103 call _set_sic_iwr;
104 call _set_dram_srfs; /* Set SDRAM Self Refresh */
121 call _test_pll_locked;
137 call _test_pll_locked;
[all …]
Dhead.S115 call _init_early_exception_vectors;
127 call __init_clear_bss
134 call __init_clear_bss
141 call __init_clear_bss
147 call __init_clear_bss
150 call _bfin_relocate_l1_mem;
153 call _bfin_relocate_xip_data;
164 call _init_clocks;
221 call _cmdline_init;
224 call _init_pda
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/
Dhub.fuc139 call(ctx_4170s)
140 call(ctx_4170w)
142 call(ctx_86c)
147 call(mmctx_size)
164 call(strand_ctx_init)
181 call(nv_wr32) // CC_SCRATCH[1] = ctx offset
184 call(nv_wr32)
186 call(nv_wr32) // ENTRY
189 call(nv_wr32) // CTRL
194 call(nv_rd32)
[all …]
Dgpc.fuc61 */ call(nv_wr32)
86 #define tpc_strand_wait() call(tpc_strand_wait)
171 call(nv_rd32)
201 call(mmctx_size)
208 call(mmctx_size)
218 call(mmctx_size)
237 call(strand_ctx_init)
256 call(nv_rd32)
262 call(nv_wr32)
265 call(nv_wr32)
[all …]
Dcom.fuc41 call(error)
103 call(wait_doneo)
232 call(wait_donez)
254 call(wait_donez)
258 // unknown - call before issuing strand commands
263 call(strand_wait)
266 // unknown - call after issuing strand commands
271 call(strand_wait)
286 call(strand_wait)
298 call(strand_pre)
[all …]
/linux-4.4.14/arch/microblaze/boot/
DMakefile10 $(call if_changed,objcopy)
14 $(call if_changed,uimage)
18 $(call if_changed,gzip)
31 $(call if_changed,cp,.unstrip)
32 $(call if_changed,objcopy)
33 $(call if_changed,uimage)
34 $(call if_changed,strip)
/linux-4.4.14/arch/x86/boot/compressed/
DMakefile31 KBUILD_CFLAGS += $(call cc-option,-ffreestanding)
32 KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
57 $(call if_changed,ld)
62 $(call if_changed,objcopy)
70 $(call if_changed,relocs)
76 $(call if_changed,gzip)
78 $(call if_changed,bzip2)
80 $(call if_changed,lzma)
82 $(call if_changed,xzkern)
84 $(call if_changed,lzo)
[all …]
Dhead_32.S46 call 1f
60 call make_boot_params
74 call 1f
86 call efi_main
127 call 1f
221 call decompress_kernel /* returns kernel location in %eax */
Defi_stub_32.S39 call 1f
58 call *%ecx
66 call 1f
Dhead_64.S69 call 1f
78 call verify_cpu
209 call 1f
251 call 1f
261 call make_boot_params
270 call 1f
281 call efi_main
414 call decompress_kernel /* returns kernel location in %rax */
Deboot.c64 status = efi_early->call((unsigned long)fh->open, fh, &h, filename_16, in __file_size32()
76 status = efi_early->call((unsigned long)h->get_info, h, &info_guid, in __file_size32()
91 status = efi_early->call((unsigned long)h->get_info, h, &info_guid, in __file_size32()
117 status = efi_early->call((unsigned long)fh->open, fh, &h, filename_16, in __file_size64()
129 status = efi_early->call((unsigned long)h->get_info, h, &info_guid, in __file_size64()
144 status = efi_early->call((unsigned long)h->get_info, h, &info_guid, in __file_size64()
178 return efi_early->call(func, handle, size, addr); in efi_file_read()
183 return efi_early->call(func, handle, size, addr); in efi_file_read()
192 return efi_early->call((unsigned long)fh->close, handle); in efi_file_close()
196 return efi_early->call((unsigned long)fh->close, handle); in efi_file_close()
[all …]
/linux-4.4.14/drivers/video/logo/
DMakefile29 extra-y += $(call logo-cfiles,_mono,pbm)
32 extra-y += $(call logo-cfiles,_vga16,ppm)
35 extra-y += $(call logo-cfiles,_clut224,ppm)
38 extra-y += $(call logo-cfiles,_gray256,pgm)
49 $(call if_changed,logo)
52 $(call if_changed,logo)
55 $(call if_changed,logo)
58 $(call if_changed,logo)
/linux-4.4.14/arch/nios2/kernel/
Dentry.S246 call do_syscall_trace_enter
286 call do_syscall_trace_exit
298 call schedule
306 call do_notify_resume
357 call do_IRQ
377 call preempt_schedule_irq
396 call do_fork
404 call do_rt_sigreturn
416 call do_page_fault
421 call do_page_fault
[all …]
Dsyscall_table.c25 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.4.14/tools/lib/traceevent/
DMakefile24 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
25 $(call allow-override,AR,$(CROSS_COMPILE)ar)
26 $(call allow-override,NM,$(CROSS_COMPILE)nm)
181 $(QUIET_GEN)$(call do_generate_dynamic_list_file, $(PLUGINS), $@)
205 ($(call make_version.h, $@.tmp); \
215 $(Q)$(N)$(call update_version.h)
248 $(call do_install,$$plugin,$(plugin_dir_SQ)); \
260 $(call QUIET_INSTALL, $(LIB_FILE)) \
261 $(call do_install,$(LIB_FILE),$(libdir_SQ))
264 $(call QUIET_INSTALL, trace_plugins) \
[all …]
/linux-4.4.14/fs/lockd/
Dsvclock.c46 static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock);
47 static void nlmsvc_freegrantargs(struct nlm_rqst *call);
220 struct nlm_rqst *call = NULL; in nlmsvc_create_block() local
222 call = nlm_alloc_call(host); in nlmsvc_create_block()
223 if (call == NULL) in nlmsvc_create_block()
234 if (!nlmsvc_setgrantargs(call, lock)) in nlmsvc_create_block()
238 call->a_args.lock.fl.fl_flags |= FL_SLEEP; in nlmsvc_create_block()
239 call->a_args.lock.fl.fl_lmops = &nlmsvc_lock_operations; in nlmsvc_create_block()
240 nlmclnt_next_cookie(&call->a_args.cookie); in nlmsvc_create_block()
254 block->b_call = call; in nlmsvc_create_block()
[all …]
Dclntproc.c157 struct nlm_rqst *call; in nlmclnt_proc() local
160 call = nlm_alloc_call(host); in nlmclnt_proc()
161 if (call == NULL) in nlmclnt_proc()
167 nlmclnt_release_call(call); in nlmclnt_proc()
171 nlmclnt_setlockargs(call, fl); in nlmclnt_proc()
175 call->a_args.block = IS_SETLKW(cmd) ? 1 : 0; in nlmclnt_proc()
176 status = nlmclnt_lock(call, fl); in nlmclnt_proc()
178 status = nlmclnt_unlock(call, fl); in nlmclnt_proc()
180 status = nlmclnt_test(call, fl); in nlmclnt_proc()
196 struct nlm_rqst *call; in nlm_alloc_call() local
[all …]
Dsvcproc.c264 void nlmsvc_release_call(struct nlm_rqst *call) in nlmsvc_release_call() argument
266 if (!atomic_dec_and_test(&call->a_count)) in nlmsvc_release_call()
268 nlmsvc_release_host(call->a_host); in nlmsvc_release_call()
269 kfree(call); in nlmsvc_release_call()
291 struct nlm_rqst *call; in nlmsvc_callback() local
300 call = nlm_alloc_call(host); in nlmsvc_callback()
302 if (call == NULL) in nlmsvc_callback()
305 stat = func(rqstp, argp, &call->a_res); in nlmsvc_callback()
307 nlmsvc_release_call(call); in nlmsvc_callback()
311 call->a_flags = RPC_TASK_ASYNC; in nlmsvc_callback()
[all …]
/linux-4.4.14/arch/ia64/lib/
DMakefile29 $(call if_changed_dep,as_o_S)
32 $(call if_changed_dep,as_o_S)
35 $(call if_changed_dep,as_o_S)
38 $(call if_changed_dep,as_o_S)
41 $(call if_changed_dep,as_o_S)
44 $(call if_changed_dep,as_o_S)
47 $(call if_changed_dep,as_o_S)
50 $(call if_changed_dep,as_o_S)
/linux-4.4.14/arch/x86/entry/syscalls/
DMakefile27 $(call if_changed,syshdr)
32 $(call if_changed,syshdr)
37 $(call if_changed,syshdr)
41 $(call if_changed,syshdr)
46 $(call if_changed,syshdr)
49 $(call if_changed,systbl)
51 $(call if_changed,systbl)
54 $(call if_changed,hypercalls)
/linux-4.4.14/arch/sh/
DMakefile14 …CROSS_COMPILE := $(call cc-cross-prefix, $(UTS_MACHINE)-linux- $(UTS_MACHINE)-linux-gnu- $(UTS_M…
33 cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,)
34 cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \
35 $(call cc-option,-m2a-nofpu,) \
36 $(call cc-option,-m4-nofpu,)
37 cflags-$(CONFIG_CPU_SH3) := $(call cc-option,-m3,)
38 cflags-$(CONFIG_CPU_SH4) := $(call cc-option,-m4,) \
39 $(call cc-option,-mno-implicit-fp,-m4-nofpu)
40 cflags-$(CONFIG_CPU_SH4A) += $(call cc-option,-m4a,) \
41 $(call cc-option,-m4a-nofpu,)
[all …]
/linux-4.4.14/arch/sh/boot/compressed/
DMakefile54 $(call cmd,shipped)
57 $(call if_changed,ld)
61 $(call if_changed,objcopy)
66 $(call if_changed,gzip)
68 $(call if_changed,bzip2)
70 $(call if_changed,lzma)
72 $(call if_changed,xzkern)
74 $(call if_changed,lzo)
81 $(call if_changed,ld)
/linux-4.4.14/arch/alpha/boot/
DMakefile43 $(call if_changed,gzip)
73 $(call if_changed,strip)
85 $(call if_changed,objstrip)
88 $(call if_changed,gzip)
91 $(call if_changed,objstrip)
94 $(call if_changed,objstrip)
97 $(call if_changed,objstrip)
100 $(call if_changed,objstrip)
112 $(call if_changed,ld)
115 $(call if_changed,ld)
[all …]
/linux-4.4.14/Documentation/networking/
Drxrpc.txt63 (3) Retention of the reusable bits of the transport system set up for one call
122 (*) Each RxRPC operation is a "call". A connection may make up to four
147 explicitly sequenced per call.
158 (*) An call is complete when the request has been sent, the reply has been
162 (*) An call may be aborted by either end at any time up to its completion.
183 the last call currently using it has completed in case a new call is made
216 be used in all other sendmsgs or recvmsgs associated with that call. The
221 first sendmsg() of a call (struct msghdr::msg_name).
227 first sendmsg() of the call must specify the target address. The server's
230 (*) Once the application has received the last message associated with a call,
[all …]
/linux-4.4.14/arch/x86/entry/
Dentry_64.S79 call debug_stack_set_zero
81 call debug_stack_reset
85 call debug_stack_set_zero
87 call debug_stack_reset
185 call *sys_call_table(, %rax, 8)
240 call syscall_trace_enter_phase1
252 call syscall_trace_enter_phase2
269 call *sys_call_table(, %rax, 8)
281 call syscall_return_slowpath /* returns with IRQs disabled */
371 call sys_execve
[all …]
Dentry_32.S209 call schedule_tail
217 call syscall_return_slowpath
223 call schedule_tail
229 call *PT_EBX(%esp)
238 call syscall_return_slowpath
273 call prepare_exit_to_usermode
285 call preempt_schedule_irq
290 # SYSENTER call handler stub
310 call do_fast_syscall_32
342 # system call handler stub
[all …]
/linux-4.4.14/arch/arm64/boot/
DMakefile20 $(call if_changed,objcopy)
23 $(call if_changed,bzip2)
26 $(call if_changed,gzip)
29 $(call if_changed,lz4)
32 $(call if_changed,lzma)
35 $(call if_changed,lzo)
/linux-4.4.14/arch/x86/kernel/
Dapm_32.c607 struct apm_bios_call *call = _call; in __apm_bios_call() local
617 apm_bios_call_asm(call->func, call->ebx, call->ecx, in __apm_bios_call()
618 &call->eax, &call->ebx, &call->ecx, &call->edx, in __apm_bios_call()
619 &call->esi); in __apm_bios_call()
625 return call->eax & 0xff; in __apm_bios_call()
629 static int on_cpu0(long (*fn)(void *), struct apm_bios_call *call) in on_cpu0() argument
636 ret = fn(call); in on_cpu0()
640 ret = work_on_cpu(0, fn, call); in on_cpu0()
645 call->err = ret; in on_cpu0()
647 call->err = (call->eax >> 8) & 0xff; in on_cpu0()
[all …]
Dmcount_64.S166 call ftrace_stub
223 call ftrace_stub
287 call *ftrace_trace_function
310 call prepare_ftrace_return
325 call ftrace_return_to_handler
/linux-4.4.14/security/tomoyo/
DMakefile10 …policy = ($(call do_policy,profile); $(call do_policy,exception_policy); $(call do_policy,domain_…
13 $(call if_changed,policy)
/linux-4.4.14/Documentation/prctl/
Dseccomp_filter.txt12 surface exposed to the application. System call filtering is meant for
18 operated on is related to the system call being made: system call
19 number and the system call arguments. This allows for expressive
25 call interposition frameworks. BPF programs may not dereference
27 call arguments directly.
32 System call filtering isn't a sandbox. It provides a clearly defined
46 prctl(2) call as the strict seccomp. If the architecture has
53 reflecting the system call number, arguments, and other
63 call will return -1 and set errno to EINVAL.
67 call ABI as the parent.
[all …]
/linux-4.4.14/arch/tile/kernel/vdso/
DMakefile46 $(call if_changed,vdsold)
57 $(call cc-ldoption, -Wl$(comma)--hash-style=both)
60 $(call if_changed,vdsold)
66 $(call if_changed,objcopy)
84 $(call cmd,vdso_install)
87 $(call cmd,vdso_install)
107 $(call if_changed_rule,cc_o_c)
110 $(call if_changed,as_o_S)
116 $(call cc-ldoption, -Wl$(comma)--hash-style=both)
118 $(call if_changed,vdsold)
/linux-4.4.14/arch/mips/boot/compressed/
DMakefile50 $(call if_changed,objcopy)
61 $(call if_changed,$(tool_y))
67 $(call if_changed,objcopy)
86 $(call cmd,zld)
87 $(call cmd,strip)
108 $(call cmd,32)
113 $(call cmd,ecoff)
117 $(call cmd,objcopy)
121 $(call cmd,objcopy)
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Di2c_.fuc121 */ call(i2c_drive_scl)
124 */ call(i2c_drive_sda)
126 */ call(i2c_sense_scl)
128 */ call(i2c_sense_sda)
131 */ call(nsec)
155 */ call(func) /*
207 call(i2c_drive_sda)
290 call(i2c_acquire_addr)
291 call(rd32)
293 call(wr32)
[all …]
/linux-4.4.14/arch/nios2/boot/
DMakefile18 $(call if_changed,objcopy)
21 $(call if_changed,gzip)
24 $(call if_changed,uimage)
28 $(call if_changed,objcopy)
41 $(call cmd,dtc)
52 $(call if_changed_dep,dtc)
/linux-4.4.14/tools/perf/util/
DBuild116 $(call rule_mkdir)
117 …$(Q)$(call echo-cmd,flex)$(FLEX) -o $@ --header-file=$(OUTPUT)util/parse-events-flex.h $(PARSER_DE…
120 $(call rule_mkdir)
121 …$(Q)$(call echo-cmd,bison)$(BISON) -v util/parse-events.y -d $(PARSER_DEBUG_BISON) -o $@ -p parse_…
124 $(call rule_mkdir)
125 $(Q)$(call echo-cmd,flex)$(FLEX) -o $@ --header-file=$(OUTPUT)util/pmu-flex.h util/pmu.l
128 $(call rule_mkdir)
129 $(Q)$(call echo-cmd,bison)$(BISON) -v util/pmu.y -d -o $@ -p perf_pmu_
145 $(call rule_mkdir)
146 $(call if_changed_dep,cc_o_c)
[all …]
/linux-4.4.14/Documentation/
Dadding-syscalls.txt4 This document describes what's involved in adding a new system call to the
12 The first thing to consider when adding a new system call is whether one of
37 fcntl(2) is a multiplexing system call that hides a lot of complexity, so
43 fcntl(2), this system call is a complicated multiplexor so is best reserved
51 A new system call forms part of the API of the kernel, and has to be supported
63 system call. To make sure that userspace programs can safely use flags
65 flags, and reject the system call (with EINVAL) if it does:
102 If your new system call allows userspace to refer to a kernel object, it
107 If your new xyzzy(2) system call does return a new file descriptor, then the
116 If your system call returns a new file descriptor, you should also consider
[all …]
Dunshare.txt2 unshare system call:
4 This document describes the new system call, unshare. The document
38 call, applications can selectively choose which resources to share
41 unshare system call adds a primitive to the Linux thread model that
93 changes to copy_* functions utilized by clone/fork system call.
102 unshare reverses sharing that was done using clone(2) system call,
171 The unshare() call is Linux-specific and should not be used
179 Depending on the flags argument, the unshare system call allocates
195 vm, if the system call encounters an error while allocating
198 system call will have to go back to older, shared, vm
[all …]
/linux-4.4.14/arch/m32r/boot/compressed/
DMakefile21 $(call if_changed,ld)
25 $(call if_changed,objcopy)
28 $(call if_changed,gzip)
31 $(call if_changed,bzip2)
34 $(call if_changed,lzma)
51 $(call if_changed,ld)
/linux-4.4.14/arch/arm/
DMakefile31 KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
40 KBUILD_CFLAGS += $(call cc-option,-mno-unaligned-access)
63 KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra)
70 arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$…
71 arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(c…
75 arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(…
77 arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t)
91 tune-$(CONFIG_CPU_ARM946E) =$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi)
99 tune-$(CONFIG_CPU_XSCALE) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
100 tune-$(CONFIG_CPU_XSC3) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
[all …]
/linux-4.4.14/arch/ia64/hp/sim/boot/
DMakefile18 $(call cmd,cptotop)
24 $(call cmd,cptotop)
27 $(call if_changed,gzip)
30 $(call if_changed,objcopy)
37 $(call if_changed,ld)
/linux-4.4.14/
DMakefile608 KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,)
611 KBUILD_CFLAGS += -Os $(call cc-disable-warning,maybe-uninitialized,)
617 KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0)
624 KBUILD_CFLAGS += $(call cc-option,-fno-reorder-blocks,) \
625 $(call cc-option,-fno-ipa-cp-clone,) \
626 $(call cc-option,-fno-partial-inlining)
630 KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
652 ifeq ($(call cc-option, $(stackp-flag)),)
659 ifeq ($(call cc-option, $(stackp-flag)),)
665 stackp-flag := $(call cc-option, -fno-stack-protector)
[all …]
DKbuild45 $(call if_changed_dep,cc_s_c)
48 $(call filechk,offsets,__LINUX_BOUNDS_H__)
66 $(call filechk,gentimeconst)
81 $(call if_changed_dep,cc_s_c)
84 $(call filechk,offsets,__ASM_OFFSETS_H__)
97 $(call cmd,syscalls)
/linux-4.4.14/arch/arm/vdso/
DMakefile15 VDSO_LDFLAGS += $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
16 VDSO_LDFLAGS += $(call cc-ldoption, -Wl$(comma)--build-id)
17 VDSO_LDFLAGS += $(call cc-ldoption, -fuse-ld=bfd)
37 $(call if_changed,vdsold)
40 $(call if_changed,vdsomunge)
45 $(call if_changed,objcopy)
78 $(call cmd,vdso_install)
/linux-4.4.14/arch/avr32/boot/images/
DMakefile13 $(call if_changed,objcopy)
16 $(call if_changed,gzip)
24 $(call if_changed,uimage)
29 $(call if_changed,objcopy)
45 $(call if_changed,objcopy)
51 $(call if_changed,sfdwarf)
/linux-4.4.14/arch/arm64/kernel/vdso/
DMakefile16 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
34 $(call if_changed,vdsold)
39 $(call if_changed,objcopy)
50 $(call if_changed,vdsosym)
54 $(call if_changed_dep,vdsoas)
68 $(call cmd,vdso_install)
/linux-4.4.14/arch/x86/entry/vdso/
DMakefile50 $(call if_changed,vdso)
61 $(call if_changed,vdso2c)
68 $(filter -g%,$(KBUILD_CFLAGS)) $(call cc-option, -fno-stack-protector) \
112 $(call if_changed,x32)
118 $(call if_changed,objcopy)
121 $(call if_changed,vdso)
143 KBUILD_CFLAGS_32 += $(call cc-option, -fno-stack-protector)
144 KBUILD_CFLAGS_32 += $(call cc-option, -foptimize-sibling-calls)
154 $(call if_changed,vdso)
165 VDSO_LDFLAGS = -fPIC -shared $(call cc-ldoption, -Wl$(comma)--hash-style=both) \
[all …]
/linux-4.4.14/tools/lib/bpf/
DMakefile22 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
23 $(call allow-override,AR,$(CROSS_COMPILE)ar)
169 $(call QUIET_INSTALL, $(LIB_FILE)) \
170 $(call do_install,$(LIB_FILE),$(libdir_SQ))
177 $(call QUIET_CLEAN, config)
181 $(call QUIET_CLEAN, libbpf) $(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES) .*.d \
183 $(call QUIET_CLEAN, core-gen) $(RM) $(OUTPUT)FEATURE-DUMP.libbpf
/linux-4.4.14/tools/perf/
DMakefile.perf132 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
133 $(call allow-override,AR,$(CROSS_COMPILE)ar)
134 $(call allow-override,LD,$(CROSS_COMPILE)ld)
215 python-clean := $(call QUIET_CLEAN, python) $(RM) -r $(PYTHON_EXTBUILD) $(OUTPUT)python/perf.so
280 $(call QUIET_INSTALL, 'GTK UI') \
420 $(call QUIET_CLEAN, libtraceevent)
430 $(call QUIET_CLEAN, libapi)
437 $(call QUIET_CLEAN, libbpf)
516 $(call QUIET_INSTALL, binaries) \
521 $(call QUIET_INSTALL, perf-read-vdso32) \
[all …]
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-calling.txt3 How to call
7 mailboxes are basically a fixed length array that serves as the call-stack.
46 with values for all the parameters required by the call. The driver overwrites
47 these fields with result values returned by the call. The API specifics may be
51 doesn't handle the completed call within the timeout specified, the firmware
54 To make an API call, the driver iterates over each mailbox looking for the
59 the result value array with that call's return values and sets the call
65 firmware which events it is interested in via an API call. That call tells the
/linux-4.4.14/arch/x86/include/asm/
Dlguest_hcall.h47 hcall(unsigned long call, in hcall() argument
54 : "=a"(call) in hcall()
56 : "a"(call), "b"(arg1), "c"(arg2), "d"(arg3), "S"(arg4) in hcall()
61 return call; in hcall()
Dirqflags.h166 # define TRACE_IRQS_ON call trace_hardirqs_on_thunk;
167 # define TRACE_IRQS_OFF call trace_hardirqs_off_thunk;
174 # define LOCKDEP_SYS_EXIT call lockdep_sys_exit_thunk
178 call lockdep_sys_exit_thunk; \
186 call lockdep_sys_exit; \
/linux-4.4.14/tools/power/acpi/
DMakefile19 $(call descend,tools/$@,all)
21 $(call descend,tools/$(@:_clean=),clean)
23 $(call descend,tools/$(@:_install=),install)
25 $(call descend,tools/$(@:_uninstall=),uninstall)
DMakefile.config66 OPTIMIZATION := $(call cc-supports,-Os,-O2)
69 WARNINGS += $(call cc-supports,-Wstrict-prototypes)
70 WARNINGS += $(call cc-supports,-Wdeclaration-after-statement)
/linux-4.4.14/arch/sparc/kernel/
Dhead_64.S175 call %l7
204 call %l7
223 call %l7
247 call %l7
272 call %l7
313 call %l7
350 call %l7
376 call %l7
597 call generic_patch_copyops
599 call generic_patch_bzero
[all …]
Dentry.S186 call sparc_floppy_irq
202 call do_hw_interrupt
234 call handler_irq
251 call smp4m_percpu_timer_interrupt
294 call smp_call_function_single_interrupt
300 call smp_call_function_interrupt
307 call smp_resched_interrupt
334 call smp4m_cross_call_irq
352 call smp4d_percpu_timer_interrupt
380 call smp4d_cross_call_irq
[all …]
Dhvtramp.S113 call init_irqwork_curcpu
115 call hard_smp_processor_id
118 call sun4v_register_mondo_queues
121 call init_cur_cpu_trap
126 call smp_callin
129 call cpu_panic
Dtrampoline_32.S76 call %g5
80 call smp_callin
89 call cpu_panic
137 call %g5
141 call smp_callin
193 call %g5
197 call smp_callin
Durtt_fill.S61 call do_sparc64_fault
76 call sun4v_do_mna
81 call mem_address_unaligned
92 call sun4v_data_access_exception
96 1: call spitfire_data_access_exception
Dsyscalls.S47 call do_sigreturn32
53 call do_rt_sigreturn
59 call do_rt_sigreturn32
68 call syscall_trace_leave
115 call schedule_tail
121 call %l1
157 call syscall_trace_enter
187 call syscall_trace_enter
236 5: call %l7 ! CTI Group brk forced
260 2: call %l7 ! CTI Group brk forced
[all …]
Dmisctrap.S19 call do_privact
46 call mem_address_unaligned
64 call handle_lddfmna
82 call handle_stdfmna
89 call sparc_breakpoint
Dwinfixup.S33 call do_sparc64_fault
102 call do_sparc64_fault
124 call sun4v_do_mna
129 call mem_address_unaligned
152 call sun4v_data_access_exception
155 1: call spitfire_data_access_exception
Dtrampoline_64.S172 call %o1
205 call %o1
294 call init_irqwork_curcpu
303 call hard_smp_processor_id
306 call sun4v_register_mondo_queues
309 1: call init_cur_cpu_trap
370 call %o1
387 call %o1
405 call smp_callin
408 call cpu_panic
Dsun4v_ivec.S194 call trace_hardirqs_off
199 call sun4v_resum_error
223 call trace_hardirqs_off
226 call sun4v_resum_overflow
305 call trace_hardirqs_off
310 call sun4v_nonresum_error
334 call trace_hardirqs_off
337 call sun4v_nonresum_overflow
Dhead_32.S111 call 1f
193 call %o1
375 call %l0
385 call %l0 ! x is one of 'm', 'd' or 'e'.
451 sethi %hi(0x40000000), %g3 ! call
663 call sparc32_start_kernel
667 call halt_me
673 call %o1
745 call %l0
750 call %l0
[all …]
/linux-4.4.14/drivers/gpu/drm/radeon/
DMakefile14 $(call if_changed,mkregtable)
17 $(call if_changed,mkregtable)
20 $(call if_changed,mkregtable)
23 $(call if_changed,mkregtable)
26 $(call if_changed,mkregtable)
29 $(call if_changed,mkregtable)
32 $(call if_changed,mkregtable)
35 $(call if_changed,mkregtable)
38 $(call if_changed,mkregtable)
41 $(call if_changed,mkregtable)
/linux-4.4.14/arch/powerpc/kernel/vdso64/
DMakefile14 $(call cc-ldoption, -Wl$(comma)--hash-style=both)
26 $(call if_changed,vdso64ld)
31 $(call if_changed,objcopy)
35 $(call if_changed_dep,vdso64as)
49 $(call cmd,vdso_install)
/linux-4.4.14/tools/perf/tests/
Dmake117 ifneq ($(call has,ctags),)
120 ifneq ($(call has,cscope),)
177 test_make_install := $(call test_dest_files,$(installed_files_all))
178 test_make_install_O := $(call test_dest_files,$(installed_files_all))
179 test_make_install_bin := $(call test_dest_files,$(installed_files_bin))
180 test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin))
185 test_make_install_prefix := $(call test_dest_files,$(installed_files_all_prefix))
186 test_make_install_prefix_O := $(call test_dest_files,$(installed_files_all_prefix))
239 $(call clean)
244 echo " test: $(call test,$@)" >> $@ 2>&1; \
[all …]
/linux-4.4.14/drivers/scsi/aic7xxx/
Daic7xxx.seq76 call clear_target_state;
109 mov ALLZEROS call get_free_or_disc_scb;
121 mov ARG_1 call dma_scb;
133 mvi SCB_MISMATCH call set_seqint;
150 call start_selection;
201 mvi SHARED_DATA_ADDR call set_32byte_addr;
205 mvi SHARED_DATA_ADDR call set_32byte_addr;
243 call target_inb;
264 call target_inb;
293 call target_inb;
[all …]
/linux-4.4.14/arch/powerpc/kernel/vdso32/
DMakefile21 $(call cc-ldoption, -Wl$(comma)--hash-style=both)
33 $(call if_changed,vdso32ld)
38 $(call if_changed,objcopy)
42 $(call if_changed_dep,vdso32as)
56 $(call cmd,vdso_install)
/linux-4.4.14/arch/mn10300/boot/compressed/
DMakefile10 $(call if_changed,ld)
14 $(call if_changed,objcopy)
17 $(call if_changed,gzip)
22 $(call if_changed,ld)
/linux-4.4.14/arch/powerpc/platforms/cell/spufs/
DMakefile28 $(call if_changed,spu_cc)
34 $(call if_changed,spu_as)
40 $(call if_changed,spu_ld)
46 $(call if_changed,spu_objcopy)
62 $(call if_changed,hexdump)
/linux-4.4.14/arch/s390/kernel/vdso64/
DMakefile16 $(call cc-ldoption, -Wl$(comma)--hash-style=both)
33 $(call if_changed,vdso64ld)
38 $(call if_changed,objcopy)
42 $(call if_changed_dep,vdso64as)
56 $(call cmd,vdso_install)
/linux-4.4.14/arch/s390/kernel/vdso32/
DMakefile16 $(call cc-ldoption, -Wl$(comma)--hash-style=both)
33 $(call if_changed,vdso32ld)
38 $(call if_changed,objcopy)
42 $(call if_changed_dep,vdso32as)
56 $(call cmd,vdso_install)
/linux-4.4.14/arch/x86/um/vdso/
DMakefile30 $(call if_changed,vdso)
34 $(call if_changed,objcopy)
41 $(filter -g%,$(KBUILD_CFLAGS)) $(call cc-option, -fno-stack-protector) \
66 $(call if_changed,vdsosym)
77 VDSO_LDFLAGS = -fPIC -shared $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
87 $(call cmd,vdso_install)
/linux-4.4.14/arch/openrisc/
DMakefile30 KBUILD_CFLAGS += $(call cc-option,-mhard-mul)
32 KBUILD_CFLAGS += $(call cc-option,-msoft-mul)
36 KBUILD_CFLAGS += $(call cc-option,-mhard-div)
38 KBUILD_CFLAGS += $(call cc-option,-msoft-div)
/linux-4.4.14/arch/cris/boot/compressed/
DMakefile29 $(call if_changed,ld)
32 $(call if_changed,objcopy)
35 $(call if_changed,image)
38 $(call if_changed,gzip)
/linux-4.4.14/arch/arc/boot/
DMakefile22 $(call if_changed,objcopy)
25 $(call if_changed,gzip)
28 $(call if_changed,uimage,none)
31 $(call if_changed,uimage,gzip)
/linux-4.4.14/arch/blackfin/mach-bf609/
Ddpm.S16 call _bf609_ddr_sr;
17 call _bfin_hibernate_syscontrol;
92 call _bf609_ddr_sr;
115 call _bf609_resume_ccbuf;
118 call _bf609_ddr_sr_exit;
145 call (P1);
/linux-4.4.14/kernel/rcu/
Dsync.c34 void (*call)(struct rcu_head *, void (*)(struct rcu_head *)); member
42 .call = call_rcu,
48 .call = call_rcu_sched,
54 .call = call_rcu_bh,
167 gp_ops[rsp->gp_type].call(&rsp->cb_head, rcu_sync_func); in rcu_sync_func()
195 gp_ops[rsp->gp_type].call(&rsp->cb_head, rcu_sync_func); in rcu_sync_exit()
/linux-4.4.14/arch/arm/boot/compressed/
DMakefile83 $(call cmd,shipped)
136 $(call cmd,shipped)
142 $(call cmd,shipped)
148 $(call cmd,shipped)
174 $(call if_changed,ld)
178 $(call if_changed,$(suffix_y))
185 $(call cmd,shipped)
188 $(call cmd,shipped)
/linux-4.4.14/arch/h8300/boot/compressed/
DMakefile25 $(call if_changed,ld)
29 $(call if_changed,objcopy)
32 $(call if_changed,gzip)
38 $(call if_changed,ld)
/linux-4.4.14/arch/sparc/prom/
Dcif.S21 call %l2
37 call prom_world
40 call %l2
43 call prom_world
/linux-4.4.14/arch/x86/math-emu/
Dreg_round.S449 call set_precision_flag_up
461 call set_precision_flag_down
606 call EXCEPTION
619 call set_precision_flag_down
624 call EXCEPTION
638 call arith_overflow
656 call EXCEPTION
666 call EXCEPTION
672 call EXCEPTION
679 call EXCEPTION
[all …]
Dreg_u_sub.S234 call EXCEPTION
240 call EXCEPTION
246 call EXCEPTION
252 call EXCEPTION
258 call EXCEPTION
/linux-4.4.14/arch/frv/kernel/
Dhead-uc-fr451.S91 call __head_split_region
98 call __head_split_region
105 call __head_split_region
112 call __head_split_region
119 call __head_split_region
126 call __head_split_region
133 call __head_split_region
143 call __head_split_region
Dhead-uc-fr555.S261 call __head_split_region
266 call __head_split_region
271 call __head_split_region
276 call __head_split_region
281 call __head_split_region
286 call __head_split_region
291 call __head_split_region
297 call __head_split_region
302 call __head_split_region
307 call __head_split_region
[all …]
Dentry.S605 jmpl @(gr5,gr0) ; call do_page_fault(0,esr0,ear0)
655 jmpl @(gr5,gr0) ; call ill_insn(esfr1,epcr0,esr0)
694 jmpl @(gr5,gr0) ; call media_excep(msr0,msr1)
742 jmpl @(gr5,gr0) ; call memory_access_error(esr0,ear0,epcr0)
781 jmpl @(gr5,gr0) ; call data_store_error(esfr1,esr14)
824 jmpl @(gr5,gr0) ; call comp_excep(esfr1,esr0,esr14,esr15,msr0,msr1)
860 call schedule_tail
869 call schedule_tail
877 # but we want the default path for a system call return to
1117 call schedule
[all …]
/linux-4.4.14/arch/arm/boot/
DMakefile33 $(call if_changed,objcopy)
48 $(call if_changed,objcopy)
55 $(call if_changed,objcopy)
80 $(call if_changed,uimage)
88 $(call if_changed,objcopy)
/linux-4.4.14/arch/mips/loongson64/
DPlatform8 $(call cc-option,-march=loongson2e,-march=r4600)
10 $(call cc-option,-march=loongson2f,-march=r4600)
13 ifeq ($(call as-option,-Wa$(comma)-mfix-loongson2f-nop,),)
18 ifeq ($(call as-option,-Wa$(comma)-mfix-loongson2f-jump,),)
/linux-4.4.14/arch/x86/lib/
Drwsem.S90 call rwsem_down_read_failed
99 call rwsem_down_write_failed
110 call rwsem_wake
119 call rwsem_downgrade_wake
/linux-4.4.14/tools/lib/lockdep/
DMakefile18 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
19 $(call allow-override,AR,$(CROSS_COMPILE)ar)
20 $(call allow-override,LD,$(CROSS_COMPILE)ld)
146 $(Q)$(call do_install,$(LIB_FILE),$(libdir_SQ))
147 $(Q)$(call do_install,$(BIN_FILE),$(bindir_SQ))
/linux-4.4.14/arch/x86/platform/olpc/
Dxo1-wakeup.S93 call save_processor_state
94 call save_registers
100 call xo1_do_sleep
109 call restore_registers
110 call restore_processor_state
/linux-4.4.14/arch/s390/
DMakefile58 ifeq ($(call cc-option-yn,-mkernel-backchain),y)
64 ifeq ($(call cc-option-yn,-mpacked-stack),y)
69 ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
71 ifneq ($(call cc-option-yn,-mstack-size=8192),y)
76 ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
83 ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
/linux-4.4.14/Documentation/DocBook/
DMakefile53 $(call build_main_index)
54 $(call build_images)
55 $(call install_media_images)
76 LC_CTYPE := $(call try-run, LC_CTYPE=C.UTF-8 $(CHECK_LC_CTYPE),C.UTF-8,C)
102 $(call if_changed_rule,docproc)
132 $(call cmd,db2ps)
137 $(call cmd,db2pdf)
/linux-4.4.14/arch/um/os-Linux/
Dmain.c45 initcall_t *call; in do_uml_initcalls() local
47 call = &__uml_initcall_start; in do_uml_initcalls()
48 while (call < &__uml_initcall_end) { in do_uml_initcalls()
49 (*call)(); in do_uml_initcalls()
50 call++; in do_uml_initcalls()
/linux-4.4.14/arch/unicore32/boot/
DMakefile17 $(call if_changed,objcopy)
24 $(call if_changed,objcopy)
31 $(call if_changed,uimage)
/linux-4.4.14/arch/x86/xen/
Dxen-asm.S39 2: call check_events
100 2: call check_events
117 call xen_force_evtchn_callback
131 call xen_force_evtchn_callback
/linux-4.4.14/ipc/
Dsyscall.c16 SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second, in SYSCALL_DEFINE6() argument
21 version = call >> 16; /* hack for backward compatibility */ in SYSCALL_DEFINE6()
22 call &= 0xffff; in SYSCALL_DEFINE6()
24 switch (call) { in SYSCALL_DEFINE6()
/linux-4.4.14/certs/
DMakefile9 $(eval $(call config_filename,SYSTEM_TRUSTED_KEYS))
22 $(call if_changed,extract_certs,$(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_TRUSTED_KEYS))
81 $(eval $(call config_filename,MODULE_SIG_KEY))
93 $(call if_changed,extract_certs,$(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY))
/linux-4.4.14/arch/mips/sgi-ip27/
Dip27-irq.c193 int resched, call; in install_ipi() local
200 call = CPU_CALL_A_IRQ + slice; in install_ipi()
201 __set_bit(call, hub->irq_alloc_mask); in install_ipi()
202 __set_bit(call, si->irq_enable_mask); in install_ipi()
203 LOCAL_HUB_CLR_INTR(call); in install_ipi()
/linux-4.4.14/include/linux/
Dtrace_events.h311 trace_event_name(struct trace_event_call *call) in trace_event_name() argument
313 if (call->flags & TRACE_EVENT_FL_TRACEPOINT) in trace_event_name()
314 return call->tp ? call->tp->name : NULL; in trace_event_name()
316 return call->name; in trace_event_name()
427 extern int call_filter_check_discard(struct trace_event_call *call, void *rec,
575 extern int trace_event_raw_init(struct trace_event_call *call);
576 extern int trace_define_field(struct trace_event_call *call, const char *type,
579 extern int trace_add_event_call(struct trace_event_call *call);
580 extern int trace_remove_event_call(struct trace_event_call *call);
/linux-4.4.14/drivers/firmware/efi/libstub/
DMakefile20 $(call cc-option,-ffreestanding) \
21 $(call cc-option,-fno-stack-protector)
32 $(call if_changed_rule,cc_o_c)
63 $(call if_changed,stubcopy)
/linux-4.4.14/Documentation/isdn/
DINTERFACE47 supported prior to calling register_isdn(). Upon return of the call,
162 int flag: 0 = call from within kernel-space. (HL-driver must use
164 1 = call from user-space. (HL-driver must use
186 int flag: 0 = call from within kernel-space. (HL-driver must use
188 1 = call from user-space. (HL-driver must use
269 (Response to an incoming call)
292 actively rejecting an incoming call.
417 With this command, the HL-driver is told to proceed with a incoming call.
428 With this command, the HL-driver is told to alert a proceeding call.
439 With this command, the HL-driver is told to redirect a call in proceeding
[all …]
/linux-4.4.14/arch/mn10300/kernel/
Dentry.S50 call schedule_tail[],0
59 call schedule_tail[],0
70 # system call handler
145 call do_notify_resume[],0
153 call syscall_trace_entry[],0 # returns the syscall number to actually use
190 call preempt_schedule_irq[],0
271 call io_bus_error[],0
295 bne nmi_not_smp_callfunc # if not call function, jump
297 # function call nmi ipi
306 call smp_nmi_call_function_interrupt[],0
[all …]
/linux-4.4.14/arch/hexagon/
DMakefile18 cflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
19 aflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
20 ldflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
/linux-4.4.14/arch/h8300/boot/
DMakefile15 $(call if_changed,objcopy)
18 $(call if_changed,objcopy)
24 $(call if_changed,uimage,none)
/linux-4.4.14/arch/s390/kernel/
Dsys_s390.c63 SYSCALL_DEFINE5(s390_ipc, uint, call, int, first, unsigned long, second, in SYSCALL_DEFINE5() argument
66 if (call >> 16) in SYSCALL_DEFINE5()
76 return sys_ipc(call, first, second, third, ptr, third); in SYSCALL_DEFINE5()
/linux-4.4.14/arch/x86/realmode/rm/
DMakefile41 $(call if_changed,pasyms)
51 $(call if_changed,ld)
57 $(call if_changed,objcopy)
65 $(call if_changed,relocs)
/linux-4.4.14/arch/x86/lguest/
Dboot.c108 static void async_hcall(unsigned long call, unsigned long arg1, in async_hcall() argument
124 hcall(call, arg1, arg2, arg3, arg4); in async_hcall()
126 lguest_data.hcalls[next_call].arg0 = call; in async_hcall()
154 static void lazy_hcall1(unsigned long call, unsigned long arg1) in lazy_hcall1() argument
157 hcall(call, arg1, 0, 0, 0); in lazy_hcall1()
159 async_hcall(call, arg1, 0, 0, 0); in lazy_hcall1()
163 static void lazy_hcall2(unsigned long call, in lazy_hcall2() argument
168 hcall(call, arg1, arg2, 0, 0); in lazy_hcall2()
170 async_hcall(call, arg1, arg2, 0, 0); in lazy_hcall2()
173 static void lazy_hcall3(unsigned long call, in lazy_hcall3() argument
[all …]
/linux-4.4.14/Documentation/infiniband/
Dcore_locking.txt40 are therefore safe to call from any context.
47 the midlayer is also safe to call from any context.
62 example, a consumer may safely call ib_poll_cq() on multiple CPUs
69 same callchain as an ib_device method call. For example, it is not
70 allowed for a low-level driver to call a consumer's completion event
101 must be complete before this call. The device must remain usable
102 until the driver's call to ib_unregister_device() has returned.
104 A low-level driver must call ib_register_device() and
/linux-4.4.14/Documentation/arm/nwfpe/
DNOTES7 registers f4-f7 to be preserved over a function call. The compiler quite
12 then made a function call. Upon return from the function call the number in
18 result from the function call and f4 were used in a multiplication. If the
28 moved to f4 to preserve it over the log(y) call. The division will be done
/linux-4.4.14/scripts/package/
DMakefile52 $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
92 $(call cmd,src_tar,$(KDEB_SOURCENAME))
94 +$(call cmd,builddeb)
98 +$(call cmd,builddeb)
137 $(call cmd,perf_tar)
/linux-4.4.14/arch/sh/boot/romimage/
DMakefile19 $(call if_changed,ld)
25 $(call if_changed,objcopy)
30 $(call if_changed,ld)
/linux-4.4.14/arch/um/
DMakefile122 CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
123 $(call cc-option, -fno-stack-protector,) \
124 $(call cc-option, -fno-stack-protector-all,)
166 $(call filechk,gen-asm-offsets)
/linux-4.4.14/arch/c6x/lib/
Ddivi.S21 ;; The following registers are call-used:
28 ;; while both divi and remi call into divu.
33 ;; the call to divu.
35 ;; call to divu. It stores B3 in on the stack.
39 call .s2 __c6xabi_divu
Dremi.S21 ;; The following registers are call-used:
28 ;; while both divi and remi call into divu.
33 ;; the call to divu.
35 ;; call to divu. It stores B3 in on the stack.
44 || call .s2 __c6xabi_divu
/linux-4.4.14/arch/hexagon/kernel/
Dhead.S136 call __vmnewmap;
172 call __vmnewmap
177 call __vmsetvec
212 call memset;
222 call start_kernel
Dsyscalltab.c28 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.4.14/Documentation/trace/
Dftrace-design.txt33 The exact mcount symbol name will depend on your toolchain. Some call it
37 call mcount
46 mcount call (before/after function prologue). You might also want to look at
52 so return immediately. If it isn't, then call that function in the same way
55 size of the mcount call that is embedded in the function).
115 function, call the arch-specific function ftrace_graph_caller which in turn
126 That function will simply call the common ftrace_return_to_handler function and
128 original call site.
204 Similarly, when you call ftrace_return_to_handler(), pass it the frame pointer.
226 - If the system call table on this arch is more complicated than a simple array
[all …]
/linux-4.4.14/arch/ia64/kernel/
DMakefile.gate13 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
15 $(call if_changed,gate)
22 $(call if_changed,gate)
Desi_stub.S82 br.call.sptk.many rp=ia64_switch_mode_phys
85 br.call.sptk.many rp=b6 // call the ESI function
90 br.call.sptk.many rp=ia64_switch_mode_virt // return to virtual mode
Defi_stub.S65 br.call.sptk.many rp=ia64_switch_mode_phys
75 br.call.sptk.many rp=b6 // call the EFI function
80 br.call.sptk.many rp=ia64_switch_mode_virt // return to virtual mode
/linux-4.4.14/arch/sparc/lib/
Dmcount.S88 call ftrace_stub
93 call ftrace_stub
110 call prepare_ftrace_return
118 call ftrace_return_to_handler
/linux-4.4.14/arch/score/kernel/
Dsys_call_table.c8 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.4.14/arch/openrisc/kernel/
Dsys_call_table.c24 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.4.14/Documentation/filesystems/
Dautofs4-mount-control.txt155 the number of times to call the expire ioctl. This involves scanning
159 issued for a mount (file handle) we should continually call back to
189 point. It is returned by the open call and is used by all calls except
203 the void function call init_autofs_dev_ioctl(struct autofs_dev_ioctl *).
246 by loaded module. This call requires an initialized struct autofs_dev_ioctl
257 path. The open call requires an initialized struct autofs_dev_ioctl with
261 /proc/mounts. The close call requires an initialized struct
263 from the open call. The release of the file descriptor can also be done
265 The close call is included in the implemented operations largely for
275 call and the arg1 field set to the wait queue token number, received
[all …]
/linux-4.4.14/arch/x86/boot/
DMakefile54 $(call if_changed,cpustr)
71 $(call if_changed,image)
76 $(call if_changed,objcopy)
87 $(call if_changed,voffset)
96 $(call if_changed,zoffset)
104 $(call if_changed,ld)
108 $(call if_changed,objcopy)
/linux-4.4.14/arch/unicore32/kernel/
Dsys.c33 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.4.14/arch/h8300/kernel/
Dsyscalls.c6 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.4.14/arch/arc/kernel/
Dsys.c11 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.4.14/Documentation/ia64/
Dfsys.txt13 execution to the ia64 linux kernel. We call this mode the
80 (fsyscall_table). This table contains one entry for each system call.
81 By default, a system call is handled by fsys_fallback_syscall(). This
83 normal Linux system call handler. For performance-critical system
86 of the getpid() system call.
94 - r15 = system call number
96 - r32-r39 = system call arguments
105 - r15 = system call number (as passed into the fsyscall handler)
106 - r32-r39 = system call arguments (as passed into the fsyscall handler)
116 doing a full system call (by calling fsys_fallback_syscall).
[all …]
/linux-4.4.14/arch/sh/kernel/vsyscall/
DMakefile18 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
24 $(call if_changed,syscall)
36 $(call if_changed,syscall)
/linux-4.4.14/arch/c6x/boot/
DMakefile7 $(call if_changed,objcopy)
10 $(call if_changed,objcopy)
/linux-4.4.14/Documentation/serial/
Ddriver83 This call must not sleep
100 This call must not sleep
117 This call must not sleep
129 This call must not sleep
136 This call must not sleep
142 will append the character to the circular buffer and then call
156 This call must not sleep
167 This call must not sleep
172 should be terminated when another call is made with a zero
177 This call must not sleep
[all …]
/linux-4.4.14/arch/unicore32/boot/compressed/
DMakefile21 $(call cmd,shipped)
30 $(call if_changed,$(suffix_y))
56 $(call if_changed,ld)
/linux-4.4.14/tools/perf/util/intel-pt-decoder/
DBuild7 $(call rule_mkdir)
8 @$(call echo-cmd,gen)$(AWK) -f $(inat_tables_script) $(inat_tables_maps) > $@ || rm -f $@
20 $(call rule_mkdir)
21 $(call if_changed_dep,cc_o_c)
/linux-4.4.14/arch/arm/crypto/
DMakefile18 ifeq ($(call as-instr,.fpu crypto-neon-fp-armv8,y,n),y)
44 $(call cmd,perl)
47 $(call cmd,perl)
50 $(call cmd,perl)
/linux-4.4.14/net/ax25/
Dax25_uid.c83 if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0) { in ax25_uid_ioctl()
112 ax25_uid->call = sax->sax25_call; in ax25_uid_ioctl()
127 if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0) in ax25_uid_ioctl()
179 ax2asc(buf, &pt->call)); in ax25_uid_seq_show()
/linux-4.4.14/Documentation/scheduler/
Dsched-arch.txt13 To request the scheduler call switch_to with the runqueue unlocked,
25 be enabled to call schedule() then disabled again.
32 3. When cpu_idle finds (need_resched() == 'true'), it should call
33 schedule(). It should not call schedule() otherwise.
68 ia64 - is safe_halt call racy vs interrupts? (does it sleep?) (See #4a)
/linux-4.4.14/arch/x86/kernel/acpi/
Dwakeup_32.S75 call save_processor_state
76 call save_registers
78 call x86_acpi_enter_sleep_state

123456