summaryrefslogtreecommitdiff
path: root/corking.h
blob: fb4483cbea5fe9faa70276523a3797a1bcfa3d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CORKING_H
#define CORKING_H

#include <stdbool.h>

extern void set_tcp_cork(int fd);
extern void set_tcp_uncork(int fd);
extern void set_udp_cork(int fd);
extern void set_udp_uncork(int fd);
extern void set_sock_cork(int fd, bool is_udp);
extern void set_sock_uncork(int fd, bool is_udp);

#endif /* CORKING_H */
inus Torvalds <torvalds@linux-foundation.org>2016-09-30 15:51:10 -0700 committerLinus Torvalds <torvalds@linux-foundation.org>2016-09-30 15:51:10 -0700 commitdbd8805b0ad46f04cababea5d01f072142961411 (patch) tree6ac45a7687ba67362d8a39e5da032625fc2e11b1 parent9a2172a8d52cf14ce44e9cadd8c9df84cf832d75 (diff)parent37aa7271d9742b574763e5ce019bde9c49aa8bfe (diff)
Merge branch 'akpm' (patches from Andrew)
Merge more fixes from Andrew Morton: "Three fixes" * emailed patches from Andrew Morton <akpm@linux-foundation.org>: include/linux/property.h: fix typo/compile error ocfs2: fix deadlock on mmapped page in ocfs2_write_begin_nolock() mm: workingset: fix crash in shadow node shrinker caused by replace_page_cache_page()
Diffstat