aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/brd.c
AgeCommit message (Expand)AuthorFilesLines
2024-04-01brd: Remove use of page->indexMatthew Wilcox (Oracle)1-29/+11
2024-02-19brd: pass queue_limits to blk_mq_alloc_diskChristoph Hellwig1-10/+11
2024-02-19block: pass a queue_limits argument to blk_alloc_diskChristoph Hellwig1-3/+4
2023-06-14brd: use cond_resched instead of cond_resched_rcuPankaj Raghav1-1/+1
2023-05-16brd: use XArray instead of radix-tree to index backing pagesPankaj Raghav1-69/+24
2023-04-25block/drivers: remove dead clear of random flagChaitanya Kulkarni1-1/+0
2023-02-23Merge tag 'mm-stable-2023-02-20-13-37' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-14/+1
2023-02-17brd: use radix_tree_maybe_preload instead of radix_tree_preloadPankaj Raghav1-1/+1
2023-02-16brd: mark as nowait compatibleJens Axboe1-0/+1
2023-02-16brd: check for REQ_NOWAIT and set correct page allocation maskJens Axboe1-20/+28
2023-02-16brd: return 0/-error from brd_insert_page()Jens Axboe1-14/+12
2023-02-02block: remove ->rw_pageChristoph Hellwig1-14/+1
2022-09-21block: move from strlcpy with unused retval to strscpyWolfram Sang1-1/+1
2022-07-14block/brd: Use the enum req_op typeBart Van Assche1-1/+1
2022-07-14block: Change the type of the last .rw_page() argumentBart Van Assche1-1/+1
2022-06-28block: remove blk_cleanup_diskChristoph Hellwig1-2/+2
2022-01-17brd: remove brd_devices_mutex mutexTetsuo Handa1-43/+30
2021-11-29block: remove GENHD_FL_EXT_DEVTChristoph Hellwig1-1/+0
2021-10-30block/brd: add error handling support for add_disk()Luis Chamberlain1-2/+7
2021-10-18block: switch polling to be bio basedChristoph Hellwig1-7/+5
2021-10-17brd: reduce the brd_devices_mutex scopeTetsuo Handa1-22/+22
2021-08-11block: move some macros to blkdev.hGuoqing Jiang1-3/+0
2021-06-01brd: convert to blk_alloc_disk/blk_cleanup_diskChristoph Hellwig1-61/+33
2021-05-06include: remove pagemap.h from blkdev.hMatthew Wilcox (Oracle)1-0/+1
2021-04-21brd: expose number of allocated pages in debugfsCalvin Owens1-1/+18
2021-01-24block: store a block_device pointer in struct bioChristoph Hellwig1-1/+1
2021-01-24brd: remove the end of device check in brd_do_bvecChristoph Hellwig1-5/+1
2020-11-16brd: use __register_blkdev to allocate devices on demandChristoph Hellwig1-28/+11
2020-09-24bdi: remove BDI_CAP_SYNCHRONOUS_IOChristoph Hellwig1-1/+0
2020-07-01block: move ->make_request_fn to struct block_device_operationsChristoph Hellwig1-2/+3
2020-03-27block: simplify queue allocationChristoph Hellwig1-3/+1
2020-02-04brd: check and limit max_part parZhiqiang Liu1-2/+20
2019-12-04brd: warn on un-aligned bufferMing Lei1-0/+4
2019-12-04brd: remove max_hw_sectors queue limitMing Lei1-1/+0
2019-05-21treewide: Add SPDX license identifier for more missed filesThomas Gleixner1-0/+1
2019-05-09brd: add cond_resched to brd_free_pagesMikulas Patocka1-0/+6
2019-04-22brd: re-enable __GFP_HIGHMEM in brd_insert_page()Hou Tao1-6/+1
2018-11-01block: brd: associate with queue until adding diskMing Lei1-5/+11
2018-07-18block: make bdev_ops->rw_page() take a REQ_OP instead of boolTejun Heo1-7/+7
2018-05-24block drivers/block: Use octal not symbolic permissionsJoe Perches1-3/+3
2018-05-09brd: Mark as non-rotationalSeongJae Park1-0/+4
2018-03-17block: Move SECTOR_SIZE and SECTOR_SHIFT definitions into <linux/blkdev.h>Bart Van Assche1-1/+0
2018-02-26genhd: Rename get_disk() to get_disk_and_module()Jan Kara1-1/+1
2017-11-17Merge tag 'libnvdimm-for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-65/+0
2017-11-15bdi: introduce BDI_CAP_SYNCHRONOUS_IOMinchan Kim1-0/+2
2017-11-14brd: remove dax supportDan Williams1-65/+0
2017-11-10brd: remove unused brd_mutexMikulas Patocka1-1/+0
2017-09-25brd: fix overflow in __brd_direct_accessMikulas Patocka1-1/+1
2017-09-07Merge branch 'for-4.14/block' of git://git.kernel.dk/linux-blockLinus Torvalds1-3/+2
2017-09-06block, THP: make block_device_operations.rw_page support THPHuang Ying1-1/+5
2017-08-23block: replace bi_bdev with a gendisk pointer and partitions indexChristoph Hellwig1-3/+2
2017-07-10ARM: fix rd_size declarationBart Van Assche1-0/+1
2017-07-07Merge tag 'libnvdimm-for-4.13' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-0/+8
2017-06-27dax: remove default copy_from_iter fallbackDan Williams1-0/+8
2017-06-27block: don't bother with bounce limits for make_request driversChristoph Hellwig1-1/+0
2017-05-05Merge tag 'libnvdimm-for-4.12' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-11/+37
2017-05-03brd: fix uninitialized use of brd->dax_devGerald Schaefer1-7/+5
2017-04-25block: remove block_device_operations ->direct_access()Dan Williams1-15/+0
2017-04-19brd: add dax_operations supportDan Williams1-11/+54
2017-04-08brd: remove discard supportChristoph Hellwig1-54/+0
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyLinus Torvalds1-1/+1
2016-10-25brd: remove support for BLKFLSBUFMike Snitzer1-35/+0
2016-10-25brd: Switch rd_size to unsigned longJan Kara1-2/+2
2016-08-07block/mm: make bdev_ops->rw_page() take a bool for read/writeJens Axboe1-8/+8
2016-08-04mm/block: convert rw_page users to bio op useMike Christie1-10/+7
2016-07-28Merge tag 'libnvdimm-for-4.8' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-2/+2
2016-07-26Merge branch 'for-4.8/drivers' of git://git.kernel.dk/linux-blockLinus Torvalds1-3/+1
2016-07-20block: add QUEUE_FLAG_DAX for devices to advertise their DAX supportToshi Kani1-1/+3
2016-07-20block: get rid of bio_rw and READAChristoph Hellwig1-3/+1
2016-07-12pmem: kill __pmem address spaceDan Williams1-2/+2
2016-06-07block, fs, mm, drivers: use bio set/get op accessorsMike Christie1-1/+1
2016-05-18dax: enable dax in the presence of known media errors (badblocks)Dan Williams1-1/+1
2016-04-04mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macrosKirill A. Shutemov1-1/+1
2016-03-15brd: Fix discard request processingBart Van Assche1-1/+1
2016-01-15mm, dax, pmem: introduce pfn_tDan Williams1-2/+5
2015-11-11brd: Refuse improperly aligned discard requestsJan Kara1-0/+3
2015-11-07block: change ->make_request_fn() and users to return a queue cookieJens Axboe1-2/+3
2015-09-08Merge tag 'libnvdimm-for-4.3' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-6/+2
2015-08-27dax: drop size parameter to ->direct_access()Dan Williams1-5/+1
2015-08-20pmem, dax: have direct_access use __pmem annotationRoss Zwisler1-2/+2
2015-07-29block: add a bi_error field to struct bioChristoph Hellwig1-5/+8
2015-07-17block: have drivers use blk_queue_max_discard_sectors()Jens Axboe1-1/+1
2015-02-16brd: rename XIP to DAXMatthew Wilcox1-7/+7
2015-01-13brd: Request from fdisk 4k alignmentBoaz Harrosh1-0/+9
2015-01-13brd: Fix all partitions BUGsBoaz Harrosh1-62/+38
2015-01-13block: Change direct_access calling conventionMatthew Wilcox1-7/+7
2014-08-21brd: add ram disk visibility optionDmitry Monakhov1-1/+5
2014-06-04brd: return -ENOSPC rather than -ENOMEM on page allocation failureMatthew Wilcox1-3/+3
2014-06-04brd: add support for rw_page()Matthew Wilcox1-0/+10
2013-11-23block: Convert bio_for_each_segment() to bvec_iterKent Overstreet1-6/+6
2013-11-23block: Abstract out bvec iteratorKent Overstreet1-2/+2
2013-11-08block: fix a probe argument to blk_register_regionMikulas Patocka1-1/+1
2013-05-24drivers/block/brd.c: fix brd_lookup_page() raceBrian Behlendorf1-2/+2
2013-03-23block: Add bio_end_sector()Kent Overstreet1-2/+1
2012-03-20block: remove the second argument of k[un]map_atomic()Cong Wang1-10/+10
2012-01-03fs: move code out of buffer.cAl Viro1-5/+4
2011-09-12block: remove support for bio remapping from ->make_requestChristoph Hellwig1-3/+1
2011-05-26brd: export module parametersNamhyung Kim1-4/+15
2011-05-26brd: fix comment on initial device creationNamhyung Kim1-4/+4
2011-05-26brd: handle on-demand devices correctlyNamhyung Kim1-4/+4
2011-05-26brd: limit 'max_part' module param to DISK_MAX_PARTSNamhyung Kim1-0/+3
2011-05-26brd: get rid of unused members from struct brd_deviceNamhyung Kim1-4/+0
2010-10-22Merge branch 'for-2.6.37/barrier' of git://git.kernel.dk/linux-2.6-blockLinus Torvalds1-1/+0
2010-10-05block: autoconvert trivial BKL users to private mutexArnd Bergmann1-3/+4
2010-09-10block: deprecate barrier and replace blk_queue_ordered() with blk_queue_flush()Tejun Heo1-1/+0
2010-09-10block: kill QUEUE_ORDERED_BY_TAGTejun Heo1-1/+1
2010-08-07block: push down BKL into .locked_ioctlArnd Bergmann1-1/+4
2010-08-07block: remove q->prepare_flush_fn completelyFUJITA Tomonori1-1/+1
2010-08-07block: unify flags for struct bio and struct requestChristoph Hellwig1-1/+1
2010-06-01brd: support discardNick Piggin1-1/+52
2010-03-30include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp...Tejun Heo1-1/+1
2010-02-26block: Rename blk_queue_max_sectors to blk_queue_max_hw_sectorsMartin K. Petersen1-1/+1
2009-09-22const: make block_device_operations constAlexey Dobriyan1-1/+1
2009-06-10ramdisk: remove long-deprecated "ramdisk=" boot-time parameterRobert P. J. Day1-6/+1
2009-04-15brd: fix cacheflushingNick Piggin1-1/+3
2009-04-15brd: support barriersNick Piggin1-0/+1
2008-10-21[PATCH] switch brdAl Viro1-3/+2
2008-10-21[PATCH] beginning of methods conversionAl Viro1-1/+1
2008-08-20brd: fix name argument of unregister_blkdev()Akinobu Mita1-1/+1
2008-06-05Add 'rd' alias to new brd ramdisk driverNick Piggin1-0/+1
2008-05-24brd: don't show ramdisks in /proc/partitionsMarcin Krol1-0/+1
2008-04-30brd: modify ramdisk device to be able to manage partitionsLaurent Vivier1-5/+14
2008-04-28return pfn from direct_access, for XIPJared Hulbert1-2/+3
2008-04-22fix brd allocation flagsPetr Tesarik1-1/+1
2008-02-08rd: support XIPNick Piggin1-2/+37
2008-02-08rewrite rdNick Piggin1-0/+548