Searched refs:flush (Results 1 - 25 of 555) sorted by relevance

1234567891011>>

/linux-master/arch/arm/include/debug/
H A Duncompress.h7 static inline void flush(void) {} function
/linux-master/include/linux/decompress/
H A Dunlzma.h7 long (*flush)(void*, unsigned long),
H A Dunlzo.h7 long (*flush)(void*, unsigned long),
H A Dinflate.h7 long (*flush)(void*, unsigned long),
H A Dbunzip2.h7 long (*flush)(void*, unsigned long),
H A Dunlz4.h7 long (*flush)(void*, unsigned long),
H A Dunzstd.h7 long (*flush)(void*, unsigned long),
H A Dunxz.h15 long (*flush)(void *src, unsigned long size),
H A Dgeneric.h7 long (*flush)(void*, unsigned long),
15 *flush - function to write out outbuf
28 *If flush = NULL, outbuf must be large enough to buffer all the expected
29 *output. If flush != NULL, the output buffer will be allocated by the
30 *decompressor (outbuf = NULL), and the flush function will be called to
31 *flush the output buffer at the appropriate time (decompressor and stream
/linux-master/arch/x86/hyperv/
H A Dnested.c22 struct hv_guest_mapping_flush *flush; local
32 flush = *this_cpu_ptr(hyperv_pcpu_input_arg);
34 if (unlikely(!flush)) {
39 flush->address_space = as;
40 flush->flags = 0;
43 flush, NULL);
56 struct hv_guest_mapping_flush_list *flush,
65 * If flush requests exceed max flush count, go back to
66 * flush tlb
55 hyperv_fill_flush_guest_mapping_list( struct hv_guest_mapping_flush_list *flush, u64 start_gfn, u64 pages) argument
89 struct hv_guest_mapping_flush_list *flush; local
[all...]
H A Dmmu.c17 /* Each gva in gva_list encodes up to 4096 pages to flush */
38 * pages to flush (in addition to the 'cur' page).
64 struct hv_tlb_flush *flush; local
76 flush = *this_cpu_ptr(hyperv_pcpu_input_arg);
78 if (unlikely(!flush)) {
88 flush->address_space = virt_to_phys(info->mm->pgd);
89 flush->address_space &= CR3_ADDR_MASK;
90 flush->flags = 0;
92 flush->address_space = 0;
93 flush
177 struct hv_tlb_flush_ex *flush; local
[all...]
/linux-master/lib/zlib_dfltcc/
H A Ddfltcc_inflate.h16 int flush, int *ret);
20 #define INFLATE_TYPEDO_HOOK(strm, flush) \
25 action = dfltcc_inflate((strm), (flush), &ret); \
H A Ddfltcc_deflate.h10 int flush,
H A Ddfltcc_deflate.c121 int flush,
136 if (flush == Z_FULL_FLUSH)
144 no_flush = flush == Z_NO_FLUSH;
148 * be called again in order to flush it.
159 if (flush == Z_FINISH)
162 if (flush == Z_FULL_FLUSH)
178 /* We need to flush the DFLTCC buffer before writing the
217 need_empty_block = flush == Z_FINISH && param->bcf && !param->bhf;
225 if (flush == Z_FINISH && !param->bcf)
292 if (flush
119 dfltcc_deflate( z_streamp strm, int flush, block_state *result ) argument
[all...]
/linux-master/drivers/md/dm-vdo/
H A Dflush.c6 #include "flush.h"
29 /* The current flush generation of the vdo */
31 /* The first unacknowledged flush generation */
33 /* The queue of flush requests waiting to notify other threads */
35 /* The queue of flush requests waiting for VIOs to complete */
37 /* The flush generation for which notifications are being sent */
41 /* The ID of the thread on which flush requests should be made */
43 /* The pool of flush requests */
45 /* Bios waiting for a flush request to become available */
49 /* The rotor for selecting the bio queue for submitting flush bio
103 struct vdo_flush *flush = NULL; local
251 struct vdo_flush *flush = local
269 struct vdo_flush *flush = completion_as_vdo_flush(completion); local
327 struct vdo_flush *flush = local
369 initialize_flush(struct vdo_flush *flush, struct vdo *vdo) argument
375 launch_flush(struct vdo_flush *flush) argument
398 struct vdo_flush *flush = mempool_alloc(vdo->flusher->flush_pool, GFP_NOWAIT); local
431 release_flush(struct vdo_flush *flush) argument
462 struct vdo_flush *flush = completion_as_vdo_flush(completion); local
515 vdo_complete_flush(struct vdo_flush *flush) argument
[all...]
/linux-master/lib/
H A Ddecompress_inflate.c44 long (*flush)(void*, unsigned long),
53 if (flush) {
82 strm->workspace = malloc(flush ? zlib_inflate_workspacesize() :
138 if (!flush) {
159 if (flush && strm->next_out > out_buf) {
161 if (l != flush(out_buf, l)) {
193 if (flush)
202 long (*flush)(void*, unsigned long),
207 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error);
212 long (*flush)(voi
42 __gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void(*error)(char *x)) argument
200 gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long *pos, void (*error)(char *x)) argument
210 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) argument
[all...]
H A Ddecompress_unxz.c248 * fill() and flush() won't be used.
252 long (*flush)(void *src, unsigned long size),
268 if (fill == NULL && flush == NULL)
276 if (flush == NULL) {
298 if (fill == NULL && flush == NULL) {
324 if (flush != NULL && (b.out_pos == b.out_size
331 if (flush(b.out, b.out_pos) != (long)b.out_pos)
341 if (flush != NULL)
381 if (flush != NULL)
399 long (*flush)(voi
397 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long olen, long *pos, void (*error)(char *x)) argument
[all...]
H A Ddecompress_unlzo.c99 long (*flush)(void *, unsigned long),
112 } else if (!flush) {
113 error("NULL output pointer and no flush function provided");
243 if (flush && flush(out_buf, dst_len) != dst_len)
279 long (*flush)(void*, unsigned long),
284 return unlzo(buf, len, fill, flush, out_buf, pos, error);
277 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long olen, long *pos, void (*error)(char *x)) argument
/linux-master/arch/arm/mach-footbridge/include/mach/
H A Duncompress.h27 static inline void flush(void) function
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dvmmgk20a.c42 .flush = gf100_vmm_flush,
57 .flush = gf100_vmm_flush,
/linux-master/arch/arm/mach-sa1100/include/mach/
H A Duncompress.h45 static inline void flush(void) function
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/bar/
H A Dgk20a.c31 .flush = g84_bar_flush,
H A Dgm20b.c31 .flush = g84_bar_flush,
/linux-master/fs/btrfs/
H A Dspace-info.c69 * the tail of space_info->tickets, kick async flush thread
345 enum btrfs_reserve_flush_enum flush)
401 * 1/2th of the space. If we can flush, don't let us overcommit
404 if (flush == BTRFS_RESERVE_FLUSH_ALL)
413 enum btrfs_reserve_flush_enum flush)
423 avail = calc_available_free_space(fs_info, space_info, flush);
448 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH; local
463 flush)) {
478 flush = BTRFS_RESERVE_FLUSH_ALL;
612 /* Calc the number of the pages we need flush fo
343 calc_available_free_space(struct btrfs_fs_info *fs_info, struct btrfs_space_info *space_info, enum btrfs_reserve_flush_enum flush) argument
411 btrfs_can_overcommit(struct btrfs_fs_info *fs_info, struct btrfs_space_info *space_info, u64 bytes, enum btrfs_reserve_flush_enum flush) argument
1172 enum btrfs_flush_state flush; local
1521 handle_reserve_ticket(struct btrfs_fs_info *fs_info, struct btrfs_space_info *space_info, struct reserve_ticket *ticket, u64 start_ns, u64 orig_bytes, enum btrfs_reserve_flush_enum flush) argument
1571 is_normal_flushing(enum btrfs_reserve_flush_enum flush) argument
1595 can_steal(enum btrfs_reserve_flush_enum flush) argument
1605 can_ticket(enum btrfs_reserve_flush_enum flush) argument
1626 __reserve_bytes(struct btrfs_fs_info *fs_info, struct btrfs_space_info *space_info, u64 orig_bytes, enum btrfs_reserve_flush_enum flush) argument
1775 btrfs_reserve_metadata_bytes(struct btrfs_fs_info *fs_info, struct btrfs_space_info *space_info, u64 orig_bytes, enum btrfs_reserve_flush_enum flush) argument
1803 btrfs_reserve_data_bytes(struct btrfs_fs_info *fs_info, u64 bytes, enum btrfs_reserve_flush_enum flush) argument
[all...]
/linux-master/net/ipv4/
H A Dtcp_offload.c306 int flush = 1; local
317 flush = (__force int)(flags & TCP_FLAG_CWR);
318 flush |= (__force int)((flags ^ tcp_flag_word(th2)) &
320 flush |= (__force int)(th->ack_seq ^ th2->ack_seq);
322 flush |= *(u32 *)((u8 *)th + i) ^
325 flush |= gro_receive_network_flush(th, th2, p);
334 flush |= (mss != skb_shinfo(skb)->gso_size);
336 flush |= (len - 1) >= mss;
338 flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq);
339 flush |
[all...]

Completed in 305 milliseconds

1234567891011>>