aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/uio/uio.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-27Fix build errors due to new UIO_MEM_DMA_COHERENT messLinus Torvalds1-1/+1
2024-03-07uio: introduce UIO_MEM_DMA_COHERENT typeChris Leech1-0/+47
2024-01-04uio: Fix use-after-free in uio_openGuanghui Feng1-4/+3
2023-02-09mm: replace vma->vm_flags direct modifications with modifier callsSuren Baghdasaryan1-1/+1
2021-12-29UIO: use default_groups in kobj_typeGreg Kroah-Hartman1-3/+5
2020-11-16Merge 5.10-rc4 into char-misc-nextGreg Kroah-Hartman1-4/+6
2020-11-09uio: Fix use-after-free in uio_unregister_device()Shin'ichiro Kawasaki1-4/+6
2020-11-09uio: fix some kernel-doc markupsMauro Carvalho Chehab1-2/+2
2020-09-17uio: free uio id after uio file node is freedLang Dai1-2/+2
2020-04-28drivers: uio: remove redundant assignment to variable retvalColin Ian King1-1/+1
2020-03-18uio: add resource managed devm_uio_register_device() functionAlexandru Ardelean1-0/+38
2019-01-31driver: uio: fix possible use-after-free in __uio_register_deviceLiu Jian1-2/+4
2019-01-31driver: uio: fix possible memory leak in __uio_register_deviceLiu Jian1-1/+3
2019-01-22uio: remove redundant checkChengguang Xu1-2/+2
2019-01-22uio: fix potential memory leak in error caseChengguang Xu1-1/+1
2018-11-27uio: dismiss waiters on device unregistrationZhaolong Zhang1-8/+11
2018-11-11uio: Fix an Oops on loadDan Carpenter1-2/+5
2018-10-02uio: make symbol 'uio_class_registered' staticWei Yongjun1-1/+1
2018-09-25uio: introduce UIO_MEM_IOVAStephen Hemminger1-11/+13
2018-09-12uio: convert to vm_fault_tSouptick Joarder1-1/+1
2018-09-12uio: ensure class is registered before devicesAlexandre Belloni1-0/+9
2018-08-19Merge tag 'char-misc-4.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-6/+2
2018-08-12Revert "uio: use request_threaded_irq instead"Xiubo Li1-6/+2
2018-08-02uio: potential double frees if __uio_register_device() failsDan Carpenter1-2/+1
2018-08-02uio: fix possible circular locking dependencyXiubo Li1-10/+6
2018-07-21uio: fix wrong return value from uio_mmap()Hailong Liu1-1/+1
2018-07-21uio: add SPDX license tagStephen Hemminger1-2/+1
2018-07-07uio: fix crash after the device is unregisteredXiubo Li1-16/+88
2018-07-07uio: change to use the mutex lock instead of the spin lockXiubo Li1-19/+13
2018-07-07uio: use request_threaded_irq insteadXiubo Li1-2/+3
2018-05-14uio: Prevent device destruction while fds are openHamish Martin1-26/+72
2018-05-14uio: Reduce return paths from uio_write()Hamish Martin1-8/+17
2018-04-23uio: Change return type to vm_fault_tSouptick Joarder1-1/+1
2018-02-11vfs: do bulk POLL* -> EPOLL* replacementLinus Torvalds1-1/+1
2017-11-28the rest of drivers/*: annotate ->poll() instancesAl Viro1-1/+1
2017-05-16uio: fix incorrect memory leak cleanupSuman Anna1-4/+4
2017-04-08uio: Allow handling of non page-aligned memory regionsMichal Sojka1-1/+1
2017-03-02sched/headers: Prepare to move signal wakeup & sigpending methods from <linux...Ingo Molnar1-1/+1
2017-02-24mm, fs: reduce fault, page_mkwrite, and pfn_mkwrite to take only vmfDave Jiang1-3/+3
2016-05-01uio: add missing error codesDan Carpenter1-4/+12
2015-10-04uio: fix false positive __might_sleep warning splatMichal Hocko1-0/+1
2015-08-05uio: Destroy uio_idr on module exitJohannes Thumshirn1-0/+1
2015-05-24uio: don't free irq that was not requestedStephen Hemminger1-1/+2
2015-03-20uio: Request/free irq separate from dev lifecycleBrian Russell1-1/+11
2014-11-07uio: support memory sizes larger than 32 bitsCristian Stoica1-2/+2
2014-10-02uio: Export definition of struct uio_deviceAndy Grover1-12/+0
2014-06-17Revert "uio: fix vma io range check in mmap"Greg Kroah-Hartman1-1/+1
2014-05-27uio: fix vma io range check in mmapBin Wang1-1/+1
2013-12-20uio: fix devm_request_irq usageAaro Koskinen1-1/+1
2013-12-02uio: we cannot mmap unaligned page contentsLinus Torvalds1-0/+2
2013-11-07Merge tag 'char-misc-3.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-20/+18
2013-10-29uio: Pass pointers to virt_to_page(), not integersBen Hutchings1-2/+4
2013-10-29uio: fix memory leakCong Ding1-6/+10
2013-10-29Fix a few incorrectly checked [io_]remap_pfn_range() callsLinus Torvalds1-2/+15
2013-09-26uio: Simplify uio error path by using devres functionsMichal Simek1-12/+4
2013-09-03Merge tag 'driver-core-3.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-9/+13
2013-08-12uio: drop unused vma_count member in uio_device structUwe Kleine-König1-16/+0
2013-08-12uio: provide vm access to UIO_MEM_PHYS mapsUwe Kleine-König1-9/+17
2013-07-24UIO: convert class code to use dev_groupsGreg Kroah-Hartman1-9/+13
2013-07-03uio: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFTLibin1-1/+1
2013-03-29drivers: uio: Fix UIO device registration failureDamian Hobson-Garcia1-0/+1
2013-02-27uio: convert to idr_alloc()Tejun Heo1-15/+4
2012-10-09mm: kill vma flag VM_RESERVED and mm->reserved_vm counterKonstantin Khlebnikov1-3/+1
2011-10-18uio: Support physical addresses >32 bits on 32-bit systemsKai Jiang1-4/+3
2011-08-22drivers:uio:change the goto label to consistent with othersWanlong Gao1-4/+3
2011-04-19uio: fix allocating minor id for uio deviceHillf Danton1-1/+7
2011-04-19uio: fix finding mm index for vmaHillf Danton1-5/+3
2010-11-10uio: Change mail address of Hans J. KochHans J. Koch1-1/+1
2010-10-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6Linus Torvalds1-94/+69
2010-10-22uio: Statically allocate uio_class and use class .dev_attrs.Eric W. Biederman1-35/+18
2010-10-22uio: Support 2^MINOR_BITS minorsEric W. Biederman1-6/+37
2010-10-22uio: Cleanup irq handling.Eric W. Biederman1-7/+7
2010-10-22uio: Don't clear driver dataEric W. Biederman1-14/+3
2010-10-22uio: Fix lack of locking in init_uio_classEric W. Biederman1-43/+15
2010-10-15llseek: automatically add .llseek fopArnd Bergmann1-0/+1
2010-03-30include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp...Tejun Heo1-0/+1
2010-03-07Driver core: Constify struct sysfs_ops in struct kobj_typeEmese Revfy1-2/+2
2009-10-11headers: remove sched.h from interrupt.hAlexey Dobriyan1-0/+1
2009-09-27const: mark struct vm_struct_operationsAlexey Dobriyan1-1/+1
2009-03-24UIO: Take offset into account when determining number of pages that can be ma...Ian Abbott1-1/+2
2009-03-24UIO: Add name attributes for mappings and port regionsHans J. Koch1-0/+22
2009-01-06UIO: Pass information about ioports to userspace (V2)Hans J. Koch1-17/+142
2008-11-01saner FASYNC handling on file closeAl Viro1-3/+0
2008-10-20Merge branch 'bkl-removal' of git://git.lwn.net/linux-2.6Linus Torvalds1-6/+8
2008-10-16UIO: BKL removalJonathan Corbet1-6/+8
2008-10-16UIO: Fix mapping of logical and virtual memoryAndrew G. Harvey1-2/+10
2008-10-16UIO: Add alignment warnings for uio-memHans J. Koch1-0/+8
2008-10-16device create: misc: convert device_create_drvdata to device_createGreg Kroah-Hartman1-3/+3
2008-07-21UIO: Add write function to allow irq maskingHans J. Koch1-0/+26
2008-07-14Merge commit 'v2.6.26' into bkl-removalJonathan Corbet1-4/+3
2008-06-20UIO: cdev lock_kernel() pushdownJonathan Corbet1-5/+12
2008-05-20UIO: fix race in device_createGreg Kroah-Hartman1-4/+3
2008-04-19UIO: hold a reference to the device's owner while the device is openUwe Kleine-König1-15/+21
2008-03-24UIO: add pgprot_noncached() to UIO mmap codeJean-Samuel Chenard1-0/+2
2008-02-21UIO: fix Greg's stupid changesBrandon Philips1-17/+37
2008-02-06uio: nopageNick Piggin1-8/+6
2008-01-24UIO: constify function pointer tablesJan Engelhardt1-2/+2
2008-01-24Kobject: convert drivers/* from kobject_unregister() to kobject_put()Greg Kroah-Hartman1-4/+4
2008-01-24Kobject: rename kobject_init_ng() to kobject_init()Greg Kroah-Hartman1-1/+1
2008-01-24Kobject: rename kobject_add_ng() to kobject_add()Greg Kroah-Hartman1-1/+1
2008-01-24UIO: fix kobject usageGreg Kroah-Hartman1-43/+48
2008-01-24kobject: remove struct kobj_type from struct ksetGreg Kroah-Hartman1-1/+1
2007-07-18UIO: Add the User IO core codeHans J. Koch1-0/+701