Skip to content
Snippets Groups Projects
Select Git revision
  • e3461a2bc0d67ce60a915e0f26e2a6eb4a4d4b99
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

drm_fops.c

Blame
  • memcontrol.c 175.10 KiB
    // SPDX-License-Identifier: GPL-2.0-or-later
    /* 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
     *
     * Native page reclaim
     * Charge lifetime sanitation
     * Lockless page tracking & accounting
     * Unified hierarchy configuration model
     * Copyright (C) 2015 Red Hat, Inc., Johannes Weiner
     */
    
    #include <linux/page_counter.h>
    #include <linux/memcontrol.h>
    #include <linux/cgroup.h>
    #include <linux/mm.h>
    #include <linux/sched/mm.h>
    #include <linux/shmem_fs.h>
    #include <linux/hugetlb.h>
    #include <linux/pagemap.h>
    #include <linux/vm_event_item.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/swap_cgroup.h>
    #include <linux/cpu.h>
    #include <linux/oom.h>
    #include <linux/lockdep.h>
    #include <linux/file.h>
    #include <linux/tracehook.h>
    #include <linux/seq_buf.h>
    #include "internal.h"
    #include <net/sock.h>
    #include <net/ip.h>
    #include "slab.h"
    
    #include <linux/uaccess.h>
    
    #include <trace/events/vmscan.h>
    
    struct cgroup_subsys memory_cgrp_subsys __read_mostly;