diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 20:38:49 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 20:38:49 -0500 |
commit | 7c2db36e730ee4facd341679ecb21ee73ba92831 (patch) | |
tree | 75016fba72aaf0581b9263f7fa4c565e6e634f3c /mm/Kconfig | |
parent | 8b5628ab83b671f96ac9f174c1bd51c92589fc82 (diff) | |
parent | a47a376f1c025e23e836c0376813c0424de665c2 (diff) |
Merge branch 'akpm' (incoming from Andrew)
Merge misc patches from Andrew Morton:
- Florian has vanished so I appear to have become fbdev maintainer
again :(
- Joel and Mark are distracted to welcome to the new OCFS2 maintainer
- The backlight queue
- Small core kernel changes
- lib/ updates
- The rtc queue
- Various random bits
* akpm: (164 commits)
rtc: rtc-davinci: use devm_*() functions
rtc: rtc-max8997: use devm_request_threaded_irq()
rtc: rtc-max8907: use devm_request_threaded_irq()
rtc: rtc-da9052: use devm_request_threaded_irq()
rtc: rtc-wm831x: use devm_request_threaded_irq()
rtc: rtc-tps80031: use devm_request_threaded_irq()
rtc: rtc-lp8788: use devm_request_threaded_irq()
rtc: rtc-coh901331: use devm_clk_get()
rtc: rtc-vt8500: use devm_*() functions
rtc: rtc-tps6586x: use devm_request_threaded_irq()
rtc: rtc-imxdi: use devm_clk_get()
rtc: rtc-cmos: use dev_warn()/dev_dbg() instead of printk()/pr_debug()
rtc: rtc-pcf8583: use dev_warn() instead of printk()
rtc: rtc-sun4v: use pr_warn() instead of printk()
rtc: rtc-vr41xx: use dev_info() instead of printk()
rtc: rtc-rs5c313: use pr_err() instead of printk()
rtc: rtc-at91rm9200: use dev_dbg()/dev_err() instead of printk()/pr_debug()
rtc: rtc-rs5c372: use dev_dbg()/dev_warn() instead of printk()/pr_debug()
rtc: rtc-ds2404: use dev_err() instead of printk()
rtc: rtc-efi: use dev_err()/dev_warn()/pr_err() instead of printk()
...
Diffstat (limited to 'mm/Kconfig')
-rw-r--r-- | mm/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mm/Kconfig b/mm/Kconfig index 308fdcaeed77..0b23db9a8791 100644 --- a/mm/Kconfig +++ b/mm/Kconfig | |||
@@ -258,6 +258,19 @@ config BOUNCE | |||
258 | def_bool y | 258 | def_bool y |
259 | depends on BLOCK && MMU && (ZONE_DMA || HIGHMEM) | 259 | depends on BLOCK && MMU && (ZONE_DMA || HIGHMEM) |
260 | 260 | ||
261 | # On the 'tile' arch, USB OHCI needs the bounce pool since tilegx will often | ||
262 | # have more than 4GB of memory, but we don't currently use the IOTLB to present | ||
263 | # a 32-bit address to OHCI. So we need to use a bounce pool instead. | ||
264 | # | ||
265 | # We also use the bounce pool to provide stable page writes for jbd. jbd | ||
266 | # initiates buffer writeback without locking the page or setting PG_writeback, | ||
267 | # and fixing that behavior (a second time; jbd2 doesn't have this problem) is | ||
268 | # a major rework effort. Instead, use the bounce buffer to snapshot pages | ||
269 | # (until jbd goes away). The only jbd user is ext3. | ||
270 | config NEED_BOUNCE_POOL | ||
271 | bool | ||
272 | default y if (TILE && USB_OHCI_HCD) || (BLK_DEV_INTEGRITY && JBD) | ||
273 | |||
261 | config NR_QUICK | 274 | config NR_QUICK |
262 | int | 275 | int |
263 | depends on QUICKLIST | 276 | depends on QUICKLIST |