Skip to content
Snippets Groups Projects
Select Git revision
  • 8d6ef26501b97243ee6c16b8187c5b38cb69b77d
  • drm-misc-templates default
  • wip/final/kci-gitlab-lava-v1
  • wip/vignesh/kci-lava-gitlab-runner
  • kci-gitlab-igt-v8
  • kci-gitlab-igt-v4
  • drm-misc-fixes-2024-10-02
  • drm-misc-next-2024-09-26
  • drm-misc-fixes-2024-09-26
  • drm-misc-next-2024-09-20
  • drm-misc-fixes-2024-09-12
  • drm-misc-fixes-2024-09-05
  • drm-misc-next-fixes-2024-09-05
  • drm-misc-fixes-2024-08-29
  • drm-misc-next-2024-08-29
  • drm-misc-next-2024-08-22
  • drm-misc-fixes-2024-08-22
  • drm-misc-next-2024-08-16
  • drm-misc-fixes-2024-08-15
  • drm-misc-next-2024-08-09
  • drm-misc-fixes-2024-08-08
  • drm-misc-next-2024-08-01
  • drm-misc-fixes-2024-08-01
  • drm-misc-next-fixes-2024-07-25
  • drm-misc-next-fixes-2024-07-19
  • drm-misc-next-fixes-2024-07-11
26 results

ast_drv.h

Blame
  • memcontrol.c 155.30 KiB
    /* memcontrol.c - Memory Controller
     *
     * Copyright IBM Corporation, 2007
     * Author Balbir Singh <balbir@linux.vnet.ibm.com>
     *
     * Copyright 2007 OpenVZ SWsoft Inc
     * Author: Pavel Emelianov <xemul@openvz.org>
     *
     * Memory thresholds
     * Copyright (C) 2009 Nokia Corporation
     * Author: Kirill A. Shutemov
     *
     * Kernel Memory Controller
     * Copyright (C) 2012 Parallels Inc. and Google Inc.
     * Authors: Glauber Costa and Suleiman Souhlal
     *
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation; either version 2 of the License, or
     * (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     */
    
    #include <linux/page_counter.h>
    #include <linux/memcontrol.h>
    #include <linux/cgroup.h>
    #include <linux/mm.h>
    #include <linux/hugetlb.h>
    #include <linux/pagemap.h>
    #include <linux/smp.h>
    #include <linux/page-flags.h>
    #include <linux/backing-dev.h>
    #include <linux/bit_spinlock.h>
    #include <linux/rcupdate.h>
    #include <linux/limits.h>
    #include <linux/export.h>
    #include <linux/mutex.h>
    #include <linux/rbtree.h>
    #include <linux/slab.h>
    #include <linux/swap.h>
    #include <linux/swapops.h>
    #include <linux/spinlock.h>
    #include <linux/eventfd.h>
    #include <linux/poll.h>
    #include <linux/sort.h>
    #include <linux/fs.h>
    #include <linux/seq_file.h>
    #include <linux/vmpressure.h>
    #include <linux/mm_inline.h>
    #include <linux/page_cgroup.h>
    #include <linux/cpu.h>
    #include <linux/oom.h>
    #include <linux/lockdep.h>
    #include <linux/file.h>
    #include "internal.h"
    #include <net/sock.h>
    #include <net/ip.h>
    #include <net/tcp_memcontrol.h>
    #include "slab.h"
    
    #include <asm/uaccess.h>
    
    #include <trace/events/vmscan.h>
    
    struct cgroup_subsys memory_cgrp_subsys __read_mostly;
    EXPORT_SYMBOL(memory_cgrp_subsys);