summaryrefslogtreecommitdiffstats
path: root/mm/fremap.c
AgeCommit message (Expand)Author
2010-09-25Avoid pgoff overflow in remap_file_pagesLarry Woodman
2010-09-24fremap: get rid of broken 'end' variableLinus Torvalds
2010-03-06mm: clean up mm_counterKAMEZAWA Hiroyuki
2009-02-10Do not account for the address space used by hugetlbfs using VM_ACCOUNTMel Gorman
2009-01-14[CVE-2009-0029] System call wrappers part 13Heiko Carstens
2009-01-06badpage: remove vma from page_remove_rmapHugh Dickins
2008-10-20mmap: handle mlocked pages during map, remap, unmapRik van Riel
2008-07-28mmu-notifiers: coreAndrea Arcangeli
2008-03-19mm: fix various kernel-doc commentsRandy Dunlap
2008-02-05sys_remap_file_pages: fix ->vm_file accountingOleg Nesterov
2007-10-17remap_file_pages: kernel-doc correctionsRandy Dunlap
2007-10-17Drop some headers from mm.hAlexey Dobriyan
2007-10-08fix VM_CAN_NONLINEAR check in sys_remap_file_pagesYan Zheng
2007-07-19only allow nonlinear vmas for ram backed filesystemsMiklos Szeredi
2007-07-19mm: fault feedback #1Nick Piggin
2007-07-19mm: merge populate and nopage into fault (fixes nonlinear)Nick Piggin
2006-12-22[PATCH] mm: more rmap debuggingNick Piggin
2006-12-07[PATCH] kill install_file_pte's pte_valHugh Dickins
2006-10-01[PATCH] paravirt: pte clear not presentZachary Amsden
2006-09-26[PATCH] mm: small cleanup of install_page()Peter Zijlstra
2006-06-23[PATCH] fix update_mmu_cache in fremap.cHugh Dickins
2005-11-29VM: add common helper function to create the page tablesLinus Torvalds
2005-11-28mm: re-architect the VM_UNPAGED logicLinus Torvalds
2005-11-22[PATCH] unpaged: VM_NONLINEAR VM_RESERVEDHugh Dickins
2005-11-22[PATCH] unpaged: VM_UNPAGEDHugh Dickins
2005-10-29[PATCH] mm: ptd_alloc take ptlockHugh Dickins
2005-10-29[PATCH] mm: update_hiwaters just in timeHugh Dickins
2005-10-29[PATCH] mm: zap_pte out of lineHugh Dickins
2005-10-29[PATCH] core remove PageReservedNick Piggin
2005-10-29[PATCH] mm: rss = file_rss + anon_rssHugh Dickins
2005-10-11[PATCH] Don't map the same page too muchHugh Dickins
2005-04-16Linux-2.6.12-rc2Linus Torvalds
lass="cm"> * * Copyright (C) 2014 Texas Instruments. All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free Software Foundation. */ #ifndef __WLCORE_VENDOR_H__ #define __WLCORE_VENDOR_H__ #ifdef __KERNEL__ void wlcore_set_vendor_commands(struct wiphy *wiphy); #endif #define TI_OUI 0x080028 enum wlcore_vendor_commands { WLCORE_VENDOR_CMD_SMART_CONFIG_START, WLCORE_VENDOR_CMD_SMART_CONFIG_STOP, WLCORE_VENDOR_CMD_SMART_CONFIG_SET_GROUP_KEY, NUM_WLCORE_VENDOR_CMD, MAX_WLCORE_VENDOR_CMD = NUM_WLCORE_VENDOR_CMD - 1 }; enum wlcore_vendor_attributes { WLCORE_VENDOR_ATTR_FREQ, WLCORE_VENDOR_ATTR_PSK, WLCORE_VENDOR_ATTR_SSID, WLCORE_VENDOR_ATTR_GROUP_ID, WLCORE_VENDOR_ATTR_GROUP_KEY, NUM_WLCORE_VENDOR_ATTR, MAX_WLCORE_VENDOR_ATTR = NUM_WLCORE_VENDOR_ATTR - 1 }; enum wlcore_vendor_events { WLCORE_VENDOR_EVENT_SC_SYNC, WLCORE_VENDOR_EVENT_SC_DECODE, }; #endif /* __WLCORE_VENDOR_H__ */