Home
last modified time | relevance | path

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

12345

/linux-4.1.27/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; 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.1.27/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.1.27/tools/
DMakefile39 $(call descend,power/$@)
42 $(call descend,power/$@)
45 $(call descend,$@)
48 $(call descend,lib/lockdep)
51 $(call descend,lib/api)
54 $(call descend,$@)
57 $(call descend,testing/$@)
60 $(call descend,power/x86/$@)
63 $(call descend,thermal/$@)
66 $(call descend,power/$(@:_install=),install)
[all …]
/linux-4.1.27/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.1.27/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.1.27/include/trace/
Dftrace.h180 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
181 struct ftrace_data_offsets_##call { \
305 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
307 ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
312 struct ftrace_raw_##call *field; \
325 static struct trace_event_functions ftrace_event_type_funcs_##call = { \
326 .trace = ftrace_raw_output_##call, \
330 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \ argument
332 ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
341 if (entry->type != event_##call.event.type) { \
[all …]
/linux-4.1.27/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.kasan10 CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \
13 --param asan-instrumentation-with-call-threshold=$(call_threshold))
15 ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),)
DMakefile.modpost90 $(call cmd,modpost) $(wildcard vmlinux)
96 $(call cmd,kernel-mod)
113 $(call if_changed_dep,cc_o_c)
124 $(call if_changed,ld_ko_o)
/linux-4.1.27/kernel/trace/
Dtrace_events.c92 trace_find_event_field(struct ftrace_event_call *call, char *name) in trace_find_event_field() argument
101 head = trace_get_fields(call); in trace_find_event_field()
132 int trace_define_field(struct ftrace_event_call *call, const char *type, in trace_define_field() argument
138 if (WARN_ON(!call->class)) in trace_define_field()
141 head = trace_get_fields(call); in trace_define_field()
169 static void trace_destroy_fields(struct ftrace_event_call *call) in trace_destroy_fields() argument
174 head = trace_get_fields(call); in trace_destroy_fields()
181 int trace_event_raw_init(struct ftrace_event_call *call) in trace_event_raw_init() argument
185 id = register_ftrace_event(&call->event); in trace_event_raw_init()
255 int ftrace_event_reg(struct ftrace_event_call *call, in ftrace_event_reg() argument
[all …]
Dtrace_syscalls.c22 syscall_get_enter_fields(struct ftrace_event_call *call) in syscall_get_enter_fields() argument
24 struct syscall_metadata *entry = call->data; in syscall_get_enter_fields()
222 static int __init set_syscall_print_fmt(struct ftrace_event_call *call) in set_syscall_print_fmt() argument
226 struct syscall_metadata *entry = call->data; in set_syscall_print_fmt()
228 if (entry->enter_event != call) { in set_syscall_print_fmt()
229 call->print_fmt = "\"0x%lx\", REC->ret"; in set_syscall_print_fmt()
242 call->print_fmt = print_fmt; in set_syscall_print_fmt()
247 static void __init free_syscall_print_fmt(struct ftrace_event_call *call) in free_syscall_print_fmt() argument
249 struct syscall_metadata *entry = call->data; in free_syscall_print_fmt()
251 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 ftrace_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 ftrace_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.c308 tk->tp.call.class = &tk->tp.class; in alloc_trace_kprobe()
309 tk->tp.call.name = kstrdup(event, GFP_KERNEL); in alloc_trace_kprobe()
310 if (!tk->tp.call.name) in alloc_trace_kprobe()
326 kfree(tk->tp.call.name); in alloc_trace_kprobe()
339 kfree(tk->tp.call.class->system); in free_trace_kprobe()
340 kfree(tk->tp.call.name); in free_trace_kprobe()
351 if (strcmp(ftrace_event_name(&tk->tp.call), event) == 0 && in find_trace_kprobe()
352 strcmp(tk->tp.call.class->system, group) == 0) in find_trace_kprobe()
526 old_tk = find_trace_kprobe(ftrace_event_name(&tk->tp.call), in register_trace_kprobe()
527 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(ftrace_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(ftrace_event_name(&tu->tp.call), in register_trace_uprobe()
327 tu->tp.call.class->system); in register_trace_uprobe()
[all …]
Dtrace_events_filter.c785 struct ftrace_event_call *call = file->event_call; in filter_disable() local
787 if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) in filter_disable()
788 call->flags &= ~TRACE_EVENT_FL_FILTERED; in filter_disable()
842 struct ftrace_event_call *call = file->event_call; in __remove_filter() local
845 if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) in __remove_filter()
846 remove_filter_string(call->filter); in __remove_filter()
865 struct ftrace_event_call *call = file->event_call; in __free_subsystem_filter() local
867 if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) { in __free_subsystem_filter()
868 __free_filter(call->filter); in __free_subsystem_filter()
869 call->filter = NULL; in __free_subsystem_filter()
[all …]
Dtrace_functions_graph.c281 struct ftrace_event_call *call = &event_funcgraph_entry; in __trace_graph_entry() local
295 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_entry()
396 struct ftrace_event_call *call = &event_funcgraph_exit; in __trace_graph_return() local
410 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_return()
768 struct ftrace_graph_ent *call; in print_graph_entry_leaf() local
773 call = &entry->graph_ent; in print_graph_entry_leaf()
787 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
790 if (call->depth < FTRACE_RETFUNC_DEPTH) in print_graph_entry_leaf()
791 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
798 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
[all …]
/linux-4.1.27/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)
47 biarch := $(call cc-option,-m32)
58 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
62 KBUILD_CFLAGS += $(call cc-ifversion, -lt, 0400, \
63 $(call cc-option,-fno-unit-at-a-time))
81 KBUILD_CFLAGS += $(call cc-option,-mno-80387)
82 KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)
[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.1.27/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.1.27/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)
114 ifeq ($(call get-executable,$(FLEX)),)
118 ifeq ($(call get-executable,$(BISON)),)
139 $(call detected_var,PARSER_DEBUG_BISON)
140 $(call detected_var,PARSER_DEBUG_FLEX)
148 PYTHON2 := $(if $(call get-executable,python2),python2,python)
149 override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
[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.1.27/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.1.27/tools/build/
DMakefile.build48 rule_mkdir = $(if $(wildcard $(dir $@)),,@$(call echo-cmd,mkdir) $(cmd_mkdir))
68 $(call rule_mkdir)
69 $(call if_changed_dep,cc_o_c)
72 $(call rule_mkdir)
73 $(call if_changed_dep,cc_o_c)
76 $(call rule_mkdir)
77 $(call if_changed_dep,cc_i_c)
80 $(call rule_mkdir)
81 $(call if_changed_dep,cc_i_c)
84 $(call rule_mkdir)
[all …]
DMakefile.feature81 $(foreach feat,$(FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
86 $(call feature_check,all,$(MSG))
96 $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat)))
99 $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat)))
146 $(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat)))
156 $(foreach feat,$(FEATURE_DISPLAY),$(call feature_print_status,$(feat),))
159 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
169 $(foreach feat,$(TMP),$(call feature_print_status,$(feat),))
/linux-4.1.27/arch/powerpc/
DMakefile15 HAS_BIARCH := $(call cc-option-yn, -m32)
77 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect)
79 ifeq ($(call cc-option-yn,-mbig-endian),y)
101 ifeq ($(call cc-option-yn,-mcmodel=medium),y)
118 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2,-mcall-aixdesc)
119 AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2)
123 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,-mminimal-toc)
124 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions)
128 CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power7,-mtune=power4)
133 CFLAGS-$(CONFIG_CELL_CPU) += $(call cc-option,-mcpu=cell)
[all …]
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/lib/raid6/
DMakefile39 $(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)
88 $(call if_changed,unroll)
[all …]
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.fuc59 */ call(nv_wr32)
84 #define tpc_strand_wait() call(tpc_strand_wait)
169 call(nv_rd32)
199 call(mmctx_size)
206 call(mmctx_size)
216 call(mmctx_size)
235 call(strand_ctx_init)
254 call(nv_rd32)
260 call(nv_wr32)
263 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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/arch/x86/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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 …]
Dentry_64.S91 call debug_stack_set_zero
93 call debug_stack_reset
97 call debug_stack_set_zero
99 call debug_stack_reset
260 call *sys_call_table(,%rax,8)
316 call syscall_trace_enter_phase1
328 call syscall_trace_enter_phase2
345 call *sys_call_table(,%rax,8)
394 call syscall_trace_leave
404 call do_notify_resume
[all …]
Dentry_32.S293 call schedule_tail
305 call schedule_tail
311 call *PT_EBX(%esp)
385 * enough kernel state to call TRACE_IRQS_OFF can be called - but
430 call *sys_call_table(,%eax,4)
458 call __audit_syscall_entry
473 call __audit_syscall_exit
492 # system call handler stub
631 call do_notify_resume
638 call save_v86_state # %eax contains pt_regs pointer
[all …]
Dmcount_64.S166 call ftrace_stub
223 call ftrace_stub
281 call *ftrace_trace_function
304 call prepare_ftrace_return
319 call ftrace_return_to_handler
/linux-4.1.27/security/tomoyo/
DMakefile10 …policy = ($(call do_policy,profile); $(call do_policy,exception_policy); $(call do_policy,domain_…
13 $(call if_changed,policy)
/linux-4.1.27/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.1.27/tools/perf/util/
DBuild103 $(call rule_mkdir)
104 …@$(call echo-cmd,flex)$(FLEX) -o $@ --header-file=$(OUTPUT)util/parse-events-flex.h $(PARSER_DEBUG…
107 $(call rule_mkdir)
108 …@$(call echo-cmd,bison)$(BISON) -v util/parse-events.y -d $(PARSER_DEBUG_BISON) -o $@ -p parse_eve…
111 $(call rule_mkdir)
112 @$(call echo-cmd,flex)$(FLEX) -o $@ --header-file=$(OUTPUT)util/pmu-flex.h util/pmu.l
115 $(call rule_mkdir)
116 @$(call echo-cmd,bison)$(BISON) -v util/pmu.y -d -o $@ -p perf_pmu_
132 $(call rule_mkdir)
133 $(call if_changed_dep,cc_o_c)
[all …]
/linux-4.1.27/arch/tile/kernel/vdso/
DMakefile46 $(call if_changed,vdsold)
57 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
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=sysv)
118 $(call if_changed,vdsold)
/linux-4.1.27/tools/lib/traceevent/
DMakefile24 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
25 $(call allow-override,AR,$(CROSS_COMPILE)ar)
194 ($(call make_version.h, $@.tmp); \
204 $(Q)$(N)$(call update_version.h)
237 $(call do_install,$$plugin,$(plugin_dir_SQ)); \
242 $(call QUIET_INSTALL, $(LIB_FILE)) \
243 $(call do_install,$(LIB_FILE),$(bindir_SQ))
246 $(call QUIET_INSTALL, trace_plugins) \
247 $(call do_install_plugins, $(PLUGINS))
252 $(call QUIET_CLEAN, libtraceevent) \
/linux-4.1.27/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.1.27/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.1.27/arch/arm/
DMakefile27 KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
36 KBUILD_CFLAGS += $(call cc-option,-mno-unaligned-access)
59 KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra)
66 arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$…
67 arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(c…
71 arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(…
73 arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t)
87 tune-$(CONFIG_CPU_ARM946E) =$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi)
95 tune-$(CONFIG_CPU_XSCALE) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
96 tune-$(CONFIG_CPU_XSC3) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
[all …]
/linux-4.1.27/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.1.27/Documentation/DocBook/
DMakefile53 $(call build_main_index)
54 $(call build_images)
55 $(call install_media_images)
93 $(call if_changed_rule,docproc)
123 $(call cmd,db2ps)
128 $(call cmd,db2pdf)
148 $(call cmd,db2html)
159 $(call cmd,db2man)
171 $(call cmd,fig2eps)
180 $(call cmd,fig2png)
[all …]
/linux-4.1.27/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.1.27/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.1.27/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.1.27/
DMakefile612 KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,)
615 KBUILD_CFLAGS += -Os $(call cc-disable-warning,maybe-uninitialized,)
621 KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0)
628 KBUILD_CFLAGS += $(call cc-option,-fno-reorder-blocks,) \
629 $(call cc-option,-fno-ipa-cp-clone,) \
630 $(call cc-option,-fno-partial-inlining)
634 KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
656 ifeq ($(call cc-option, $(stackp-flag)),)
663 ifeq ($(call cc-option, $(stackp-flag)),)
669 stackp-flag := $(call cc-option, -fno-stack-protector)
[all …]
DKbuild44 $(call if_changed_dep,cc_s_c)
47 $(call filechk,offsets,__LINUX_BOUNDS_H__)
62 $(call if_changed_dep,cc_s_c)
65 $(call filechk,offsets,__ASM_OFFSETS_H__)
78 $(call cmd,syscalls)
/linux-4.1.27/arch/arm64/kernel/vdso/
DMakefile16 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
31 $(call if_changed,vdsold)
36 $(call if_changed,objcopy)
47 $(call if_changed,vdsosym)
51 $(call if_changed_dep,vdsoas)
65 $(call cmd,vdso_install)
/linux-4.1.27/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.1.27/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.1.27/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; \
Dcontext_tracking.h5 # define SCHEDULE_USER call schedule_user
7 # define SCHEDULE_USER call schedule
/linux-4.1.27/arch/x86/vdso/
DMakefile52 $(call if_changed,vdso)
63 $(call if_changed,vdso2c)
70 $(filter -g%,$(KBUILD_CFLAGS)) $(call cc-option, -fno-stack-protector) \
114 $(call if_changed,x32)
120 $(call if_changed,objcopy)
123 $(call if_changed,vdso)
156 KBUILD_CFLAGS_32 += $(call cc-option, -fno-stack-protector)
157 KBUILD_CFLAGS_32 += $(call cc-option, -foptimize-sibling-calls)
167 $(call if_changed,vdso)
178 VDSO_LDFLAGS = -fPIC -shared $(call cc-ldoption, -Wl$(comma)--hash-style=sysv) \
[all …]
/linux-4.1.27/arch/sparc/kernel/
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 …]
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
601 call generic_patch_copyops
603 call generic_patch_bzero
[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
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
169 call syscall_trace_enter
200 5: call %l7 ! CTI Group brk forced
224 2: call %l7 ! CTI Group brk forced
[all …]
Dmisctrap.S19 call do_privact
47 call mem_address_unaligned
66 call handle_lddfmna
85 call handle_stdfmna
93 call sparc_breakpoint
Dwinfixup.S33 call do_sparc64_fault
103 call do_sparc64_fault
125 call sun4v_do_mna
130 call mem_address_unaligned
153 call sun4v_data_access_exception
156 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 …]
Dftrace.c16 u32 call; in ftrace_call_replace() local
20 call = 0x40000000 | ((u32)off >> 2); in ftrace_call_replace()
22 return call; in ftrace_call_replace()
Dspiterrs.S96 call trace_hardirqs_off
101 call spitfire_access_error
180 call spitfire_data_access_exception_tl1
201 call spitfire_data_access_exception
221 call spitfire_insn_access_exception_tl1
241 call spitfire_insn_access_exception
Dsun4v_tlb_miss.S219 call sun4v_itlb_error_report
246 call sun4v_dtlb_error_report
270 call sun4v_insn_access_exception
286 call sun4v_insn_access_exception_tl1
302 call sun4v_data_access_exception
318 call sun4v_data_access_exception_tl1
352 call sun4v_do_mna
360 call do_privact
376 call handle_lddfmna
392 call handle_stdfmna
/linux-4.1.27/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.1.27/arch/powerpc/kernel/vdso64/
DMakefile14 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
26 $(call if_changed,vdso64ld)
31 $(call if_changed,objcopy)
35 $(call if_changed_dep,vdso64as)
49 $(call cmd,vdso_install)
/linux-4.1.27/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.1.27/arch/powerpc/kernel/vdso32/
DMakefile21 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
33 $(call if_changed,vdso32ld)
38 $(call if_changed,objcopy)
42 $(call if_changed_dep,vdso32as)
56 $(call cmd,vdso_install)
/linux-4.1.27/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.1.27/arch/s390/kernel/vdso32/
DMakefile16 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
33 $(call if_changed,vdso32ld)
38 $(call if_changed,objcopy)
42 $(call if_changed_dep,vdso32as)
56 $(call cmd,vdso_install)
/linux-4.1.27/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.1.27/arch/s390/kernel/vdso64/
DMakefile16 $(call cc-ldoption, -Wl$(comma)--hash-style=sysv)
33 $(call if_changed,vdso64ld)
38 $(call if_changed,objcopy)
42 $(call if_changed_dep,vdso64as)
56 $(call cmd,vdso_install)
/linux-4.1.27/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.1.27/tools/perf/
DMakefile.perf183 python-clean := $(call QUIET_CLEAN, python) $(RM) -r $(PYTHON_EXTBUILD) $(OUTPUT)python/perf.so
244 $(call QUIET_INSTALL, 'GTK UI') \
377 $(call QUIET_CLEAN, libtraceevent)
387 $(call QUIET_CLEAN, libapi)
466 $(call QUIET_INSTALL, binaries) \
471 $(call QUIET_INSTALL, perf-read-vdso32) \
475 $(call QUIET_INSTALL, perf-read-vdsox32) \
478 $(call QUIET_INSTALL, libexec) \
480 $(call QUIET_INSTALL, perf-archive) \
482 $(call QUIET_INSTALL, perf-with-kcore) \
[all …]
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/arch/arm/boot/compressed/
DMakefile87 $(call cmd,shipped)
138 $(call cmd,shipped)
144 $(call cmd,shipped)
150 $(call cmd,shipped)
176 $(call if_changed,ld)
180 $(call if_changed,$(suffix_y))
187 $(call cmd,shipped)
190 $(call cmd,shipped)
/linux-4.1.27/include/linux/
Dftrace_event.h225 int ftrace_event_define_field(struct ftrace_event_call *call,
244 int ftrace_event_define_field(struct ftrace_event_call *call,
318 ftrace_event_name(struct ftrace_event_call *call) in ftrace_event_name() argument
320 if (call->flags & TRACE_EVENT_FL_TRACEPOINT) in ftrace_event_name()
321 return call->tp ? call->tp->name : NULL; in ftrace_event_name()
323 return call->name; in ftrace_event_name()
431 extern int call_filter_check_discard(struct ftrace_event_call *call, void *rec,
573 extern int trace_event_raw_init(struct ftrace_event_call *call);
574 extern int trace_define_field(struct ftrace_event_call *call, const char *type,
577 extern int trace_add_event_call(struct ftrace_event_call *call);
[all …]
/linux-4.1.27/tools/perf/tests/
Dmake93 ifneq ($(call has,ctags),)
96 ifneq ($(call has,cscope),)
153 test_make_install := $(call test_dest_files,$(installed_files_all))
154 test_make_install_O := $(call test_dest_files,$(installed_files_all))
155 test_make_install_bin := $(call test_dest_files,$(installed_files_bin))
156 test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin))
201 $(call clean)
206 echo " test: $(call test,$@)" >> $@ 2>&1; \
207 $(call test,$@) && \
211 $(call clean)
[all …]
/linux-4.1.27/arch/sparc/prom/
Dcif.S21 call %l2
37 call prom_world
40 call %l2
43 call prom_world
/linux-4.1.27/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.1.27/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.1.27/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.1.27/arch/mips/loongson/
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.1.27/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)
144 $(Q)$(call do_install,$(LIB_FILE),$(libdir_SQ))
145 $(Q)$(call do_install,$(BIN_FILE),$(bindir_SQ))
/linux-4.1.27/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.1.27/arch/s390/
DMakefile56 ifeq ($(call cc-option-yn,-mkernel-backchain),y)
62 ifeq ($(call cc-option-yn,-mpacked-stack),y)
67 ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
69 ifneq ($(call cc-option-yn,-mstack-size=8192),y)
74 ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
81 ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
/linux-4.1.27/arch/um/os-Linux/
Dmain.c44 initcall_t *call; in do_uml_initcalls() local
46 call = &__uml_initcall_start; in do_uml_initcalls()
47 while (call < &__uml_initcall_end) { in do_uml_initcalls()
48 (*call)(); in do_uml_initcalls()
49 call++; in do_uml_initcalls()
/linux-4.1.27/arch/unicore32/boot/
DMakefile17 $(call if_changed,objcopy)
24 $(call if_changed,objcopy)
31 $(call if_changed,uimage)
/linux-4.1.27/arch/x86/lib/
Drwsem.S92 call rwsem_down_read_failed
103 call rwsem_down_write_failed
116 call rwsem_wake
127 call rwsem_downgrade_wake
/linux-4.1.27/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.1.27/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.1.27/arch/ia64/kernel/
DMakefile82 $(call if_changed_dep,cc_s_c)
86 $(call cmd,nr_irqs)
97 $(foreach obj,$(ASM_PARAVIRT_OBJS),$(eval $(call paravirtualized_native,$(obj))))
108 $(call if_changed_dep,as_s_S)
110 $(call if_changed,pv_check_sed)
112 $(call if_changed,as_o_S)
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
Dpal.S117 br.call.sptk.many rp=b7 // now make the call
176 br.call.sptk.many rp=ia64_switch_mode_phys
186 br.call.sptk.many rp=ia64_switch_mode_virt // return to virtual mode
228 br.call.sptk.many rp=ia64_switch_mode_phys
237 br.call.sptk.many rp=b7 // now make the call
243 br.call.sptk.many rp=ia64_switch_mode_virt // return to virtual mode
/linux-4.1.27/arch/mips/sgi-ip27/
Dip27-irq.c189 int resched, call; in install_ipi() local
196 call = CPU_CALL_A_IRQ + slice; in install_ipi()
197 __set_bit(call, hub->irq_alloc_mask); in install_ipi()
198 __set_bit(call, si->irq_enable_mask); in install_ipi()
199 LOCAL_HUB_CLR_INTR(call); in install_ipi()
/linux-4.1.27/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 …]
DREADME.diversion44 The i4l diversion services offers call forwarding and logging normally
54 call forwarding which is not preprogrammed inside the providers exchange
59 to the call.
65 direct divert or delayed divert of a call.
68 is selected the call will be held in a proceeding state (without ringing)
70 how to handle the call.
86 enables the feature CF (call forwarding). This should work on both MSN- and
118 If a call is reported as proceeding an external program or client may
120 to do with that call.
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/arch/sh/boot/romimage/
DMakefile19 $(call if_changed,ld)
25 $(call if_changed,objcopy)
30 $(call if_changed,ld)
/linux-4.1.27/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.1.27/arch/um/
DMakefile121 CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
122 $(call cc-option, -fno-stack-protector,) \
123 $(call cc-option, -fno-stack-protector-all,)
165 $(call filechk,gen-asm-offsets)
/linux-4.1.27/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.1.27/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.1.27/drivers/firmware/efi/libstub/
DMakefile18 $(call cc-option,-ffreestanding) \
19 $(call cc-option,-fno-stack-protector)
41 $(call if_changed,objcopy)
/linux-4.1.27/arch/score/kernel/
Dsys_call_table.c8 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.1.27/arch/openrisc/kernel/
Dsys_call_table.c24 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.1.27/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.1.27/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.1.27/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.1.27/arch/unicore32/kernel/
Dsys.c33 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.1.27/arch/arc/kernel/
Dsys.c11 #define __SYSCALL(nr, call) [nr] = (call), argument
/linux-4.1.27/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.1.27/Documentation/
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.1.27/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.1.27/arch/c6x/boot/
DMakefile7 $(call if_changed,objcopy)
10 $(call if_changed,objcopy)
/linux-4.1.27/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.1.27/arch/x86/ia32/
Dia32entry.S182 call *ia32_sys_call_table(,%rax,8)
249 call __audit_syscall_entry
271 call __audit_syscall_exit
305 call syscall_trace_enter
405 call *ia32_sys_call_table(,%rax,8)
462 call syscall_trace_enter
544 call *ia32_sys_call_table(,%rax,8) # xxx: rip relative
556 call syscall_trace_enter
608 call *%rax
/linux-4.1.27/arch/unicore32/boot/compressed/
DMakefile21 $(call cmd,shipped)
30 $(call if_changed,$(suffix_y))
56 $(call if_changed,ld)
/linux-4.1.27/net/ax25/
Dax25_uid.c84 if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0) { in ax25_uid_ioctl()
113 ax25_uid->call = sax->sax25_call; in ax25_uid_ioctl()
128 if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0) in ax25_uid_ioctl()
180 ax2asc(buf, &pt->call)); in ax25_uid_seq_show()
/linux-4.1.27/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.1.27/arch/x86/kernel/acpi/
Dwakeup_32.S73 call save_processor_state
74 call save_registers
76 call x86_acpi_enter_sleep_state
/linux-4.1.27/arch/mn10300/boot/
DMakefile21 $(call if_changed,objcopy)
25 $(call if_changed,objcopy)
/linux-4.1.27/Documentation/filesystems/nfs/
Didmapper.txt8 ways NFS could obtain this information: placing a call to /sbin/request-key
9 or by placing a call to the rpc.idmap daemon.
11 NFS will attempt to call /sbin/request-key first. If this succeeds, the
12 result will be cached using the generic request-key cache. This call should
17 If the call to /sbin/request-key fails (if /etc/request-key.conf is not
71 determines the correct function to call by looking at the first part of the
/linux-4.1.27/scripts/coccinelle/api/
Dd_find_alias.cocci1 /// Make sure calls to d_find_alias() have a corresponding call to dput().
60 cocci.print_main("Missing call to dput()",p1)
79 msg = "Missing call to dput() at line %s."
/linux-4.1.27/arch/arm64/boot/
DMakefile20 $(call if_changed,objcopy)
23 $(call if_changed,gzip)
/linux-4.1.27/arch/powerpc/boot/
DMakefile33 BOOTCFLAGS += $(call cc-option,-mabi=elfv2)
42 ifeq ($(call cc-option-yn, -fstack-protector),y)
138 $(call cmd,copy_zlib)
141 $(call cmd,copy_zlibheader)
144 $(call cmd,copy_zliblinuxheader)
150 $(call cmd,copy_libfdt)
176 $(call if_changed_dep,bootcc)
179 $(call if_changed_dep,bootcc)
182 $(call if_changed_dep,bootas)
185 $(call if_changed,bootar)
/linux-4.1.27/arch/nios2/boot/compressed/
DMakefile13 $(call if_changed,ld)
19 $(call if_changed,ld)
/linux-4.1.27/arch/mips/netlogic/
DPlatform10 cflags-$(CONFIG_CPU_XLR) += $(call cc-option,-march=xlr,-march=mips64)
11 cflags-$(CONFIG_CPU_XLP) += $(call cc-option,-march=xlp,-march=mips64r2)
/linux-4.1.27/arch/s390/boot/
DMakefile16 $(call if_changed,objcopy)
19 $(call if_changed,objcopy)
/linux-4.1.27/arch/c6x/kernel/
Dsys_c6x.c51 #define __SYSCALL(nr, call) [nr] = (call), argument

12345