Searched defs:sp (Results 1 - 10 of 10) sorted by relevance

/include/linux/
H A Dsrcu.h67 int __init_srcu_struct(struct srcu_struct *sp, const char *name,
70 #define init_srcu_struct(sp) \
74 __init_srcu_struct((sp), #sp, &__srcu_key); \
80 int init_srcu_struct(struct srcu_struct *sp);
115 * @sp: srcu_struct in queue the callback
130 void call_srcu(struct srcu_struct *sp, struct rcu_head *head,
133 void cleanup_srcu_struct(struct srcu_struct *sp);
134 int __srcu_read_lock(struct srcu_struct *sp) __acquires(sp); variable
135 void __srcu_read_unlock(struct srcu_struct *sp, int idx) __releases(sp); variable
158 srcu_read_lock_held(struct srcu_struct *sp) argument
167 srcu_read_lock_held(struct srcu_struct *sp) argument
[all...]
H A Dmempolicy.h129 void mpol_shared_policy_init(struct shared_policy *sp, struct mempolicy *mpol);
134 struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp,
222 static inline void mpol_shared_policy_init(struct shared_policy *sp, argument
H A Dpe.h35 uint16_t sp; /* initial %sp register */ member in struct:mz_hdr
H A Dskbuff.h447 * @sp: the security path, used for xfrm
530 struct sec_path *sp; member in struct:sk_buff
3156 !skb->sp &&
3201 return skb->sp;
H A Dsched.h325 extern void show_stack(struct task_struct *task, unsigned long *sp);
2376 static inline int on_sig_stack(unsigned long sp) argument
2379 return sp >= current->sas_ss_sp &&
2380 sp - current->sas_ss_sp < current->sas_ss_size;
2382 return sp > current->sas_ss_sp &&
2383 sp - current->sas_ss_sp <= current->sas_ss_size;
2387 static inline int sas_ss_flags(unsigned long sp) argument
2392 return on_sig_stack(sp) ? SS_ONSTACK : 0;
2395 static inline unsigned long sigsp(unsigned long sp, struct ksignal *ksig) argument
2397 if (unlikely((ksig->ka.sa.sa_flags & SA_ONSTACK)) && ! sas_ss_flags(sp))
[all...]
/include/linux/ceph/
H A Ddecode.h109 void *sp = *p; local
112 ceph_decode_32_safe(&sp, end, len, bad);
113 if (!ceph_has_room(&sp, end, len))
121 memcpy(buf, sp, len);
/include/scsi/
H A Dfc_encode.h568 struct fc_els_csp *sp; local
577 sp = &flogi->fl_csp;
578 sp->sp_hi_ver = 0x20;
579 sp->sp_lo_ver = 0x20;
580 sp->sp_bb_cred = htons(10); /* this gets set by gateway */
581 sp->sp_bb_data = htons((u16) lport->mfs);
585 sp->sp_features = htons(FC_SP_FT_NPIV);
593 struct fc_els_csp *sp; local
602 sp = &fdisc->fl_csp;
603 sp
[all...]
/include/net/sctp/
H A Dsctp.h408 struct sctp_sock *sp = sctp_sk(asoc->base.sk); local
411 frag -= sp->pf->af->net_header_len;
H A Dstructs.h235 static inline struct sock *sctp_opt2sk(const struct sctp_sock *sp) argument
237 return (struct sock *)sp;
/include/net/
H A Dxfrm.h991 return skb->sp != NULL;
998 secpath_get(struct sec_path *sp) argument
1000 if (sp)
1001 atomic_inc(&sp->refcnt);
1002 return sp;
1005 void __secpath_destroy(struct sec_path *sp);
1008 secpath_put(struct sec_path *sp) argument
1010 if (sp && atomic_dec_and_test(&sp->refcnt))
1011 __secpath_destroy(sp);
[all...]

Completed in 233 milliseconds