Home
last modified time | relevance | path

Searched defs:sp (Results 1 – 25 of 61) sorted by relevance

123

/linux-4.19.296/include/linux/
Dsrcu.h44 #define init_srcu_struct(sp) \ argument
84 static inline void cleanup_srcu_struct(struct srcu_struct *sp) in cleanup_srcu_struct()
106 static inline void cleanup_srcu_struct_quiesced(struct srcu_struct *sp) in cleanup_srcu_struct_quiesced()
129 static inline int srcu_read_lock_held(const struct srcu_struct *sp) in srcu_read_lock_held()
138 static inline int srcu_read_lock_held(const struct srcu_struct *sp) in srcu_read_lock_held()
157 #define srcu_dereference_check(p, sp, c) \ argument
170 #define srcu_dereference(p, sp) srcu_dereference_check((p), (sp), 0) argument
175 #define srcu_dereference_notrace(p, sp) srcu_dereference_check((p), (sp), 1) argument
194 static inline int srcu_read_lock(struct srcu_struct *sp) __acquires(sp) in srcu_read_lock()
205 srcu_read_lock_notrace(struct srcu_struct *sp) __acquires(sp) in srcu_read_lock_notrace()
[all …]
Dsrcutiny.h71 static inline int __srcu_read_lock(struct srcu_struct *sp) in __srcu_read_lock()
80 static inline void synchronize_srcu_expedited(struct srcu_struct *sp) in synchronize_srcu_expedited()
85 static inline void srcu_barrier(struct srcu_struct *sp) in srcu_barrier()
91 static inline void srcu_torture_stats_print(struct srcu_struct *sp, in srcu_torture_stats_print()
Dmempolicy.h231 static inline void mpol_shared_policy_init(struct shared_policy *sp, in mpol_shared_policy_init()
241 mpol_shared_policy_lookup(struct shared_policy *sp, unsigned long idx) in mpol_shared_policy_lookup()
/linux-4.19.296/drivers/misc/ibmasm/
Dcommand.c34 struct command *ibmasm_new_command(struct service_processor *sp, size_t buffer_size) in ibmasm_new_command()
77 static void enqueue_command(struct service_processor *sp, struct command *cmd) in enqueue_command()
82 static struct command *dequeue_command(struct service_processor *sp) in dequeue_command()
97 static inline void do_exec_command(struct service_processor *sp) in do_exec_command()
119 void ibmasm_exec_command(struct service_processor *sp, struct command *cmd) in ibmasm_exec_command()
139 static void exec_next_command(struct service_processor *sp) in exec_next_command()
175 void ibmasm_receive_command_response(struct service_processor *sp, void *response, size_t size) in ibmasm_receive_command_response()
Devent.c40 static void wake_up_event_readers(struct service_processor *sp) in wake_up_event_readers()
57 void ibmasm_receive_event(struct service_processor *sp, void *data, unsigned int data_size) in ibmasm_receive_event()
91 int ibmasm_get_next_event(struct service_processor *sp, struct event_reader *reader) in ibmasm_get_next_event()
130 void ibmasm_event_reader_register(struct service_processor *sp, struct event_reader *reader) in ibmasm_event_reader_register()
141 void ibmasm_event_reader_unregister(struct service_processor *sp, struct event_reader *reader) in ibmasm_event_reader_unregister()
150 int ibmasm_event_buffer_init(struct service_processor *sp) in ibmasm_event_buffer_init()
174 void ibmasm_event_buffer_exit(struct service_processor *sp) in ibmasm_event_buffer_exit()
Dremote.h88 #define mouse_addr(sp) (sp->base_address + CONDOR_MOUSE_DATA) argument
89 #define display_width(sp) (mouse_addr(sp) + CONDOR_INPUT_DISPLAY_RESX) argument
90 #define display_height(sp) (mouse_addr(sp) + CONDOR_INPUT_DISPLAY_RESY) argument
91 #define display_depth(sp) (mouse_addr(sp) + CONDOR_INPUT_DISPLAY_BITS) argument
92 #define desktop_info(sp) (mouse_addr(sp) + CONDOR_INPUT_DESKTOP_INFO) argument
93 #define vnc_status(sp) (mouse_addr(sp) + CONDOR_OUTPUT_VNC_STATUS) argument
94 #define isr_control(sp) (mouse_addr(sp) + CONDOR_MOUSE_ISR_CONTROL) argument
96 #define mouse_interrupt_pending(sp) readl(mouse_addr(sp) + CONDOR_MOUSE_ISR_STATUS) argument
97 #define clear_mouse_interrupt(sp) writel(0, mouse_addr(sp) + CONDOR_MOUSE_ISR_STATUS) argument
98 #define enable_mouse_interrupts(sp) writel(1, mouse_addr(sp) + CONDOR_MOUSE_ISR_CONTROL) argument
[all …]
Dheartbeat.c65 int ibmasm_heartbeat_init(struct service_processor *sp) in ibmasm_heartbeat_init()
74 void ibmasm_heartbeat_exit(struct service_processor *sp) in ibmasm_heartbeat_exit()
85 void ibmasm_receive_heartbeat(struct service_processor *sp, void *message, size_t size) in ibmasm_receive_heartbeat()
Ddot_command.c31 void ibmasm_receive_message(struct service_processor *sp, void *message, int message_size) in ibmasm_receive_message()
68 int ibmasm_send_driver_vpd(struct service_processor *sp) in ibmasm_send_driver_vpd()
124 int ibmasm_send_os_state(struct service_processor *sp, int os_state) in ibmasm_send_os_state()
Duart.c34 void ibmasm_register_uart(struct service_processor *sp) in ibmasm_register_uart()
65 void ibmasm_unregister_uart(struct service_processor *sp) in ibmasm_unregister_uart()
Dremote.c184 void ibmasm_handle_mouse_interrupt(struct service_processor *sp) in ibmasm_handle_mouse_interrupt()
210 int ibmasm_init_remote_input_dev(struct service_processor *sp) in ibmasm_init_remote_input_dev()
276 void ibmasm_free_remote_input_dev(struct service_processor *sp) in ibmasm_free_remote_input_dev()
Dlowlevel.c33 int ibmasm_send_i2o_message(struct service_processor *sp) in ibmasm_send_i2o_message()
60 struct service_processor *sp = (struct service_processor *)dev_id; in ibmasm_interrupt_handler() local
Dmodule.c68 struct service_processor *sp; in ibmasm_init_one() local
170 struct service_processor *sp = pci_get_drvdata(pdev); in ibmasm_remove_one() local
Dr_heartbeat.c49 void ibmasm_init_reverse_heartbeat(struct service_processor *sp, struct reverse_heartbeat *rhb) in ibmasm_init_reverse_heartbeat()
61 int ibmasm_start_reverse_heartbeat(struct service_processor *sp, struct reverse_heartbeat *rhb) in ibmasm_start_reverse_heartbeat()
Dibmasmfs.c211 void ibmasmfs_add_sp(struct service_processor *sp) in ibmasmfs_add_sp()
218 struct service_processor *sp; member
224 struct service_processor *sp; member
231 struct service_processor *sp; member
345 struct service_processor *sp; in event_file_open() local
377 struct service_processor *sp = event_data->sp; in event_file_read() local
586 struct service_processor *sp; in ibmasmfs_create_files() local
Dibmasm.h221 #define ibmasm_register_uart(sp) do { } while(0) argument
222 #define ibmasm_unregister_uart(sp) do { } while(0) argument
/linux-4.19.296/lib/
Dsyscall.c10 unsigned long *sp, unsigned long *pc) in collect_syscall()
66 unsigned long *sp, unsigned long *pc) in task_current_syscall()
/linux-4.19.296/fs/nfs/
Dnfs4state.c200 struct nfs4_state_owner *sp; in nfs4_get_renew_cred_server_locked() local
421 struct nfs4_state_owner *sp; in nfs4_find_state_owner_locked() local
447 struct nfs4_state_owner *sp; in nfs4_insert_state_owner_locked() local
470 nfs4_remove_state_owner_locked(struct nfs4_state_owner *sp) in nfs4_remove_state_owner_locked()
505 struct nfs4_state_owner *sp; in nfs4_alloc_state_owner() local
529 nfs4_reset_state_owner(struct nfs4_state_owner *sp) in nfs4_reset_state_owner()
543 static void nfs4_free_state_owner(struct nfs4_state_owner *sp) in nfs4_free_state_owner()
554 struct nfs4_state_owner *sp, *tmp; in nfs4_gc_state_owners() local
588 struct nfs4_state_owner *sp, *new; in nfs4_get_state_owner() local
620 void nfs4_put_state_owner(struct nfs4_state_owner *sp) in nfs4_put_state_owner()
[all …]
/linux-4.19.296/include/net/
Dtransp_v6.h50 ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp, __u16 srcp, in ip6_dgram_sock_seq_show()
/linux-4.19.296/fs/xfs/
Dxfs_linux.h106 #define current_set_flags_nested(sp, f) \ argument
108 #define current_clear_flags_nested(sp, f) \ argument
110 #define current_restore_flags_nested(sp, f) \ argument
/linux-4.19.296/fs/dlm/
Dconfig.c422 struct dlm_space *sp = NULL; in make_space() local
450 struct dlm_space *sp = config_item_to_space(i); in drop_space() local
460 struct dlm_space *sp = config_item_to_space(i); in release_space() local
504 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); in make_node() local
526 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); in drop_node() local
751 static void put_space(struct dlm_space *sp) in put_space()
792 struct dlm_space *sp; in dlm_config_nodes() local
/linux-4.19.296/drivers/nvmem/
Drave-sp-eeprom.c68 struct rave_sp *sp; member
290 struct rave_sp *sp = dev_get_drvdata(dev->parent); in rave_sp_eeprom_probe() local
/linux-4.19.296/include/linux/sched/
Dtask.h57 unsigned long clone_flags, unsigned long sp, unsigned long arg, in copy_thread_tls()
/linux-4.19.296/drivers/char/
Ddtlk.c273 struct dtlk_settings *sp; in dtlk_ioctl() local
394 struct dtlk_settings *sp; in dtlk_dev_probe() local
/linux-4.19.296/fs/
Dbinfmt_elf.c142 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items)) argument
143 #define STACK_ROUND(sp, items) \ argument
145 #define STACK_ALLOC(sp, len) ({ \ argument
149 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) - (items)) argument
150 #define STACK_ROUND(sp, items) \ argument
152 #define STACK_ALLOC(sp, len) ({ sp -= len ; sp; }) argument
171 elf_addr_t __user *sp; in create_elf_tables() local
Dbinfmt_flat.c115 unsigned long __user *sp; in create_flat_tables() local
999 unsigned long __user *sp; in load_flat_binary() local

123