at v4.13 695 lines 21 kB view raw
1/* 2 * linux/cgroup-defs.h - basic definitions for cgroup 3 * 4 * This file provides basic type and interface. Include this file directly 5 * only if necessary to avoid cyclic dependencies. 6 */ 7#ifndef _LINUX_CGROUP_DEFS_H 8#define _LINUX_CGROUP_DEFS_H 9 10#include <linux/limits.h> 11#include <linux/list.h> 12#include <linux/idr.h> 13#include <linux/wait.h> 14#include <linux/mutex.h> 15#include <linux/rcupdate.h> 16#include <linux/refcount.h> 17#include <linux/percpu-refcount.h> 18#include <linux/percpu-rwsem.h> 19#include <linux/workqueue.h> 20#include <linux/bpf-cgroup.h> 21 22#ifdef CONFIG_CGROUPS 23 24struct cgroup; 25struct cgroup_root; 26struct cgroup_subsys; 27struct cgroup_taskset; 28struct kernfs_node; 29struct kernfs_ops; 30struct kernfs_open_file; 31struct seq_file; 32 33#define MAX_CGROUP_TYPE_NAMELEN 32 34#define MAX_CGROUP_ROOT_NAMELEN 64 35#define MAX_CFTYPE_NAME 64 36 37/* define the enumeration of all cgroup subsystems */ 38#define SUBSYS(_x) _x ## _cgrp_id, 39enum cgroup_subsys_id { 40#include <linux/cgroup_subsys.h> 41 CGROUP_SUBSYS_COUNT, 42}; 43#undef SUBSYS 44 45/* bits in struct cgroup_subsys_state flags field */ 46enum { 47 CSS_NO_REF = (1 << 0), /* no reference counting for this css */ 48 CSS_ONLINE = (1 << 1), /* between ->css_online() and ->css_offline() */ 49 CSS_RELEASED = (1 << 2), /* refcnt reached zero, released */ 50 CSS_VISIBLE = (1 << 3), /* css is visible to userland */ 51 CSS_DYING = (1 << 4), /* css is dying */ 52}; 53 54/* bits in struct cgroup flags field */ 55enum { 56 /* Control Group requires release notifications to userspace */ 57 CGRP_NOTIFY_ON_RELEASE, 58 /* 59 * Clone the parent's configuration when creating a new child 60 * cpuset cgroup. For historical reasons, this option can be 61 * specified at mount time and thus is implemented here. 62 */ 63 CGRP_CPUSET_CLONE_CHILDREN, 64}; 65 66/* cgroup_root->flags */ 67enum { 68 CGRP_ROOT_NOPREFIX = (1 << 1), /* mounted subsystems have no named prefix */ 69 CGRP_ROOT_XATTR = (1 << 2), /* supports extended attributes */ 70 71 /* 72 * Consider namespaces as delegation boundaries. If this flag is 73 * set, controller specific interface files in a namespace root 74 * aren't writeable from inside the namespace. 75 */ 76 CGRP_ROOT_NS_DELEGATE = (1 << 3), 77}; 78 79/* cftype->flags */ 80enum { 81 CFTYPE_ONLY_ON_ROOT = (1 << 0), /* only create on root cgrp */ 82 CFTYPE_NOT_ON_ROOT = (1 << 1), /* don't create on root cgrp */ 83 CFTYPE_NS_DELEGATABLE = (1 << 2), /* writeable beyond delegation boundaries */ 84 85 CFTYPE_NO_PREFIX = (1 << 3), /* (DON'T USE FOR NEW FILES) no subsys prefix */ 86 CFTYPE_WORLD_WRITABLE = (1 << 4), /* (DON'T USE FOR NEW FILES) S_IWUGO */ 87 88 /* internal flags, do not use outside cgroup core proper */ 89 __CFTYPE_ONLY_ON_DFL = (1 << 16), /* only on default hierarchy */ 90 __CFTYPE_NOT_ON_DFL = (1 << 17), /* not on default hierarchy */ 91}; 92 93/* 94 * cgroup_file is the handle for a file instance created in a cgroup which 95 * is used, for example, to generate file changed notifications. This can 96 * be obtained by setting cftype->file_offset. 97 */ 98struct cgroup_file { 99 /* do not access any fields from outside cgroup core */ 100 struct kernfs_node *kn; 101}; 102 103/* 104 * Per-subsystem/per-cgroup state maintained by the system. This is the 105 * fundamental structural building block that controllers deal with. 106 * 107 * Fields marked with "PI:" are public and immutable and may be accessed 108 * directly without synchronization. 109 */ 110struct cgroup_subsys_state { 111 /* PI: the cgroup that this css is attached to */ 112 struct cgroup *cgroup; 113 114 /* PI: the cgroup subsystem that this css is attached to */ 115 struct cgroup_subsys *ss; 116 117 /* reference count - access via css_[try]get() and css_put() */ 118 struct percpu_ref refcnt; 119 120 /* siblings list anchored at the parent's ->children */ 121 struct list_head sibling; 122 struct list_head children; 123 124 /* 125 * PI: Subsys-unique ID. 0 is unused and root is always 1. The 126 * matching css can be looked up using css_from_id(). 127 */ 128 int id; 129 130 unsigned int flags; 131 132 /* 133 * Monotonically increasing unique serial number which defines a 134 * uniform order among all csses. It's guaranteed that all 135 * ->children lists are in the ascending order of ->serial_nr and 136 * used to allow interrupting and resuming iterations. 137 */ 138 u64 serial_nr; 139 140 /* 141 * Incremented by online self and children. Used to guarantee that 142 * parents are not offlined before their children. 143 */ 144 atomic_t online_cnt; 145 146 /* percpu_ref killing and RCU release */ 147 struct rcu_head rcu_head; 148 struct work_struct destroy_work; 149 150 /* 151 * PI: the parent css. Placed here for cache proximity to following 152 * fields of the containing structure. 153 */ 154 struct cgroup_subsys_state *parent; 155}; 156 157/* 158 * A css_set is a structure holding pointers to a set of 159 * cgroup_subsys_state objects. This saves space in the task struct 160 * object and speeds up fork()/exit(), since a single inc/dec and a 161 * list_add()/del() can bump the reference count on the entire cgroup 162 * set for a task. 163 */ 164struct css_set { 165 /* 166 * Set of subsystem states, one for each subsystem. This array is 167 * immutable after creation apart from the init_css_set during 168 * subsystem registration (at boot time). 169 */ 170 struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT]; 171 172 /* reference count */ 173 refcount_t refcount; 174 175 /* the default cgroup associated with this css_set */ 176 struct cgroup *dfl_cgrp; 177 178 /* internal task count, protected by css_set_lock */ 179 int nr_tasks; 180 181 /* 182 * Lists running through all tasks using this cgroup group. 183 * mg_tasks lists tasks which belong to this cset but are in the 184 * process of being migrated out or in. Protected by 185 * css_set_rwsem, but, during migration, once tasks are moved to 186 * mg_tasks, it can be read safely while holding cgroup_mutex. 187 */ 188 struct list_head tasks; 189 struct list_head mg_tasks; 190 191 /* all css_task_iters currently walking this cset */ 192 struct list_head task_iters; 193 194 /* 195 * On the default hierarhcy, ->subsys[ssid] may point to a css 196 * attached to an ancestor instead of the cgroup this css_set is 197 * associated with. The following node is anchored at 198 * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to 199 * iterate through all css's attached to a given cgroup. 200 */ 201 struct list_head e_cset_node[CGROUP_SUBSYS_COUNT]; 202 203 /* 204 * List running through all cgroup groups in the same hash 205 * slot. Protected by css_set_lock 206 */ 207 struct hlist_node hlist; 208 209 /* 210 * List of cgrp_cset_links pointing at cgroups referenced from this 211 * css_set. Protected by css_set_lock. 212 */ 213 struct list_head cgrp_links; 214 215 /* 216 * List of csets participating in the on-going migration either as 217 * source or destination. Protected by cgroup_mutex. 218 */ 219 struct list_head mg_preload_node; 220 struct list_head mg_node; 221 222 /* 223 * If this cset is acting as the source of migration the following 224 * two fields are set. mg_src_cgrp and mg_dst_cgrp are 225 * respectively the source and destination cgroups of the on-going 226 * migration. mg_dst_cset is the destination cset the target tasks 227 * on this cset should be migrated to. Protected by cgroup_mutex. 228 */ 229 struct cgroup *mg_src_cgrp; 230 struct cgroup *mg_dst_cgrp; 231 struct css_set *mg_dst_cset; 232 233 /* dead and being drained, ignore for migration */ 234 bool dead; 235 236 /* For RCU-protected deletion */ 237 struct rcu_head rcu_head; 238}; 239 240struct cgroup { 241 /* self css with NULL ->ss, points back to this cgroup */ 242 struct cgroup_subsys_state self; 243 244 unsigned long flags; /* "unsigned long" so bitops work */ 245 246 /* 247 * idr allocated in-hierarchy ID. 248 * 249 * ID 0 is not used, the ID of the root cgroup is always 1, and a 250 * new cgroup will be assigned with a smallest available ID. 251 * 252 * Allocating/Removing ID must be protected by cgroup_mutex. 253 */ 254 int id; 255 256 /* 257 * The depth this cgroup is at. The root is at depth zero and each 258 * step down the hierarchy increments the level. This along with 259 * ancestor_ids[] can determine whether a given cgroup is a 260 * descendant of another without traversing the hierarchy. 261 */ 262 int level; 263 264 /* 265 * Each non-empty css_set associated with this cgroup contributes 266 * one to populated_cnt. All children with non-zero popuplated_cnt 267 * of their own contribute one. The count is zero iff there's no 268 * task in this cgroup or its subtree. 269 */ 270 int populated_cnt; 271 272 struct kernfs_node *kn; /* cgroup kernfs entry */ 273 struct cgroup_file procs_file; /* handle for "cgroup.procs" */ 274 struct cgroup_file events_file; /* handle for "cgroup.events" */ 275 276 /* 277 * The bitmask of subsystems enabled on the child cgroups. 278 * ->subtree_control is the one configured through 279 * "cgroup.subtree_control" while ->child_ss_mask is the effective 280 * one which may have more subsystems enabled. Controller knobs 281 * are made available iff it's enabled in ->subtree_control. 282 */ 283 u16 subtree_control; 284 u16 subtree_ss_mask; 285 u16 old_subtree_control; 286 u16 old_subtree_ss_mask; 287 288 /* Private pointers for each registered subsystem */ 289 struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT]; 290 291 struct cgroup_root *root; 292 293 /* 294 * List of cgrp_cset_links pointing at css_sets with tasks in this 295 * cgroup. Protected by css_set_lock. 296 */ 297 struct list_head cset_links; 298 299 /* 300 * On the default hierarchy, a css_set for a cgroup with some 301 * susbsys disabled will point to css's which are associated with 302 * the closest ancestor which has the subsys enabled. The 303 * following lists all css_sets which point to this cgroup's css 304 * for the given subsystem. 305 */ 306 struct list_head e_csets[CGROUP_SUBSYS_COUNT]; 307 308 /* 309 * list of pidlists, up to two for each namespace (one for procs, one 310 * for tasks); created on demand. 311 */ 312 struct list_head pidlists; 313 struct mutex pidlist_mutex; 314 315 /* used to wait for offlining of csses */ 316 wait_queue_head_t offline_waitq; 317 318 /* used to schedule release agent */ 319 struct work_struct release_agent_work; 320 321 /* used to store eBPF programs */ 322 struct cgroup_bpf bpf; 323 324 /* ids of the ancestors at each level including self */ 325 int ancestor_ids[]; 326}; 327 328/* 329 * A cgroup_root represents the root of a cgroup hierarchy, and may be 330 * associated with a kernfs_root to form an active hierarchy. This is 331 * internal to cgroup core. Don't access directly from controllers. 332 */ 333struct cgroup_root { 334 struct kernfs_root *kf_root; 335 336 /* The bitmask of subsystems attached to this hierarchy */ 337 unsigned int subsys_mask; 338 339 /* Unique id for this hierarchy. */ 340 int hierarchy_id; 341 342 /* The root cgroup. Root is destroyed on its release. */ 343 struct cgroup cgrp; 344 345 /* for cgrp->ancestor_ids[0] */ 346 int cgrp_ancestor_id_storage; 347 348 /* Number of cgroups in the hierarchy, used only for /proc/cgroups */ 349 atomic_t nr_cgrps; 350 351 /* A list running through the active hierarchies */ 352 struct list_head root_list; 353 354 /* Hierarchy-specific flags */ 355 unsigned int flags; 356 357 /* IDs for cgroups in this hierarchy */ 358 struct idr cgroup_idr; 359 360 /* The path to use for release notifications. */ 361 char release_agent_path[PATH_MAX]; 362 363 /* The name for this hierarchy - may be empty */ 364 char name[MAX_CGROUP_ROOT_NAMELEN]; 365}; 366 367/* 368 * struct cftype: handler definitions for cgroup control files 369 * 370 * When reading/writing to a file: 371 * - the cgroup to use is file->f_path.dentry->d_parent->d_fsdata 372 * - the 'cftype' of the file is file->f_path.dentry->d_fsdata 373 */ 374struct cftype { 375 /* 376 * By convention, the name should begin with the name of the 377 * subsystem, followed by a period. Zero length string indicates 378 * end of cftype array. 379 */ 380 char name[MAX_CFTYPE_NAME]; 381 unsigned long private; 382 383 /* 384 * The maximum length of string, excluding trailing nul, that can 385 * be passed to write. If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed. 386 */ 387 size_t max_write_len; 388 389 /* CFTYPE_* flags */ 390 unsigned int flags; 391 392 /* 393 * If non-zero, should contain the offset from the start of css to 394 * a struct cgroup_file field. cgroup will record the handle of 395 * the created file into it. The recorded handle can be used as 396 * long as the containing css remains accessible. 397 */ 398 unsigned int file_offset; 399 400 /* 401 * Fields used for internal bookkeeping. Initialized automatically 402 * during registration. 403 */ 404 struct cgroup_subsys *ss; /* NULL for cgroup core files */ 405 struct list_head node; /* anchored at ss->cfts */ 406 struct kernfs_ops *kf_ops; 407 408 int (*open)(struct kernfs_open_file *of); 409 void (*release)(struct kernfs_open_file *of); 410 411 /* 412 * read_u64() is a shortcut for the common case of returning a 413 * single integer. Use it in place of read() 414 */ 415 u64 (*read_u64)(struct cgroup_subsys_state *css, struct cftype *cft); 416 /* 417 * read_s64() is a signed version of read_u64() 418 */ 419 s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft); 420 421 /* generic seq_file read interface */ 422 int (*seq_show)(struct seq_file *sf, void *v); 423 424 /* optional ops, implement all or none */ 425 void *(*seq_start)(struct seq_file *sf, loff_t *ppos); 426 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos); 427 void (*seq_stop)(struct seq_file *sf, void *v); 428 429 /* 430 * write_u64() is a shortcut for the common case of accepting 431 * a single integer (as parsed by simple_strtoull) from 432 * userspace. Use in place of write(); return 0 or error. 433 */ 434 int (*write_u64)(struct cgroup_subsys_state *css, struct cftype *cft, 435 u64 val); 436 /* 437 * write_s64() is a signed version of write_u64() 438 */ 439 int (*write_s64)(struct cgroup_subsys_state *css, struct cftype *cft, 440 s64 val); 441 442 /* 443 * write() is the generic write callback which maps directly to 444 * kernfs write operation and overrides all other operations. 445 * Maximum write size is determined by ->max_write_len. Use 446 * of_css/cft() to access the associated css and cft. 447 */ 448 ssize_t (*write)(struct kernfs_open_file *of, 449 char *buf, size_t nbytes, loff_t off); 450 451#ifdef CONFIG_DEBUG_LOCK_ALLOC 452 struct lock_class_key lockdep_key; 453#endif 454}; 455 456/* 457 * Control Group subsystem type. 458 * See Documentation/cgroups/cgroups.txt for details 459 */ 460struct cgroup_subsys { 461 struct cgroup_subsys_state *(*css_alloc)(struct cgroup_subsys_state *parent_css); 462 int (*css_online)(struct cgroup_subsys_state *css); 463 void (*css_offline)(struct cgroup_subsys_state *css); 464 void (*css_released)(struct cgroup_subsys_state *css); 465 void (*css_free)(struct cgroup_subsys_state *css); 466 void (*css_reset)(struct cgroup_subsys_state *css); 467 468 int (*can_attach)(struct cgroup_taskset *tset); 469 void (*cancel_attach)(struct cgroup_taskset *tset); 470 void (*attach)(struct cgroup_taskset *tset); 471 void (*post_attach)(void); 472 int (*can_fork)(struct task_struct *task); 473 void (*cancel_fork)(struct task_struct *task); 474 void (*fork)(struct task_struct *task); 475 void (*exit)(struct task_struct *task); 476 void (*free)(struct task_struct *task); 477 void (*bind)(struct cgroup_subsys_state *root_css); 478 479 bool early_init:1; 480 481 /* 482 * If %true, the controller, on the default hierarchy, doesn't show 483 * up in "cgroup.controllers" or "cgroup.subtree_control", is 484 * implicitly enabled on all cgroups on the default hierarchy, and 485 * bypasses the "no internal process" constraint. This is for 486 * utility type controllers which is transparent to userland. 487 * 488 * An implicit controller can be stolen from the default hierarchy 489 * anytime and thus must be okay with offline csses from previous 490 * hierarchies coexisting with csses for the current one. 491 */ 492 bool implicit_on_dfl:1; 493 494 /* 495 * If %false, this subsystem is properly hierarchical - 496 * configuration, resource accounting and restriction on a parent 497 * cgroup cover those of its children. If %true, hierarchy support 498 * is broken in some ways - some subsystems ignore hierarchy 499 * completely while others are only implemented half-way. 500 * 501 * It's now disallowed to create nested cgroups if the subsystem is 502 * broken and cgroup core will emit a warning message on such 503 * cases. Eventually, all subsystems will be made properly 504 * hierarchical and this will go away. 505 */ 506 bool broken_hierarchy:1; 507 bool warned_broken_hierarchy:1; 508 509 /* the following two fields are initialized automtically during boot */ 510 int id; 511 const char *name; 512 513 /* optional, initialized automatically during boot if not set */ 514 const char *legacy_name; 515 516 /* link to parent, protected by cgroup_lock() */ 517 struct cgroup_root *root; 518 519 /* idr for css->id */ 520 struct idr css_idr; 521 522 /* 523 * List of cftypes. Each entry is the first entry of an array 524 * terminated by zero length name. 525 */ 526 struct list_head cfts; 527 528 /* 529 * Base cftypes which are automatically registered. The two can 530 * point to the same array. 531 */ 532 struct cftype *dfl_cftypes; /* for the default hierarchy */ 533 struct cftype *legacy_cftypes; /* for the legacy hierarchies */ 534 535 /* 536 * A subsystem may depend on other subsystems. When such subsystem 537 * is enabled on a cgroup, the depended-upon subsystems are enabled 538 * together if available. Subsystems enabled due to dependency are 539 * not visible to userland until explicitly enabled. The following 540 * specifies the mask of subsystems that this one depends on. 541 */ 542 unsigned int depends_on; 543}; 544 545extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem; 546 547/** 548 * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups 549 * @tsk: target task 550 * 551 * Allows cgroup operations to synchronize against threadgroup changes 552 * using a percpu_rw_semaphore. 553 */ 554static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk) 555{ 556 percpu_down_read(&cgroup_threadgroup_rwsem); 557} 558 559/** 560 * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups 561 * @tsk: target task 562 * 563 * Counterpart of cgroup_threadcgroup_change_begin(). 564 */ 565static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) 566{ 567 percpu_up_read(&cgroup_threadgroup_rwsem); 568} 569 570#else /* CONFIG_CGROUPS */ 571 572#define CGROUP_SUBSYS_COUNT 0 573 574static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk) 575{ 576 might_sleep(); 577} 578 579static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) {} 580 581#endif /* CONFIG_CGROUPS */ 582 583#ifdef CONFIG_SOCK_CGROUP_DATA 584 585/* 586 * sock_cgroup_data is embedded at sock->sk_cgrp_data and contains 587 * per-socket cgroup information except for memcg association. 588 * 589 * On legacy hierarchies, net_prio and net_cls controllers directly set 590 * attributes on each sock which can then be tested by the network layer. 591 * On the default hierarchy, each sock is associated with the cgroup it was 592 * created in and the networking layer can match the cgroup directly. 593 * 594 * To avoid carrying all three cgroup related fields separately in sock, 595 * sock_cgroup_data overloads (prioidx, classid) and the cgroup pointer. 596 * On boot, sock_cgroup_data records the cgroup that the sock was created 597 * in so that cgroup2 matches can be made; however, once either net_prio or 598 * net_cls starts being used, the area is overriden to carry prioidx and/or 599 * classid. The two modes are distinguished by whether the lowest bit is 600 * set. Clear bit indicates cgroup pointer while set bit prioidx and 601 * classid. 602 * 603 * While userland may start using net_prio or net_cls at any time, once 604 * either is used, cgroup2 matching no longer works. There is no reason to 605 * mix the two and this is in line with how legacy and v2 compatibility is 606 * handled. On mode switch, cgroup references which are already being 607 * pointed to by socks may be leaked. While this can be remedied by adding 608 * synchronization around sock_cgroup_data, given that the number of leaked 609 * cgroups is bound and highly unlikely to be high, this seems to be the 610 * better trade-off. 611 */ 612struct sock_cgroup_data { 613 union { 614#ifdef __LITTLE_ENDIAN 615 struct { 616 u8 is_data; 617 u8 padding; 618 u16 prioidx; 619 u32 classid; 620 } __packed; 621#else 622 struct { 623 u32 classid; 624 u16 prioidx; 625 u8 padding; 626 u8 is_data; 627 } __packed; 628#endif 629 u64 val; 630 }; 631}; 632 633/* 634 * There's a theoretical window where the following accessors race with 635 * updaters and return part of the previous pointer as the prioidx or 636 * classid. Such races are short-lived and the result isn't critical. 637 */ 638static inline u16 sock_cgroup_prioidx(struct sock_cgroup_data *skcd) 639{ 640 /* fallback to 1 which is always the ID of the root cgroup */ 641 return (skcd->is_data & 1) ? skcd->prioidx : 1; 642} 643 644static inline u32 sock_cgroup_classid(struct sock_cgroup_data *skcd) 645{ 646 /* fallback to 0 which is the unconfigured default classid */ 647 return (skcd->is_data & 1) ? skcd->classid : 0; 648} 649 650/* 651 * If invoked concurrently, the updaters may clobber each other. The 652 * caller is responsible for synchronization. 653 */ 654static inline void sock_cgroup_set_prioidx(struct sock_cgroup_data *skcd, 655 u16 prioidx) 656{ 657 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }}; 658 659 if (sock_cgroup_prioidx(&skcd_buf) == prioidx) 660 return; 661 662 if (!(skcd_buf.is_data & 1)) { 663 skcd_buf.val = 0; 664 skcd_buf.is_data = 1; 665 } 666 667 skcd_buf.prioidx = prioidx; 668 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */ 669} 670 671static inline void sock_cgroup_set_classid(struct sock_cgroup_data *skcd, 672 u32 classid) 673{ 674 struct sock_cgroup_data skcd_buf = {{ .val = READ_ONCE(skcd->val) }}; 675 676 if (sock_cgroup_classid(&skcd_buf) == classid) 677 return; 678 679 if (!(skcd_buf.is_data & 1)) { 680 skcd_buf.val = 0; 681 skcd_buf.is_data = 1; 682 } 683 684 skcd_buf.classid = classid; 685 WRITE_ONCE(skcd->val, skcd_buf.val); /* see sock_cgroup_ptr() */ 686} 687 688#else /* CONFIG_SOCK_CGROUP_DATA */ 689 690struct sock_cgroup_data { 691}; 692 693#endif /* CONFIG_SOCK_CGROUP_DATA */ 694 695#endif /* _LINUX_CGROUP_DEFS_H */