summaryrefslogtreecommitdiff
path: root/cpusched.h
blob: a7c26ce337fdfe2fa2af891ec902bbd185abaa7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * netsniff-ng - the packet sniffing beast
 * Copyright 2011 Daniel Borkmann.
 * Subject to the GPL, version 2.
 */

#ifndef CPUSCHED_H
#define CPUSCHED_H

extern void init_cpusched(unsigned int cpus);
extern unsigned int socket_to_cpu(int fd);
extern unsigned int register_socket(int fd);
extern void unregister_socket(int fd);
extern void destroy_cpusched(void);

#endif /* CPUSCHED_H */
:49:22 -0700 committerLinus Torvalds <torvalds@linux-foundation.org>2016-06-24 17:23:52 -0700 commitf45eebc25e78991ef6a6d784ab54151d3003cfdf (patch) treeb66ec26612350db4b61da6310f0f1fed6bb28f40 parent884ed4cb8aa19ccff32f5c5586257c56e56f91a4 (diff)
tile: get rid of superfluous __GFP_REPEAT
__GFP_REPEAT has a rather weak semantic but since it has been introduced around 2.6.12 it has been ignored for low order allocations. pgtable_alloc_one uses __GFP_REPEAT flag for L2_USER_PGTABLE_ORDER but the order is either 0 or 3 if L2_KERNEL_PGTABLE_SHIFT for HPAGE_SHIFT. This means that this flag has never been actually useful here because it has always been used only for PAGE_ALLOC_COSTLY requests. Link: http://lkml.kernel.org/r/1464599699-30131-16-git-send-email-mhocko@kernel.org Signed-off-by: Michal Hocko <mhocko@suse.com> Acked-by: Chris Metcalf <cmetcalf@mellanox.com> [for tile] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat