Home
last modified time | relevance | path

Searched refs:s (Results 1 – 25 of 4789) sorted by relevance

12345678910>>...192

/linux/arch/arm64/crypto/
H A Dsm4-ce-asm.h12 sm4e b0.4s, v24.4s; \
13 sm4e b0.4s, v25.4s; \
14 sm4e b0.4s, v26.4s; \
15 sm4e b0.4s, v27.4s; \
16 sm4e b0.4s, v28.4s; \
17 sm4e b0.4s, v29.4s; \
18 sm4e b0.4s, v30.4s; \
19 sm4e b0.4s, v31.4s; \
20 rev64 b0.4s, b0.4s; \
29 sm4e b0.4s, v24.4s; \
[all …]
/linux/arch/m68k/ifpsp060/
H A DMISC34 freal.s : 2.4
36 x_fovfl.s : 2.16
37 x_funfl.s : 2.19
38 x_funsupp.s : 2.27
39 x_effadd.s : 2.21
40 x_foperr.s : 2.9
41 x_fsnan.s : 2.12
42 x_finex.s : 2.14
43 x_fdz.s : 2.5
44 x_fline.s : 2.5
[all …]
/linux/lib/xz/
H A Dxz_dec_stream.c156 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument
159 b->in_size - b->in_pos, s->temp.size - s->temp.pos); in fill_temp()
161 memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size); in fill_temp()
163 s->temp.pos += copy_size; in fill_temp()
165 if (s->temp.pos == s->temp.size) { in fill_temp()
166 s->temp.pos = 0; in fill_temp()
174 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli() argument
179 if (s->pos == 0) in dec_vli()
180 s->vli = 0; in dec_vli()
186 s->vli |= (vli_type)(byte & 0x7F) << s->pos; in dec_vli()
[all …]
H A Dxz_dec_lzma2.c603 static uint16_t *lzma_literal_probs(struct xz_dec_lzma2 *s) in lzma_literal_probs() argument
605 uint32_t prev_byte = dict_get(&s->dict, 0); in lzma_literal_probs()
606 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs()
607 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; in lzma_literal_probs()
608 return s->lzma.literal[low + high]; in lzma_literal_probs()
612 static void lzma_literal(struct xz_dec_lzma2 *s) in lzma_literal() argument
621 probs = lzma_literal_probs(s); in lzma_literal()
623 if (lzma_state_is_literal(s->lzma.state)) { in lzma_literal()
624 symbol = rc_bittree(&s->rc, probs, 0x100); in lzma_literal()
627 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
[all …]
/linux/arch/mips/cavium-octeon/executive/
H A Dcvmx-interrupt-decodes.c61 gmx_rx_int_en.s.hg2cc = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
62 gmx_rx_int_en.s.hg2fld = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
63 gmx_rx_int_en.s.undat = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
64 gmx_rx_int_en.s.uneop = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
65 gmx_rx_int_en.s.unsop = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
66 gmx_rx_int_en.s.bad_term = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
67 gmx_rx_int_en.s.bad_seq = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
68 gmx_rx_int_en.s.rem_fault = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
69 gmx_rx_int_en.s.loc_fault = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
70 gmx_rx_int_en.s.pause_drp = 1; in __cvmx_interrupt_gmxx_rxx_int_en_enable()
[all …]
/linux/arch/x86/kvm/
H A Di8259.c46 static void pic_lock(struct kvm_pic *s) in pic_lock() argument
47 __acquires(&s->lock) in pic_lock()
49 spin_lock(&s->lock); in pic_lock()
52 static void pic_unlock(struct kvm_pic *s) in pic_unlock() argument
53 __releases(&s->lock) in pic_unlock()
55 bool wakeup = s->wakeup_needed; in pic_unlock()
59 s->wakeup_needed = false; in pic_unlock()
61 spin_unlock(&s->lock); in pic_unlock()
64 kvm_for_each_vcpu(i, vcpu, s->kvm) { in pic_unlock()
74 static void pic_clear_isr(struct kvm_kpic_state *s, int irq) in pic_clear_isr() argument
[all …]
/linux/drivers/media/pci/tw5864/
H A Dtw5864-h264.c31 static void bs_init(struct bs *s, void *buf, int size) in bs_init() argument
33 s->buf = buf; in bs_init()
34 s->ptr = buf; in bs_init()
35 s->buf_end = s->ptr + size; in bs_init()
36 s->bits_left = 8; in bs_init()
39 static int bs_len(struct bs *s) in bs_len() argument
41 return s->ptr - s->buf; in bs_len()
44 static void bs_write(struct bs *s, int count, u32 bits) in bs_write() argument
46 if (s->ptr >= s->buf_end - 4) in bs_write()
51 if (count < s->bits_left) { in bs_write()
[all …]
/linux/kernel/trace/
H A Dtrace_seq.c28 #define TRACE_SEQ_BUF_LEFT(s) seq_buf_buffer_left(&(s)->seq) argument
31 * trace_seq should work with being initialized with 0s.
33 static inline void __trace_seq_init(struct trace_seq *s) in __trace_seq_init() argument
35 if (unlikely(!s->seq.size)) in __trace_seq_init()
36 trace_seq_init(s); in __trace_seq_init()
42 * @s: the trace_seq descriptor that is the source.
48 int trace_print_seq(struct seq_file *m, struct trace_seq *s) in trace_print_seq() argument
52 __trace_seq_init(s); in trace_print_seq()
54 ret = seq_buf_print_seq(m, &s in trace_print_seq()
78 trace_seq_printf(struct trace_seq * s,const char * fmt,...) trace_seq_printf() argument
108 trace_seq_bitmask(struct trace_seq * s,const unsigned long * maskp,int nmaskbits) trace_seq_bitmask() argument
139 trace_seq_vprintf(struct trace_seq * s,const char * fmt,va_list args) trace_seq_vprintf() argument
173 trace_seq_bprintf(struct trace_seq * s,const char * fmt,const u32 * binary) trace_seq_bprintf() argument
203 trace_seq_puts(struct trace_seq * s,const char * str) trace_seq_puts() argument
231 trace_seq_putc(struct trace_seq * s,unsigned char c) trace_seq_putc() argument
257 trace_seq_putmem(struct trace_seq * s,const void * mem,unsigned int len) trace_seq_putmem() argument
283 trace_seq_putmem_hex(struct trace_seq * s,const void * mem,unsigned int len) trace_seq_putmem_hex() argument
322 trace_seq_path(struct trace_seq * s,const struct path * path) trace_seq_path() argument
368 trace_seq_to_user(struct trace_seq * s,char __user * ubuf,int cnt) trace_seq_to_user() argument
379 trace_seq_hex_dump(struct trace_seq * s,const char * prefix_str,int prefix_type,int rowsize,int groupsize,const void * buf,size_t len,bool ascii) trace_seq_hex_dump() argument
421 trace_seq_acquire(struct trace_seq * s,unsigned int len) trace_seq_acquire() argument
[all...]
/linux/lib/zlib_deflate/
H A Ddeftree.c132 static void init_block (deflate_state *s);
133 static void pqdownheap (deflate_state *s, ct_data *tree, int k);
134 static void gen_bitlen (deflate_state *s, tree_desc *desc);
136 static void build_tree (deflate_state *s, tree_desc *desc);
137 static void scan_tree (deflate_state *s, ct_data *tree, int max_code);
138 static void send_tree (deflate_state *s, ct_data *tree, int max_code);
139 static int build_bl_tree (deflate_state *s);
140 static void send_all_trees (deflate_state *s, int lcodes, int dcodes,
142 static void compress_block (deflate_state *s, ct_data *ltree,
144 static void set_data_type (deflate_state *s);
[all …]
/linux/lib/tests/
H A Dseq_buf_kunit.c14 struct seq_buf s; in seq_buf_init_test() local
16 seq_buf_init(&s, buf, sizeof(buf)); in seq_buf_init_test()
18 KUNIT_EXPECT_EQ(test, s.size, 32); in seq_buf_init_test()
19 KUNIT_EXPECT_EQ(test, s.len, 0); in seq_buf_init_test()
20 KUNIT_EXPECT_FALSE(test, seq_buf_has_overflowed(&s)); in seq_buf_init_test()
21 KUNIT_EXPECT_EQ(test, seq_buf_buffer_left(&s), 32); in seq_buf_init_test()
22 KUNIT_EXPECT_EQ(test, seq_buf_used(&s), 0); in seq_buf_init_test()
23 KUNIT_EXPECT_STREQ(test, seq_buf_str(&s), ""); in seq_buf_init_test()
28 DECLARE_SEQ_BUF(s, 24); in seq_buf_declare_test()
30 KUNIT_EXPECT_EQ(test, s.size, 24); in seq_buf_declare_test()
[all …]
/linux/drivers/media/usb/airspy/
H A Dairspy.c160 static int airspy_ctrl_msg(struct airspy *s, u8 request, u16 value, u16 index, in airspy_ctrl_msg() argument
170 pipe = usb_sndctrlpipe(s->udev, 0); in airspy_ctrl_msg()
181 pipe = usb_rcvctrlpipe(s->udev, 0); in airspy_ctrl_msg()
185 dev_err(s->dev, "Unknown command %02x\n", request); in airspy_ctrl_msg()
192 memcpy(s->buf, data, size); in airspy_ctrl_msg()
194 ret = usb_control_msg(s->udev, pipe, request, requesttype, value, in airspy_ctrl_msg()
195 index, s->buf, size, 1000); in airspy_ctrl_msg()
196 airspy_dbg_usb_control_msg(s->dev, request, requesttype, value, in airspy_ctrl_msg()
197 index, s->buf, size); in airspy_ctrl_msg()
199 dev_err(s->dev, "usb_control_msg() failed %d request %02x\n", in airspy_ctrl_msg()
[all …]
/linux/drivers/tty/serial/
H A Dmxs-auart.c458 static inline int is_imx28_auart(struct mxs_auart_port *s) in is_imx28_auart() argument
460 return s->devtype == IMX28_AUART; in is_imx28_auart()
463 static inline int is_asm9260_auart(struct mxs_auart_port *s) in is_asm9260_auart() argument
465 return s->devtype == ASM9260_AUART; in is_asm9260_auart()
468 static inline bool auart_dma_enabled(struct mxs_auart_port *s) in auart_dma_enabled() argument
470 return s->flags & MXS_AUART_DMA_ENABLED; in auart_dma_enabled()
515 static void mxs_auart_tx_chars(struct mxs_auart_port *s);
519 struct mxs_auart_port *s = param; in dma_tx_callback() local
520 struct tty_port *tport = &s->port.state->port; in dma_tx_callback()
522 dma_unmap_sg(s->dev, &s->tx_sgl, 1, DMA_TO_DEVICE); in dma_tx_callback()
[all …]
H A Dmax3100.c123 static int max3100_do_parity(struct max3100_port *s, u16 c) in max3100_do_parity() argument
127 if (s->parity & MAX3100_PARITY_ODD) in max3100_do_parity()
132 if (s->parity & MAX3100_7BIT) in max3100_do_parity()
141 static int max3100_check_parity(struct max3100_port *s, u16 c) in max3100_check_parity() argument
143 return max3100_do_parity(s, c) == ((c >> 8) & 1); in max3100_check_parity()
146 static void max3100_calc_parity(struct max3100_port *s, u16 *c) in max3100_calc_parity() argument
148 if (s->parity & MAX3100_7BIT) in max3100_calc_parity()
153 if (s->parity & MAX3100_PARITY_ON) in max3100_calc_parity()
154 *c |= max3100_do_parity(s, *c) << 8; in max3100_calc_parity()
157 static int max3100_sr(struct max3100_port *s, u16 tx, u16 *rx) in max3100_sr() argument
[all …]
/linux/lib/crypto/arm64/
H A Dchacha-neon-core.S42 ld1 {v12.4s}, [x10]
46 add v0.4s, v0.4s, v1.4s
51 add v2.4s, v2.4s, v3.4s
53 shl v1.4s, v4.4s, #12
54 sri v1.4s, v4.4s, #20
57 add v0.4s, v0.4s, v1.4s
62 add v2.4s, v2.4s, v3.4s
64 shl v1.4s, v4.4s, #7
65 sri v1.4s, v4.4s, #25
75 add v0.4s, v0.4s, v1.4s
[all …]
/linux/drivers/media/pci/cx18/
H A Dcx18-streams.c108 struct cx18_stream *s = vb2_get_drv_priv(vq); in cx18_queue_setup() local
109 struct cx18 *cx = s->cx; in cx18_queue_setup()
116 if (s->pixelformat == V4L2_PIX_FMT_NV12_16L16) in cx18_queue_setup()
141 struct cx18_stream *s = vb2_get_drv_priv(vb->vb2_queue); in cx18_buf_queue() local
147 spin_lock_irqsave(&s->vb_lock, flags); in cx18_buf_queue()
148 list_add_tail(&buf->list, &s->vb_capture); in cx18_buf_queue()
149 spin_unlock_irqrestore(&s->vb_lock, flags); in cx18_buf_queue()
155 struct cx18_stream *s = vb2_get_drv_priv(vb->vb2_queue); in cx18_buf_prepare() local
156 struct cx18 *cx = s->cx; in cx18_buf_prepare()
163 if (s->pixelformat == V4L2_PIX_FMT_NV12_16L16) in cx18_buf_prepare()
[all …]
H A Dcx18-queue.c43 struct cx18_queue *_cx18_enqueue(struct cx18_stream *s, struct cx18_mdl *mdl, in _cx18_enqueue() argument
47 if (q != &s->q_full) { in _cx18_enqueue()
56 if (q == &s->q_busy && in _cx18_enqueue()
58 q = &s->q_free; in _cx18_enqueue()
73 struct cx18_mdl *cx18_dequeue(struct cx18_stream *s, struct cx18_queue *q) in cx18_dequeue() argument
89 static void _cx18_mdl_update_bufs_for_cpu(struct cx18_stream *s, in _cx18_mdl_update_bufs_for_cpu() argument
93 u32 buf_size = s->buf_size; in _cx18_mdl_update_bufs_for_cpu()
105 cx18_buf_sync_for_cpu(s, buf); in _cx18_mdl_update_bufs_for_cpu()
109 static inline void cx18_mdl_update_bufs_for_cpu(struct cx18_stream *s, in cx18_mdl_update_bufs_for_cpu() argument
119 cx18_buf_sync_for_cpu(s, buf); in cx18_mdl_update_bufs_for_cpu()
[all …]
/linux/include/linux/
H A Dseq_buf.h33 static inline void seq_buf_clear(struct seq_buf *s) in seq_buf_clear() argument
35 s->len = 0; in seq_buf_clear()
36 if (s->size) in seq_buf_clear()
37 s->buffer[0] = '\0'; in seq_buf_clear()
41 seq_buf_init(struct seq_buf *s, char *buf, unsigned int size) in seq_buf_init() argument
43 s->buffer = buf; in seq_buf_init()
44 s->size = size; in seq_buf_init()
45 seq_buf_clear(s); in seq_buf_init()
53 seq_buf_has_overflowed(struct seq_buf *s) in seq_buf_has_overflowed() argument
55 return s->len > s->size; in seq_buf_has_overflowed()
[all …]
H A Dseqlock.h42 static inline void __seqcount_init(seqcount_t *s, const char *name, in __seqcount_init()
48 lockdep_init_map(&s->dep_map, name, key, 0); in __seqcount_init()
49 s->sequence = 0; in __seqcount_init()
59 * @s: Pointer to the seqcount_t instance
61 # define seqcount_init(s) \
64 __seqcount_init((s), #s, &__key); \
67 static inline void seqcount_lockdep_reader_access(const seqcount_t *s) in seqcount_lockdep_reader_access()
69 seqcount_t *l = (seqcount_t *)s; in seqcount_lockdep_reader_access()
80 # define seqcount_init(s) __seqcount_ini
41 __seqcount_init(seqcount_t * s,const char * name,struct lock_class_key * key) __seqcount_init() argument
60 seqcount_init(s) global() argument
66 seqcount_lockdep_reader_access(const seqcount_t * s) seqcount_lockdep_reader_access() argument
79 seqcount_init(s) global() argument
123 seqcount_LOCKNAME_init(s,_lock,lockname) global() argument
130 seqcount_raw_spinlock_init(s,lock) global() argument
131 seqcount_spinlock_init(s,lock) global() argument
132 seqcount_rwlock_init(s,lock) global() argument
133 seqcount_mutex_init(s,lock) global() argument
199 __seqprop_ptr(seqcount_t * s) __seqprop_ptr() argument
204 __seqprop_const_ptr(const seqcount_t * s) __seqprop_const_ptr() argument
209 __seqprop_sequence(const seqcount_t * s) __seqprop_sequence() argument
214 __seqprop_preemptible(const seqcount_t * s) __seqprop_preemptible() argument
219 __seqprop_assert(const seqcount_t * s) __seqprop_assert() argument
249 __seqprop_case(s,lockname,prop) global() argument
252 __seqprop(s,prop) global() argument
259 seqprop_ptr(s) global() argument
260 seqprop_const_ptr(s) global() argument
261 seqprop_sequence(s) global() argument
262 seqprop_preemptible(s) global() argument
263 seqprop_assert(s) global() argument
271 __read_seqcount_begin(s) global() argument
288 raw_read_seqcount_begin(s) global() argument
296 read_seqcount_begin(s) global() argument
313 raw_read_seqcount(s) global() argument
338 raw_seqcount_try_begin(s,start) global() argument
361 raw_seqcount_begin(s) global() argument
385 __read_seqcount_retry(s,start) global() argument
405 read_seqcount_retry(s,start) global() argument
408 do_read_seqcount_retry(const seqcount_t * s,unsigned start) do_read_seqcount_retry() argument
420 raw_write_seqcount_begin(s) global() argument
428 do_raw_write_seqcount_begin(seqcount_t * s) do_raw_write_seqcount_begin() argument
441 raw_write_seqcount_end(s) global() argument
449 do_raw_write_seqcount_end(seqcount_t * s) do_raw_write_seqcount_end() argument
465 write_seqcount_begin_nested(s,subclass) global() argument
475 do_write_seqcount_begin_nested(seqcount_t * s,int subclass) do_write_seqcount_begin_nested() argument
491 write_seqcount_begin(s) global() argument
501 do_write_seqcount_begin(seqcount_t * s) do_write_seqcount_begin() argument
513 write_seqcount_end(s) global() argument
521 do_write_seqcount_end(seqcount_t * s) do_write_seqcount_end() argument
568 raw_write_seqcount_barrier(s) global() argument
571 do_raw_write_seqcount_barrier(seqcount_t * s) do_raw_write_seqcount_barrier() argument
588 write_seqcount_invalidate(s) global() argument
591 do_write_seqcount_invalidate(seqcount_t * s) do_write_seqcount_invalidate() argument
625 seqcount_latch_init(s) global() argument
638 raw_read_seqcount_latch(const seqcount_latch_t * s) raw_read_seqcount_latch() argument
658 read_seqcount_latch(const seqcount_latch_t * s) read_seqcount_latch() argument
672 raw_read_seqcount_latch_retry(const seqcount_latch_t * s,unsigned start) raw_read_seqcount_latch_retry() argument
686 read_seqcount_latch_retry(const seqcount_latch_t * s,unsigned start) read_seqcount_latch_retry() argument
696 raw_write_seqcount_latch(seqcount_latch_t * s) raw_write_seqcount_latch() argument
778 write_seqcount_latch_begin(seqcount_latch_t * s) write_seqcount_latch_begin() argument
788 write_seqcount_latch(seqcount_latch_t * s) write_seqcount_latch() argument
800 write_seqcount_latch_end(seqcount_latch_t * s) write_seqcount_latch_end() argument
[all...]
/linux/sound/firewire/
H A Damdtp-stream.c92 int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit, in amdtp_stream_init() argument
101 s->protocol = kzalloc(protocol_size, GFP_KERNEL); in amdtp_stream_init()
102 if (!s->protocol) in amdtp_stream_init()
105 s->unit = unit; in amdtp_stream_init()
106 s->direction = dir; in amdtp_stream_init()
107 s->flags = flags; in amdtp_stream_init()
108 s->context = ERR_PTR(-1); in amdtp_stream_init()
109 mutex_init(&s->mutex); in amdtp_stream_init()
110 INIT_WORK(&s->period_work, pcm_period_work); in amdtp_stream_init()
111 s->packet_index = 0; in amdtp_stream_init()
[all …]
/linux/drivers/media/pci/ivtv/
H A Divtv-queue.c13 int ivtv_buf_copy_from_user(struct ivtv_stream *s, struct ivtv_buffer *buf, const char __user *src,… in ivtv_buf_copy_from_user() argument
15 if (s->buf_size - buf->bytesused < copybytes) in ivtv_buf_copy_from_user()
16 copybytes = s->buf_size - buf->bytesused; in ivtv_buf_copy_from_user()
40 void ivtv_enqueue(struct ivtv_stream *s, struct ivtv_buffer *buf, struct ivtv_queue *q) in ivtv_enqueue() argument
45 if (q == &s->q_free) { in ivtv_enqueue()
51 spin_lock_irqsave(&s->qlock, flags); in ivtv_enqueue()
54 q->length += s->buf_size; in ivtv_enqueue()
56 spin_unlock_irqrestore(&s->qlock, flags); in ivtv_enqueue()
59 struct ivtv_buffer *ivtv_dequeue(struct ivtv_stream *s, struct ivtv_queue *q) in ivtv_dequeue() argument
64 spin_lock_irqsave(&s->qlock, flags); in ivtv_dequeue()
[all …]
/linux/tools/mm/
H A Dslabinfo.c130 "-s|--shrink Shrink slabs\n" in usage()
164 fatal("%s, Try using superuser\n", strerror(errno)); in read_obj()
208 static void set_obj(struct slabinfo *s, const char *name, int n) in set_obj() argument
213 snprintf(x, 100, "%s/%s", s->name, name); in set_obj()
216 fatal("Cannot write to %s\n", x); in set_obj()
222 static unsigned long read_slab_obj(struct slabinfo *s, const char *name) in read_slab_obj() argument
228 snprintf(x, 100, "%s/%s", in read_slab_obj()
241 read_debug_slab_obj(struct slabinfo * s,const char * name) read_debug_slab_obj() argument
322 slab_validate(struct slabinfo * s) slab_validate() argument
330 slab_shrink(struct slabinfo * s) slab_shrink() argument
370 slab_size(struct slabinfo * s) slab_size() argument
375 slab_activity(struct slabinfo * s) slab_activity() argument
381 slab_waste(struct slabinfo * s) slab_waste() argument
386 slab_numa(struct slabinfo * s,int mode) slab_numa() argument
431 show_tracking(struct slabinfo * s) show_tracking() argument
453 ops(struct slabinfo * s) ops() argument
473 slab_stats(struct slabinfo * s) slab_stats() argument
557 report(struct slabinfo * s) report() argument
598 slabcache(struct slabinfo * s) slabcache() argument
729 slab_empty(struct slabinfo * s) slab_empty() argument
744 slab_debug(struct slabinfo * s) slab_debug() argument
806 struct slabinfo *s; totals() local
1140 struct slabinfo *s; link_slabs() local
1188 struct slabinfo *s; rename_slabs() local
[all...]
/linux/lib/
H A Dseq_buf.c38 static bool seq_buf_can_fit(struct seq_buf *s, size_t len) in seq_buf_can_fit() argument
40 return s->len + len <= s->size; in seq_buf_can_fit()
50 int seq_buf_print_seq(struct seq_file *m, struct seq_buf *s) in seq_buf_print_seq() argument
52 unsigned int len = seq_buf_used(s); in seq_buf_print_seq()
54 return seq_write(m, s->buffer, len); in seq_buf_print_seq()
67 int seq_buf_vprintf(struct seq_buf *s, const char *fmt, va_list args) in seq_buf_vprintf() argument
71 WARN_ON(s->size == 0); in seq_buf_vprintf()
73 if (s->len < s->size) { in seq_buf_vprintf()
74 len = vsnprintf(s->buffer + s->len, s->size - s->len, fmt, args); in seq_buf_vprintf()
75 if (s->len + len < s->size) { in seq_buf_vprintf()
[all …]
/linux/mm/
H A Dslub.c150 * cmpxchg_double this is done by a lockless update of slab's freelist and
152 * list_lock if it's a first free to a full slab, or when a slab becomes empty
230 static inline bool kmem_cache_debug(struct kmem_cache *s) in kmem_cache_debug() argument
232 return kmem_cache_debug_flags(s, SLAB_DEBUG_FLAGS); in kmem_cache_debug()
235 void *fixup_red_left(struct kmem_cache *s, void *p) in fixup_red_left() argument
237 if (kmem_cache_debug_flags(s, SLAB_RED_ZONE)) in fixup_red_left()
238 p += s->red_left_pad; in fixup_red_left()
285 * disabled when slab_debug=O is used and a cache's min order increases with
324 static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; } in sysfs_slab_add() argument
330 static inline void debugfs_slab_add(struct kmem_cache *s) { } in debugfs_slab_add() argument
374 stat(const struct kmem_cache * s,enum stat_item si) stat() argument
386 stat_add(const struct kmem_cache * s,enum stat_item si,int v) stat_add() argument
442 get_node(struct kmem_cache * s,int node) get_node() argument
451 get_barn(struct kmem_cache * s) get_barn() argument
484 struct kmem_cache *s; global() member
500 freelist_ptr_encode(const struct kmem_cache * s,void * ptr,unsigned long ptr_addr) freelist_ptr_encode() argument
513 freelist_ptr_decode(const struct kmem_cache * s,freeptr_t ptr,unsigned long ptr_addr) freelist_ptr_decode() argument
526 get_freepointer(struct kmem_cache * s,void * object) get_freepointer() argument
537 set_freepointer(struct kmem_cache * s,void * object,void * fp) set_freepointer() argument
552 freeptr_outside_object(struct kmem_cache * s) freeptr_outside_object() argument
561 get_info_end(struct kmem_cache * s) get_info_end() argument
671 __slab_update_freelist(struct kmem_cache * s,struct slab * slab,struct freelist_counters * old,struct freelist_counters * new,const char * n) __slab_update_freelist() argument
697 slab_update_freelist(struct kmem_cache * s,struct slab * slab,struct freelist_counters * old,struct freelist_counters * new,const char * n) slab_update_freelist() argument
730 set_orig_size(struct kmem_cache * s,void * object,unsigned long orig_size) set_orig_size() argument
744 get_orig_size(struct kmem_cache * s,void * object) get_orig_size() argument
773 need_slab_obj_exts(struct kmem_cache * s) need_slab_obj_exts() argument
792 obj_exts_offset_in_slab(struct kmem_cache * s,struct slab * slab) obj_exts_offset_in_slab() argument
802 obj_exts_fit_within_slab_leftover(struct kmem_cache * s,struct slab * slab) obj_exts_fit_within_slab_leftover() argument
811 obj_exts_in_slab(struct kmem_cache * s,struct slab * slab) obj_exts_in_slab() argument
826 need_slab_obj_exts(struct kmem_cache * s) need_slab_obj_exts() argument
836 obj_exts_offset_in_slab(struct kmem_cache * s,struct slab * slab) obj_exts_offset_in_slab() argument
842 obj_exts_fit_within_slab_leftover(struct kmem_cache * s,struct slab * slab) obj_exts_fit_within_slab_leftover() argument
848 obj_exts_in_slab(struct kmem_cache * s,struct slab * slab) obj_exts_in_slab() argument
856 obj_exts_in_object(struct kmem_cache * s,struct slab * slab) obj_exts_in_object() argument
868 obj_exts_offset_in_object(struct kmem_cache * s) obj_exts_offset_in_object() argument
883 obj_exts_in_object(struct kmem_cache * s,struct slab * slab) obj_exts_in_object() argument
888 obj_exts_offset_in_object(struct kmem_cache * s) obj_exts_offset_in_object() argument
908 __fill_map(unsigned long * obj_map,struct kmem_cache * s,struct slab * slab) __fill_map() argument
955 size_from_object(struct kmem_cache * s) size_from_object() argument
963 restore_red_left(struct kmem_cache * s,void * p) restore_red_left() argument
988 check_valid_pointer(struct kmem_cache * s,struct slab * slab,void * object) check_valid_pointer() argument
1016 get_track(struct kmem_cache * s,void * object,enum track_item alloc) get_track() argument
1045 set_track_update(struct kmem_cache * s,void * object,enum track_item alloc,unsigned long addr,depot_stack_handle_t handle) set_track_update() argument
1060 set_track(struct kmem_cache * s,void * object,enum track_item alloc,unsigned long addr,gfp_t gfp_flags) set_track() argument
1068 init_tracking(struct kmem_cache * s,void * object) init_tracking() argument
1079 print_track(const char * s,struct track * t,unsigned long pr_time) print_track() argument
1097 print_tracking(struct kmem_cache * s,void * object) print_tracking() argument
1114 skip_orig_size_check(struct kmem_cache * s,const void * object) skip_orig_size_check() argument
1119 __slab_bug(struct kmem_cache * s,const char * fmt,va_list argsp) __slab_bug() argument
1133 slab_bug(struct kmem_cache * s,const char * fmt,...) slab_bug() argument
1143 slab_fix(struct kmem_cache * s,const char * fmt,...) slab_fix() argument
1158 print_trailer(struct kmem_cache * s,struct slab * slab,u8 * p) print_trailer() argument
1201 object_err(struct kmem_cache * s,struct slab * slab,u8 * object,const char * reason) object_err() argument
1230 slab_err(struct kmem_cache * s,struct slab * slab,const char * fmt,...) slab_err() argument
1245 init_object(struct kmem_cache * s,void * object,u8 val) init_object() argument
1279 restore_bytes(struct kmem_cache * s,const char * message,u8 data,void * from,void * to) restore_bytes() argument
1293 check_bytes_and_report(struct kmem_cache * s,struct slab * slab,u8 * object,const char * what,u8 * start,unsigned int value,unsigned int bytes,bool slab_obj_print) check_bytes_and_report() argument
1383 check_pad_bytes(struct kmem_cache * s,struct slab * slab,u8 * p) check_pad_bytes() argument
1409 slab_pad_check(struct kmem_cache * s,struct slab * slab) slab_pad_check() argument
1453 check_object(struct kmem_cache * s,struct slab * slab,void * object,u8 val) check_object() argument
1538 check_slab(struct kmem_cache * s,struct slab * slab) check_slab() argument
1567 on_freelist(struct kmem_cache * s,struct slab * slab,void * search) on_freelist() argument
1624 trace(struct kmem_cache * s,struct slab * slab,void * object,int alloc) trace() argument
1645 add_full(struct kmem_cache * s,struct kmem_cache_node * n,struct slab * slab) add_full() argument
1655 remove_full(struct kmem_cache * s,struct kmem_cache_node * n,struct slab * slab) remove_full() argument
1669 inc_slabs_node(struct kmem_cache * s,int node,int objects) inc_slabs_node() argument
1676 dec_slabs_node(struct kmem_cache * s,int node,int objects) dec_slabs_node() argument
1685 setup_object_debug(struct kmem_cache * s,void * object) setup_object_debug() argument
1695 setup_slab_debug(struct kmem_cache * s,struct slab * slab,void * addr) setup_slab_debug() argument
1705 alloc_consistency_checks(struct kmem_cache * s,struct slab * slab,void * object) alloc_consistency_checks() argument
1722 alloc_debug_processing(struct kmem_cache * s,struct slab * slab,void * object,int orig_size) alloc_debug_processing() argument
1749 free_consistency_checks(struct kmem_cache * s,struct slab * slab,void * object,unsigned long addr) free_consistency_checks() argument
1995 setup_object_debug(struct kmem_cache * s,void * object) setup_object_debug() argument
1997 setup_slab_debug(struct kmem_cache * s,struct slab * slab,void * addr) setup_slab_debug() argument
1999 alloc_debug_processing(struct kmem_cache * s,struct slab * slab,void * object,int orig_size) alloc_debug_processing() argument
2002 free_debug_processing(struct kmem_cache * s,struct slab * slab,void * head,void * tail,int * bulk_cnt,unsigned long addr,depot_stack_handle_t handle) free_debug_processing() argument
2006 slab_pad_check(struct kmem_cache * s,struct slab * slab) slab_pad_check() argument
2007 check_object(struct kmem_cache * s,struct slab * slab,void * object,u8 val) check_object() argument
2010 set_track(struct kmem_cache * s,void * object,enum track_item alloc,unsigned long addr,gfp_t gfp_flags) set_track() argument
2012 add_full(struct kmem_cache * s,struct kmem_cache_node * n,struct slab * slab) add_full() argument
2014 remove_full(struct kmem_cache * s,struct kmem_cache_node * n,struct slab * slab) remove_full() argument
2026 inc_slabs_node(struct kmem_cache * s,int node,int objects) inc_slabs_node() argument
2028 dec_slabs_node(struct kmem_cache * s,int node,int objects) dec_slabs_node() argument
2116 obj_exts_alloc_size(struct kmem_cache * s,struct slab * slab,gfp_t gfp) obj_exts_alloc_size() argument
2148 alloc_slab_obj_exts(struct slab * slab,struct kmem_cache * s,gfp_t gfp,bool new_slab) alloc_slab_obj_exts() argument
2270 alloc_slab_obj_exts_early(struct kmem_cache * s,struct slab * slab) alloc_slab_obj_exts_early() argument
2319 alloc_slab_obj_exts(struct slab * slab,struct kmem_cache * s,gfp_t gfp,bool new_slab) alloc_slab_obj_exts() argument
2329 alloc_slab_obj_exts_early(struct kmem_cache * s,struct slab * slab) alloc_slab_obj_exts_early() argument
2339 prepare_slab_obj_exts_hook(struct kmem_cache * s,struct slab * slab,gfp_t flags,void * p) prepare_slab_obj_exts_hook() argument
2355 __alloc_tagging_slab_alloc_hook(struct kmem_cache * s,void * object,gfp_t flags) __alloc_tagging_slab_alloc_hook() argument
2390 alloc_tagging_slab_alloc_hook(struct kmem_cache * s,void * object,gfp_t flags) alloc_tagging_slab_alloc_hook() argument
2398 __alloc_tagging_slab_free_hook(struct kmem_cache * s,struct slab * slab,void ** p,int objects) __alloc_tagging_slab_free_hook() argument
2422 alloc_tagging_slab_free_hook(struct kmem_cache * s,struct slab * slab,void ** p,int objects) alloc_tagging_slab_free_hook() argument
2432 alloc_tagging_slab_alloc_hook(struct kmem_cache * s,void * object,gfp_t flags) alloc_tagging_slab_alloc_hook() argument
2437 alloc_tagging_slab_free_hook(struct kmem_cache * s,struct slab * slab,void ** p,int objects) alloc_tagging_slab_free_hook() argument
2450 memcg_slab_post_alloc_hook(struct kmem_cache * s,struct list_lru * lru,gfp_t flags,size_t size,void ** p) memcg_slab_post_alloc_hook() argument
2473 memcg_slab_free_hook(struct kmem_cache * s,struct slab * slab,void ** p,int objects) memcg_slab_free_hook() argument
2495 struct kmem_cache *s; memcg_slab_post_charge() local
2551 memcg_slab_post_alloc_hook(struct kmem_cache * s,struct list_lru * lru,gfp_t flags,size_t size,void ** p) memcg_slab_post_alloc_hook() argument
2559 memcg_slab_free_hook(struct kmem_cache * s,struct slab * slab,void ** p,int objects) memcg_slab_free_hook() argument
2606 slab_free_hook(struct kmem_cache * s,void * x,bool init,bool after_rcu_delay) slab_free_hook() argument
2691 slab_free_freelist_hook(struct kmem_cache * s,void ** head,void ** tail,int * cnt) slab_free_freelist_hook() argument
2734 setup_object(struct kmem_cache * s,void * object) setup_object() argument
2746 __alloc_empty_sheaf(struct kmem_cache * s,gfp_t gfp,unsigned int capacity) __alloc_empty_sheaf() argument
2778 alloc_empty_sheaf(struct kmem_cache * s,gfp_t gfp) alloc_empty_sheaf() argument
2784 free_empty_sheaf(struct kmem_cache * s,struct slab_sheaf * sheaf) free_empty_sheaf() argument
2795 refill_sheaf(struct kmem_cache * s,struct slab_sheaf * sheaf,gfp_t gfp) refill_sheaf() argument
2818 alloc_full_sheaf(struct kmem_cache * s,gfp_t gfp) alloc_full_sheaf() argument
2849 sheaf_flush_main(struct kmem_cache * s) sheaf_flush_main() argument
2891 sheaf_flush_unused(struct kmem_cache * s,struct slab_sheaf * sheaf) sheaf_flush_unused() argument
2903 __rcu_free_sheaf_prepare(struct kmem_cache * s,struct slab_sheaf * sheaf) __rcu_free_sheaf_prepare() argument
2934 struct kmem_cache *s; rcu_free_sheaf_nobarn() local
2955 pcs_flush_all(struct kmem_cache * s) pcs_flush_all() argument
2982 __pcs_flush_all_cpu(struct kmem_cache * s,unsigned int cpu) __pcs_flush_all_cpu() argument
3002 pcs_destroy(struct kmem_cache * s) pcs_destroy() argument
3213 barn_shrink(struct kmem_cache * s,struct node_barn * barn) barn_shrink() argument
3270 init_cache_random_seq(struct kmem_cache * s) init_cache_random_seq() argument
3299 struct kmem_cache *s; init_freelist_randomization() local
3310 next_freelist_entry(struct kmem_cache * s,unsigned long * pos,void * start,unsigned long page_limit,unsigned long freelist_count) next_freelist_entry() argument
3334 shuffle_freelist(struct kmem_cache * s,struct slab * slab,bool allow_spin) shuffle_freelist() argument
3380 init_cache_random_seq(struct kmem_cache * s) init_cache_random_seq() argument
3385 shuffle_freelist(struct kmem_cache * s,struct slab * slab,bool allow_spin) shuffle_freelist() argument
3393 account_slab(struct slab * slab,int order,struct kmem_cache * s,gfp_t gfp) account_slab() argument
3405 unaccount_slab(struct slab * slab,int order,struct kmem_cache * s,bool allow_spin) unaccount_slab() argument
3418 allocate_slab(struct kmem_cache * s,gfp_t flags,int node) allocate_slab() argument
3495 new_slab(struct kmem_cache * s,gfp_t flags,int node) new_slab() argument
3506 __free_slab(struct kmem_cache * s,struct slab * slab,bool allow_spin) __free_slab() argument
3523 free_new_slab_nolock(struct kmem_cache * s,struct slab * slab) free_new_slab_nolock() argument
3539 free_slab(struct kmem_cache * s,struct slab * slab) free_slab() argument
3555 discard_slab(struct kmem_cache * s,struct slab * slab) discard_slab() argument
3612 alloc_single_from_partial(struct kmem_cache * s,struct kmem_cache_node * n,struct slab * slab,int orig_size) alloc_single_from_partial() argument
3650 alloc_single_from_new_slab(struct kmem_cache * s,struct slab * slab,int orig_size,gfp_t gfpflags) alloc_single_from_new_slab() argument
3697 get_partial_node_bulk(struct kmem_cache * s,struct kmem_cache_node * n,struct partial_bulk_context * pc,bool allow_spin) get_partial_node_bulk() argument
3755 get_from_partial_node(struct kmem_cache * s,struct kmem_cache_node * n,struct partial_context * pc) get_from_partial_node() argument
3819 get_from_any_partial(struct kmem_cache * s,struct partial_context * pc) get_from_any_partial() argument
3892 get_from_partial(struct kmem_cache * s,int node,struct partial_context * pc) get_from_partial() argument
3908 has_pcs_used(int cpu,struct kmem_cache * s) has_pcs_used() argument
3927 struct kmem_cache *s; flush_cpu_sheaves() local
3938 flush_all_cpus_locked(struct kmem_cache * s) flush_all_cpus_locked() argument
3968 flush_all(struct kmem_cache * s) flush_all() argument
3980 struct kmem_cache *s; flush_rcu_sheaf() local
3999 flush_rcu_sheaves_on_cache(struct kmem_cache * s) flush_rcu_sheaves_on_cache() argument
4031 struct kmem_cache *s; flush_all_rcu_sheaves() local
4054 struct kmem_cache *s; slub_cpu_dead() local
4077 free_debug_processing(struct kmem_cache * s,struct slab * slab,void * head,void * tail,int * bulk_cnt,unsigned long addr,depot_stack_handle_t handle) free_debug_processing() argument
4190 slab_out_of_memory(struct kmem_cache * s,gfp_t gfpflags,int nid) slab_out_of_memory() argument
4226 slab_out_of_memory(struct kmem_cache * s,gfp_t gfpflags,int nid) slab_out_of_memory() argument
4245 get_freelist_nofreeze(struct kmem_cache * s,struct slab * slab) get_freelist_nofreeze() argument
4270 maybe_wipe_obj_freeptr(struct kmem_cache * s,void * obj) maybe_wipe_obj_freeptr() argument
4279 alloc_from_new_slab(struct kmem_cache * s,struct slab * slab,void ** p,unsigned int count,bool allow_spin) alloc_from_new_slab() argument
4337 ___slab_alloc(struct kmem_cache * s,gfp_t gfpflags,int node,unsigned long addr,unsigned int orig_size) ___slab_alloc() argument
4416 __slab_alloc_node(struct kmem_cache * s,gfp_t gfpflags,int node,unsigned long addr,size_t orig_size) __slab_alloc_node() argument
4448 slab_pre_alloc_hook(struct kmem_cache * s,gfp_t flags) slab_pre_alloc_hook() argument
4461 slab_post_alloc_hook(struct kmem_cache * s,struct list_lru * lru,gfp_t flags,size_t size,void ** p,bool init,unsigned int orig_size) slab_post_alloc_hook() argument
4524 __pcs_replace_empty_main(struct kmem_cache * s,struct slub_percpu_sheaves * pcs,gfp_t gfp) __pcs_replace_empty_main() argument
4636 alloc_from_pcs(struct kmem_cache * s,gfp_t gfp,int node) alloc_from_pcs() argument
4711 alloc_from_pcs_bulk(struct kmem_cache * s,gfp_t gfp,size_t size,void ** p) alloc_from_pcs_bulk() argument
4801 slab_alloc_node(struct kmem_cache * s,struct list_lru * lru,gfp_t gfpflags,int node,unsigned long addr,size_t orig_size) slab_alloc_node() argument
4835 kmem_cache_alloc_noprof(struct kmem_cache * s,gfp_t gfpflags) kmem_cache_alloc_noprof() argument
4846 kmem_cache_alloc_lru_noprof(struct kmem_cache * s,struct list_lru * lru,gfp_t gfpflags) kmem_cache_alloc_lru_noprof() argument
4880 kmem_cache_alloc_node_noprof(struct kmem_cache * s,gfp_t gfpflags,int node) kmem_cache_alloc_node_noprof() argument
4890 __prefill_sheaf_pfmemalloc(struct kmem_cache * s,struct slab_sheaf * sheaf,gfp_t gfp) __prefill_sheaf_pfmemalloc() argument
4920 kmem_cache_prefill_sheaf(struct kmem_cache * s,gfp_t gfp,unsigned int size) kmem_cache_prefill_sheaf() argument
5004 kmem_cache_return_sheaf(struct kmem_cache * s,gfp_t gfp,struct slab_sheaf * sheaf) kmem_cache_return_sheaf() argument
5059 kmem_cache_refill_sheaf(struct kmem_cache * s,gfp_t gfp,struct slab_sheaf ** sheafp,unsigned int size) kmem_cache_refill_sheaf() argument
5115 kmem_cache_alloc_from_sheaf_noprof(struct kmem_cache * s,gfp_t gfp,struct slab_sheaf * sheaf) kmem_cache_alloc_from_sheaf_noprof() argument
5203 struct kmem_cache *s; __do_kmalloc_node() local
5249 struct kmem_cache *s; kmalloc_nolock_noprof() local
5332 __kmalloc_cache_noprof(struct kmem_cache * s,gfp_t gfpflags,size_t size) __kmalloc_cache_noprof() argument
5344 __kmalloc_cache_node_noprof(struct kmem_cache * s,gfp_t gfpflags,int node,size_t size) __kmalloc_cache_node_noprof() argument
5357 free_to_partial_list(struct kmem_cache * s,struct slab * slab,void * head,void * tail,int bulk_cnt,unsigned long addr) free_to_partial_list() argument
5429 __slab_free(struct kmem_cache * s,struct slab * slab,void * head,void * tail,int cnt,unsigned long addr) __slab_free() argument
5553 __pcs_install_empty_sheaf(struct kmem_cache * s,struct slub_percpu_sheaves * pcs,struct slab_sheaf * empty,struct node_barn * barn) __pcs_install_empty_sheaf() argument
5600 __pcs_replace_full_main(struct kmem_cache * s,struct slub_percpu_sheaves * pcs,bool allow_spin) __pcs_replace_full_main() argument
5723 free_to_pcs(struct kmem_cache * s,void * object,bool allow_spin) free_to_pcs() argument
5753 struct kmem_cache *s; rcu_free_sheaf() local
5821 __kfree_rcu_sheaf(struct kmem_cache * s,void * obj) __kfree_rcu_sheaf() argument
5927 free_to_pcs_bulk(struct kmem_cache * s,size_t size,void ** p) free_to_pcs_bulk() argument
6074 struct kmem_cache *s; free_deferred_objects() local
6096 defer_free(struct kmem_cache * s,void * head) defer_free() argument
6118 slab_free(struct kmem_cache * s,struct slab * slab,void * object,unsigned long addr) slab_free() argument
6140 memcg_alloc_abort_single(struct kmem_cache * s,void * object) memcg_alloc_abort_single() argument
6152 slab_free_bulk(struct kmem_cache * s,struct slab * slab,void * head,void * tail,void ** p,int cnt,unsigned long addr) slab_free_bulk() argument
6174 struct kmem_cache *s; slab_free_after_rcu_debug() local
6204 warn_free_bad_obj(struct kmem_cache * s,void * obj) warn_free_bad_obj() argument
6234 kmem_cache_free(struct kmem_cache * s,void * x) kmem_cache_free() argument
6260 struct kmem_cache *s = slab->slab_cache; slab_ksize() local
6379 struct kmem_cache *s; kvfree_rcu_cb() local
6425 struct kmem_cache *s; kfree() local
6458 struct kmem_cache *s; kfree_nolock() local
6522 struct kmem_cache *s = NULL; __do_krealloc() local
6843 struct kmem_cache *s; global() member
6859 build_detached_freelist(struct kmem_cache * s,size_t size,void ** p,struct detached_freelist * df) build_detached_freelist() argument
6923 __kmem_cache_free_bulk(struct kmem_cache * s,size_t size,void ** p) __kmem_cache_free_bulk() argument
6944 kmem_cache_free_bulk(struct kmem_cache * s,size_t size,void ** p) kmem_cache_free_bulk() argument
6972 __refill_objects_node(struct kmem_cache * s,void ** p,gfp_t gfp,unsigned int min,unsigned int max,struct kmem_cache_node * n,bool allow_spin) __refill_objects_node() argument
7052 __refill_objects_any(struct kmem_cache * s,void ** p,gfp_t gfp,unsigned int min,unsigned int max) __refill_objects_any() argument
7103 __refill_objects_any(struct kmem_cache * s,void ** p,gfp_t gfp,unsigned int min,unsigned int max) __refill_objects_any() argument
7111 refill_objects(struct kmem_cache * s,void ** p,gfp_t gfp,unsigned int min,unsigned int max) refill_objects() argument
7155 __kmem_cache_alloc_bulk(struct kmem_cache * s,gfp_t flags,size_t size,void ** p) __kmem_cache_alloc_bulk() argument
7189 kmem_cache_alloc_bulk_noprof(struct kmem_cache * s,gfp_t flags,size_t size,void ** p) kmem_cache_alloc_bulk_noprof() argument
7405 alloc_kmem_cache_stats(struct kmem_cache * s) alloc_kmem_cache_stats() argument
7420 init_percpu_sheaves(struct kmem_cache * s) init_percpu_sheaves() argument
7507 free_kmem_cache_nodes(struct kmem_cache * s) free_kmem_cache_nodes() argument
7525 __kmem_cache_release(struct kmem_cache * s) __kmem_cache_release() argument
7535 init_kmem_cache_nodes(struct kmem_cache * s) init_kmem_cache_nodes() argument
7569 calculate_sheaf_capacity(struct kmem_cache * s,struct kmem_cache_args * args) calculate_sheaf_capacity() argument
7620 calculate_sizes(struct kmem_cache_args * args,struct kmem_cache * s) calculate_sizes() argument
7776 list_slab_objects(struct kmem_cache * s,struct slab * slab) list_slab_objects() argument
7808 free_partial(struct kmem_cache * s,struct kmem_cache_node * n) free_partial() argument
7829 __kmem_cache_empty(struct kmem_cache * s) __kmem_cache_empty() argument
7843 __kmem_cache_shutdown(struct kmem_cache * s) __kmem_cache_shutdown() argument
7873 struct kmem_cache *s = slab->slab_cache; __kmem_obj_info() local
8006 struct kmem_cache *s; __check_heap_object() local
8055 __kmem_cache_do_shrink(struct kmem_cache * s) __kmem_cache_do_shrink() argument
8121 __kmem_cache_shrink(struct kmem_cache * s) __kmem_cache_shrink() argument
8129 struct kmem_cache *s; slab_mem_going_offline_callback() local
8144 struct kmem_cache *s; slab_mem_going_online_callback() local
8233 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT); bootstrap() local
8258 bootstrap_cache_sheaves(struct kmem_cache * s) bootstrap_cache_sheaves() argument
8388 do_kmem_cache_create(struct kmem_cache * s,const char * name,unsigned int size,struct kmem_cache_args * args,slab_flags_t flags) do_kmem_cache_create() argument
8500 validate_slab(struct kmem_cache * s,struct slab * slab,unsigned long * obj_map) validate_slab() argument
8525 validate_slab_node(struct kmem_cache * s,struct kmem_cache_node * n,unsigned long * obj_map) validate_slab_node() argument
8562 validate_slab_cache(struct kmem_cache * s) validate_slab_cache() argument
8639 add_location(struct loc_track * t,struct kmem_cache * s,const struct track * track,unsigned int orig_size) add_location() argument
8731 process_slab(struct loc_track * t,struct kmem_cache * s,struct slab * slab,enum track_item alloc,unsigned long * obj_map) process_slab() argument
8765 show_slab_objects(struct kmem_cache * s,char * buf,unsigned long flags) show_slab_objects() argument
8851 slab_size_show(struct kmem_cache * s,char * buf) slab_size_show() argument
8857 align_show(struct kmem_cache * s,char * buf) align_show() argument
8863 object_size_show(struct kmem_cache * s,char * buf) object_size_show() argument
8869 objs_per_slab_show(struct kmem_cache * s,char * buf) objs_per_slab_show() argument
8875 order_show(struct kmem_cache * s,char * buf) order_show() argument
8881 sheaf_capacity_show(struct kmem_cache * s,char * buf) sheaf_capacity_show() argument
8887 min_partial_show(struct kmem_cache * s,char * buf) min_partial_show() argument
8892 min_partial_store(struct kmem_cache * s,const char * buf,size_t length) min_partial_store() argument
8907 cpu_partial_show(struct kmem_cache * s,char * buf) cpu_partial_show() argument
8912 cpu_partial_store(struct kmem_cache * s,const char * buf,size_t length) cpu_partial_store() argument
8928 ctor_show(struct kmem_cache * s,char * buf) ctor_show() argument
8936 aliases_show(struct kmem_cache * s,char * buf) aliases_show() argument
8942 partial_show(struct kmem_cache * s,char * buf) partial_show() argument
8948 cpu_slabs_show(struct kmem_cache * s,char * buf) cpu_slabs_show() argument
8954 objects_partial_show(struct kmem_cache * s,char * buf) objects_partial_show() argument
8960 slabs_cpu_partial_show(struct kmem_cache * s,char * buf) slabs_cpu_partial_show() argument
8966 reclaim_account_show(struct kmem_cache * s,char * buf) reclaim_account_show() argument
8972 hwcache_align_show(struct kmem_cache * s,char * buf) hwcache_align_show() argument
8979 cache_dma_show(struct kmem_cache * s,char * buf) cache_dma_show() argument
8987 usersize_show(struct kmem_cache * s,char * buf) usersize_show() argument
8994 destroy_by_rcu_show(struct kmem_cache * s,char * buf) destroy_by_rcu_show() argument
9001 slabs_show(struct kmem_cache * s,char * buf) slabs_show() argument
9007 total_objects_show(struct kmem_cache * s,char * buf) total_objects_show() argument
9013 objects_show(struct kmem_cache * s,char * buf) objects_show() argument
9019 sanity_checks_show(struct kmem_cache * s,char * buf) sanity_checks_show() argument
9025 trace_show(struct kmem_cache * s,char * buf) trace_show() argument
9031 red_zone_show(struct kmem_cache * s,char * buf) red_zone_show() argument
9038 poison_show(struct kmem_cache * s,char * buf) poison_show() argument
9045 store_user_show(struct kmem_cache * s,char * buf) store_user_show() argument
9052 validate_show(struct kmem_cache * s,char * buf) validate_show() argument
9057 validate_store(struct kmem_cache * s,const char * buf,size_t length) validate_store() argument
9074 failslab_show(struct kmem_cache * s,char * buf) failslab_show() argument
9079 failslab_store(struct kmem_cache * s,const char * buf,size_t length) failslab_store() argument
9095 shrink_show(struct kmem_cache * s,char * buf) shrink_show() argument
9100 shrink_store(struct kmem_cache * s,const char * buf,size_t length) shrink_store() argument
9112 remote_node_defrag_ratio_show(struct kmem_cache * s,char * buf) remote_node_defrag_ratio_show() argument
9117 remote_node_defrag_ratio_store(struct kmem_cache * s,const char * buf,size_t length) remote_node_defrag_ratio_store() argument
9137 show_stat(struct kmem_cache * s,char * buf,enum stat_item si) show_stat() argument
9169 clear_stat(struct kmem_cache * s,enum stat_item si) clear_stat() argument
9221 skip_kfence_show(struct kmem_cache * s,char * buf) skip_kfence_show() argument
9226 skip_kfence_store(struct kmem_cache * s,const char * buf,size_t length) skip_kfence_store() argument
9329 struct kmem_cache *s; slab_attr_show() local
9345 struct kmem_cache *s; slab_attr_store() local
9373 cache_kset(struct kmem_cache * s) cache_kset() argument
9384 create_unique_id(struct kmem_cache * s) create_unique_id() argument
9422 sysfs_slab_add(struct kmem_cache * s) sysfs_slab_add() argument
9473 sysfs_slab_unlink(struct kmem_cache * s) sysfs_slab_unlink() argument
9479 sysfs_slab_release(struct kmem_cache * s) sysfs_slab_release() argument
9489 struct kmem_cache *s; global() member
9496 sysfs_slab_alias(struct kmem_cache * s,const char * name) sysfs_slab_alias() argument
9527 struct kmem_cache *s; slab_sysfs_init() local
9678 struct kmem_cache *s = file_inode(filep)->i_private; slab_debug_trace_open() local
9737 debugfs_slab_add(struct kmem_cache * s) debugfs_slab_add() argument
9753 debugfs_slab_release(struct kmem_cache * s) debugfs_slab_release() argument
9760 struct kmem_cache *s; slab_debugfs_init() local
9777 get_slabinfo(struct kmem_cache * s,struct slabinfo * sinfo) get_slabinfo() argument
[all...]
/linux/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.h32 #define SYM_GEN_FW_A(s) \ argument
33 SYM_GEN_A(s, start) SYM_GEN_A(s, getjob_begin) \
34 SYM_GEN_A(s, getjob_end) \
35 SYM_GEN_A(s, select) SYM_GEN_A(s, wf_sel_done) \
36 SYM_GEN_A(s, send_ident) \
37 SYM_GEN_A(s, dispatch) SYM_GEN_A(s, init) \
38 SYM_GEN_A(s, clrack) SYM_GEN_A(s, complete_error) \
39 SYM_GEN_A(s, done) SYM_GEN_A(s, done_end) \
40 SYM_GEN_A(s, idle) SYM_GEN_A(s, ungetjob) \
41 SYM_GEN_A(s, reselect) \
[all …]
/linux/arch/arm64/kernel/vdso/
H A Dvgetrandom-chacha.S52 ld1 { copy1.4s, copy2.4s }, [x1]
54 ld1 { copy3.2s }, [x2]
56 movi one_v.2s, #1
57 uzp1 one_v.4s, one_v.4s, one_v.4s
76 add state0.4s, state0.4s, state1.4s
81 add state2.4s, state2.4s, state3.4s
83 shl state1.4s, tmp.4s, #12
84 sri state1.4s, tmp.4s, #20
87 add state0.4s, state0.4s, state1.4s
89 shl state3.4s, tmp.4s, #8
[all …]

12345678910>>...192