| /linux/include/linux/ |
| H A D | srcu.h | 35 #define init_srcu_struct(ssp) \ argument 42 #define init_srcu_struct_fast(ssp) \ argument 49 #define init_srcu_struct_fast_updown(ssp) \ argument 137 static inline int __srcu_read_lock_nmisafe(struct srcu_struct *ssp) in __srcu_read_lock_nmisafe() 141 static inline void __srcu_read_unlock_nmisafe(struct srcu_struct *ssp, int idx) in __srcu_read_unlock_nmisafe() 167 static inline int srcu_read_lock_held(const struct srcu_struct *ssp) in srcu_read_lock_held() 202 static inline int srcu_read_lock_held(const struct srcu_struct *ssp) in srcu_read_lock_held() 226 #define srcu_dereference_check(p, ssp, c) \ argument 240 #define srcu_dereference(p, ssp) srcu_dereference_check((p), (ssp), 0) argument 248 #define srcu_dereference_notrace(p, ssp) srcu_dereference_check((p), (ssp), 1) argument [all …]
|
| H A D | srcutiny.h | 75 static inline int __srcu_read_lock(struct srcu_struct *ssp) in __srcu_read_lock() 88 static inline bool __srcu_ptr_to_ctr(struct srcu_struct *ssp, struct srcu_ctr __percpu *scpp) in __srcu_ptr_to_ctr() 93 static inline struct srcu_ctr __percpu *__srcu_ctr_to_ptr(struct srcu_struct *ssp, int idx) in __srcu_ctr_to_ptr() 98 static inline struct srcu_ctr __percpu *__srcu_read_lock_fast(struct srcu_struct *ssp) in __srcu_read_lock_fast() 103 static inline void __srcu_read_unlock_fast(struct srcu_struct *ssp, struct srcu_ctr __percpu *scp) in __srcu_read_unlock_fast() 108 static inline struct srcu_ctr __percpu *__srcu_read_lock_fast_updown(struct srcu_struct *ssp) in __srcu_read_lock_fast_updown() 114 void __srcu_read_unlock_fast_updown(struct srcu_struct *ssp, struct srcu_ctr __percpu *scp) in __srcu_read_unlock_fast_updown() 119 static inline void synchronize_srcu_expedited(struct srcu_struct *ssp) in synchronize_srcu_expedited() 124 static inline void srcu_barrier(struct srcu_struct *ssp) in srcu_barrier() 129 static inline void srcu_expedite_current(struct srcu_struct *ssp) { } in srcu_expedite_current() [all …]
|
| H A D | srcutree.h | 51 struct srcu_struct *ssp; member 244 static inline bool __srcu_ptr_to_ctr(struct srcu_struct *ssp, struct srcu_ctr __percpu *scpp) in __srcu_ptr_to_ctr() 251 static inline struct srcu_ctr __percpu *__srcu_ctr_to_ptr(struct srcu_struct *ssp, int idx) in __srcu_ctr_to_ptr() 288 static inline struct srcu_ctr __percpu notrace *__srcu_read_lock_fast(struct srcu_struct *ssp) in __srcu_read_lock_fast() 310 __srcu_read_unlock_fast(struct srcu_struct *ssp, struct srcu_ctr __percpu *scp) in __srcu_read_unlock_fast() 328 struct srcu_ctr __percpu notrace *__srcu_read_lock_fast_updown(struct srcu_struct *ssp) in __srcu_read_lock_fast_updown() 350 __srcu_read_unlock_fast_updown(struct srcu_struct *ssp, struct srcu_ctr __percpu *scp) in __srcu_read_unlock_fast_updown() 362 static inline void srcu_check_read_flavor(struct srcu_struct *ssp, int read_flavor) in srcu_check_read_flavor()
|
| H A D | pxa2xx_ssp.h | 275 static inline void pxa_ssp_enable(struct ssp_device *ssp) in pxa_ssp_enable() 283 static inline void pxa_ssp_disable(struct ssp_device *ssp) in pxa_ssp_disable() 306 static inline void pxa_ssp_free(struct ssp_device *ssp) {} in pxa_ssp_free()
|
| /linux/kernel/rcu/ |
| H A D | srcutree.c | 123 static void init_srcu_struct_data(struct srcu_struct *ssp) in init_srcu_struct_data() 164 static bool init_srcu_struct_nodes(struct srcu_struct *ssp, gfp_t gfp_flags) in init_srcu_struct_nodes() 237 static int init_srcu_struct_fields(struct srcu_struct *ssp, bool is_static) in init_srcu_struct_fields() 290 __init_srcu_struct_common(struct srcu_struct *ssp, const char *name, struct lock_class_key *key) in __init_srcu_struct_common() 298 int __init_srcu_struct(struct srcu_struct *ssp, const char *name, struct lock_class_key *key) in __init_srcu_struct() 305 int __init_srcu_struct_fast(struct srcu_struct *ssp, const char *name, struct lock_class_key *key) in __init_srcu_struct_fast() 312 int __init_srcu_struct_fast_updown(struct srcu_struct *ssp, const char *name, in __init_srcu_struct_fast_updown() 333 int init_srcu_struct(struct srcu_struct *ssp) in init_srcu_struct() 350 int init_srcu_struct_fast(struct srcu_struct *ssp) in init_srcu_struct_fast() 368 int init_srcu_struct_fast_updown(struct srcu_struct *ssp) in init_srcu_struct_fast_updown() [all …]
|
| H A D | srcutiny.c | 31 static int init_srcu_struct_fields(struct srcu_struct *ssp) in init_srcu_struct_fields() 49 int __init_srcu_struct(struct srcu_struct *ssp, const char *name, in __init_srcu_struct() 69 int init_srcu_struct(struct srcu_struct *ssp) in init_srcu_struct() 84 void cleanup_srcu_struct(struct srcu_struct *ssp) in cleanup_srcu_struct() 101 void __srcu_read_unlock(struct srcu_struct *ssp, int idx) in __srcu_read_unlock() 124 struct srcu_struct *ssp; in srcu_drive_gp() local 180 static void srcu_gp_start_if_needed(struct srcu_struct *ssp) in srcu_gp_start_if_needed() 202 void call_srcu(struct srcu_struct *ssp, struct rcu_head *rhp, in call_srcu() 222 void synchronize_srcu(struct srcu_struct *ssp) in synchronize_srcu() 249 unsigned long get_state_synchronize_srcu(struct srcu_struct *ssp) in get_state_synchronize_srcu() [all …]
|
| /linux/drivers/tty/serial/ |
| H A D | sifive.c | 227 static void __ssp_writel(u32 v, u16 offs, struct sifive_serial_port *ssp) in __ssp_writel() 244 static u32 __ssp_readl(struct sifive_serial_port *ssp, u16 offs) in __ssp_readl() 260 static int sifive_serial_is_txfifo_full(struct sifive_serial_port *ssp) in sifive_serial_is_txfifo_full() 277 static void __ssp_transmit_char(struct sifive_serial_port *ssp, int ch) in __ssp_transmit_char() 291 static void __ssp_transmit_chars(struct sifive_serial_port *ssp) in __ssp_transmit_chars() 308 static void __ssp_enable_txwm(struct sifive_serial_port *ssp) in __ssp_enable_txwm() 324 static void __ssp_enable_rxwm(struct sifive_serial_port *ssp) in __ssp_enable_rxwm() 340 static void __ssp_disable_txwm(struct sifive_serial_port *ssp) in __ssp_disable_txwm() 356 static void __ssp_disable_rxwm(struct sifive_serial_port *ssp) in __ssp_disable_rxwm() 377 static char __ssp_receive_char(struct sifive_serial_port *ssp, char *is_empty) in __ssp_receive_char() [all …]
|
| /linux/sound/soc/pxa/ |
| H A D | pxa-ssp.c | 39 struct ssp_device *ssp; member 53 static void dump_registers(struct ssp_device *ssp) in dump_registers() 64 static void pxa_ssp_set_dma_params(struct ssp_device *ssp, int width4, in pxa_ssp_set_dma_params() 77 struct ssp_device *ssp = priv->ssp; in pxa_ssp_startup() local 103 struct ssp_device *ssp = priv->ssp; in pxa_ssp_shutdown() local 121 struct ssp_device *ssp = priv->ssp; in pxa_ssp_suspend() local 139 struct ssp_device *ssp = priv->ssp; in pxa_ssp_resume() local 167 static void pxa_ssp_set_scr(struct ssp_device *ssp, u32 div) in pxa_ssp_set_scr() 188 struct ssp_device *ssp = priv->ssp; in pxa_ssp_set_dai_sysclk() local 256 struct ssp_device *ssp = priv->ssp; in pxa_ssp_set_pll() local [all …]
|
| /linux/arch/x86/kernel/ |
| H A D | shstk.c | 50 static int create_rstor_token(unsigned long ssp, unsigned long *token_addr) in create_rstor_token() 238 unsigned long long ssp; in get_user_shstk_addr() local 252 u64 ssp; in shstk_pop() local 271 u64 ssp; in shstk_push() local 320 static int shstk_push_sigframe(unsigned long *ssp) in shstk_push_sigframe() 335 static int shstk_pop_sigframe(unsigned long *ssp) in shstk_pop_sigframe() 390 unsigned long ssp; in setup_signal_shadow_stack() local 423 unsigned long ssp; in restore_signal_shadow_stack() local 623 unsigned long ssp; in shstk_update_last_frame() local
|
| /linux/drivers/spi/ |
| H A D | spi-pxa2xx-platform.c | 22 pxa2xx_spi_init_ssp(struct platform_device *pdev, struct ssp_device *ssp, enum pxa_ssp_type type) in pxa2xx_spi_init_ssp() 55 static void pxa2xx_spi_ssp_release(void *ssp) in pxa2xx_spi_ssp_release() 62 struct ssp_device *ssp; in pxa2xx_spi_ssp_request() local 84 struct ssp_device *ssp; in pxa2xx_spi_init_pdata() local 145 struct ssp_device *ssp; in pxa2xx_spi_platform_probe() local
|
| H A D | spi-pxa2xx-pci.c | 67 static int pxa2xx_spi_pci_clk_register(struct pci_dev *dev, struct ssp_device *ssp, in pxa2xx_spi_pci_clk_register() 98 struct ssp_device *ssp = &c->ssp; in lpss_spi_setup() local 179 struct ssp_device *ssp = &c->ssp; in ce4100_spi_setup() local 194 struct ssp_device *ssp = &c->ssp; in mrfld_spi_setup() local 251 struct ssp_device *ssp = &c->ssp; in qrk_spi_setup() local 270 struct ssp_device *ssp; in pxa2xx_spi_pci_probe() local
|
| H A D | spi-pxa2xx.h | 36 struct ssp_device ssp; member 45 struct ssp_device *ssp; member
|
| /linux/sound/soc/intel/catpt/ |
| H A D | registers.h | 35 #define CATPT_CS_SFCR(ssp) BIT(27 + (ssp)) argument 39 #define CATPT_CS_SDPM(ssp) BIT(11 + (ssp)) argument 44 #define CATPT_CS_SBCS(ssp) BIT(2 + (ssp)) argument 144 #define catpt_ssp_addr(cdev, ssp) \ argument 151 #define catpt_writel_ssp(cdev, ssp, reg, val) \ argument
|
| /linux/arch/arm/mach-sa1100/ |
| H A D | ssp.c | 158 void ssp_save_state(struct ssp_state *ssp) in ssp_save_state() 172 void ssp_restore_state(struct ssp_state *ssp) in ssp_restore_state()
|
| /linux/security/smack/ |
| H A D | smack_lsm.c | 1610 struct socket_smack *ssp; in smack_inode_getsecurity() local 2015 struct socket_smack *ssp; in smack_file_receive() local 2452 struct socket_smack *ssp = smack_sock(sk); in smack_sk_alloc_security() local 2621 struct socket_smack *ssp = smack_sock(sk); in smack_netlbl_add() local 2654 struct socket_smack *ssp = smack_sock(sk); in smack_netlbl_delete() local 2686 struct socket_smack *ssp = smack_sock(sk); in smk_ipv4_check() local 2761 struct socket_smack *ssp = smack_sock(sock->sk); in smk_ipv6_port_label() local 2849 struct socket_smack *ssp = smack_sock(sk); in smk_ipv6_port_check() local 2917 struct socket_smack *ssp; in smack_inode_setsecurity() local 2991 struct socket_smack *ssp; in smack_socket_post_create() local [all …]
|
| H A D | smack_netfilter.c | 26 struct socket_smack *ssp; in smack_ip_output() local
|
| /linux/drivers/clk/mxs/ |
| H A D | clk-ssp.c | 21 void mxs_ssp_set_clk_rate(struct mxs_ssp *ssp, unsigned int rate) in mxs_ssp_set_clk_rate()
|
| /linux/fs/nilfs2/ |
| H A D | segment.c | 389 struct nilfs_segsum_pointer *ssp, in nilfs_segctor_map_segsum_entry() 444 struct nilfs_segsum_pointer *ssp; in nilfs_segctor_zeropad_segsum() local 486 struct nilfs_sc_info *sci, const struct nilfs_segsum_pointer *ssp, in nilfs_segctor_segsum_block_required() 616 struct nilfs_segsum_pointer *ssp, in nilfs_write_file_data_binfo() 625 struct nilfs_segsum_pointer *ssp, in nilfs_write_file_node_binfo() 665 struct nilfs_segsum_pointer *ssp, in nilfs_write_dat_data_binfo() 674 struct nilfs_segsum_pointer *ssp, in nilfs_write_dat_node_binfo() 1605 struct nilfs_segsum_pointer ssp; in nilfs_segctor_update_payload_blocknr() local
|
| /linux/arch/x86/kernel/fpu/ |
| H A D | core.c | 634 static int update_fpu_shstk(struct task_struct *dst, unsigned long ssp) in update_fpu_shstk() 662 unsigned long ssp) in fpu_clone()
|
| /linux/drivers/usb/gadget/ |
| H A D | config.c | 110 struct usb_descriptor_header **ssp) in usb_assign_descriptors()
|
| /linux/arch/arm/boot/dts/arm/ |
| H A D | arm-realview-eb.dtsi | 358 ssp: spi@1000d000 { label
|
| H A D | arm-realview-pbx.dtsi | 349 ssp: spi@1000d000 { label
|
| /linux/sound/soc/intel/avs/ |
| H A D | utils.h | 74 #define AVS_STRING_FMT(prefix, suffix, ssp, tdm) \ argument
|
| /linux/drivers/scsi/isci/ |
| H A D | scu_remote_node_context.h | 220 struct ssp_remote_node_context ssp; member
|
| /linux/tools/testing/selftests/x86/ |
| H A D | test_shadow_stack.c | 135 unsigned long ssp; in try_shstk() local 884 unsigned long saved_ssp, ssp = 0; in test_ptrace() local
|