summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | lib, net: make isodigit() public and use itAndy Shevchenko2013-04-301-1/+0Star
* | | | | argv_split(): teach it to handle mutable stringsOleg Nesterov2013-04-301-47/+40Star
* | | | | lib/int_sqrt.c: optimize square root algorithmDavidlohr Bueso2013-04-301-13/+19
* | | | | genalloc: add devres support, allow to find a managed pool by devicePhilipp Zabel2013-04-301-0/+81
* | | | | mm, show_mem: suppress page counts in non-blockable contextsDavid Rientjes2013-04-301-0/+3
| |_|_|/ |/| | |
* | | | Merge branch 'x86-kdump-for-linus' of git://git.kernel.org/pub/scm/linux/kern...Linus Torvalds2013-04-211-4/+15
|\ \ \ \
| * | | | x86, kdump: Set crashkernel_low automaticallyYinghai Lu2013-04-171-4/+15
* | | | | Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds2013-04-213-0/+56
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Merge remote-tracking branch 'efi/urgent' into x86/urgentH. Peter Anvin2013-04-203-0/+56
| |\ \ \ \ | | |_|/ / | |/| | |
| | * | | Move utf16 functions to kernel core and renameMatthew Garrett2013-04-153-0/+56
* | | | | kobject: fix kset_find_obj() race with concurrent last kobject_put()Linus Torvalds2013-04-141-1/+8
|/ / / /
* | | | dma-debug: update DMA debug API to better handle multiple mappings of a bufferAlexander Duyck2013-03-231-5/+19
* | | | dma-debug: fix locking bug in check_unmap()Alexander Duyck2013-03-231-9/+12
* | | | printk: Provide a wake_up_klogd() off-caseFrederic Weisbecker2013-03-231-2/+1Star
| |_|/ |/| |
* | | idr: idr_alloc() shouldn't trigger lowmem warning when preloadedTejun Heo2013-03-131-13/+25
* | | decompressors: fix typo "POWERPC"Paul Bolle2013-03-131-1/+1
* | | idr: deprecate idr_pre_get() and idr_get_new[_above]()Tejun Heo2013-03-131-36/+5Star
* | | idr: fix new kernel-doc warningsRandy Dunlap2013-03-131-1/+0Star
|/ /
* / idr: remove WARN_ON_ONCE() on negative IDsTejun Heo2013-03-091-13/+3Star
|/
* Merge tag 'metag-v3.9-rc1-v4' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds2013-03-031-2/+2
|\
| * Kconfig.debug: add METAG to dependency listsJames Hogan2013-03-021-2/+2
* | Merge tag 'for_linux-3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/jw...Linus Torvalds2013-03-021-0/+18
|\ \
| * | Fixed dead ifdef block by adding missing Kconfig option.Robert Obermeier2013-03-021-0/+18
| |/
* | Merge tag 'arc-v3.9-rc1-late' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds2013-03-021-0/+2
|\ \
| * | asm-generic headers: Allow yet more arch overrides in checksum.hVineet Gupta2013-02-111-0/+2
* | | Merge tag 'lzo-update-signature-20130226' of git://github.com/markus-oberhume...Linus Torvalds2013-03-016-409/+460
|\ \ \
| * | | lib/lzo: Update LZO compression to current upstream versionMarkus F.X.J. Oberhumer2013-02-203-336/+387
| * | | lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.cMarkus F.X.J. Oberhumer2013-02-203-2/+2
| | |/ | |/|
* | | hlist: drop the node parameter from iteratorsSasha Levin2013-02-282-13/+11Star
* | | kfifo: fix kfifo_alloc() and kfifo_init()Stefani Seibold2013-02-281-4/+2Star
* | | kfifo: move kfifo.c from kernel/ to lib/Stefani Seibold2013-02-282-1/+610
* | | idr: explain WARN_ON_ONCE() on negative IDs out-of-range IDTejun Heo2013-02-281-0/+10
* | | idr: implement lookup hintTejun Heo2013-02-281-22/+16Star
* | | idr: add idr_layer->prefixTejun Heo2013-02-281-0/+13
* | | idr: remove length restriction from idr_layer->bitmapTejun Heo2013-02-281-17/+17
* | | idr: remove MAX_IDR_MASK and move left MAX_IDR_* into idr.cTejun Heo2013-02-281-7/+17
* | | idr: fix top layer handlingTejun Heo2013-02-281-15/+23
* | | idr: implement idr_preload[_end]() and idr_alloc()Tejun Heo2013-02-281-8/+166
* | | idr: refactor idr_get_new_above()Tejun Heo2013-02-281-18/+12Star
* | | idr: remove _idr_rc_to_errno() hackTejun Heo2013-02-281-12/+23
* | | idr: relocate idr_for_each_entry() and reorganize id[r|a]_get_new()Tejun Heo2013-02-281-49/+0Star
* | | idr: deprecate idr_remove_all()Tejun Heo2013-02-281-7/+3Star
* | | idr: make idr_destroy() imply idr_remove_all()Tejun Heo2013-02-281-9/+11
* | | idr: fix a subtle bug in idr_get_next()Tejun Heo2013-02-281-1/+8
* | | lib/scatterlist: use page iterator in the mapping iteratorImre Deak2013-02-281-25/+23Star
* | | lib/scatterlist: add simple page iteratorImre Deak2013-02-281-0/+38
* | | lib/devres.c: fix misplaced #endifJingoo Han2013-02-281-1/+1
* | | Merge tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kern...Linus Torvalds2013-02-261-1/+2
|\ \ \
| * | | taint: add explicit flag to show whether lock dep is still OK.Rusty Russell2013-01-211-1/+2
| | |/ | |/|
* | | Merge branch 'core-locking-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds2013-02-233-91/+87Star
|\ \ \