]> Pileus Git - ~andy/linux/commitdiff
Merge branch 'master' into for-next
authorJiri Kosina <jkosina@suse.cz>
Thu, 19 Dec 2013 14:08:03 +0000 (15:08 +0100)
committerJiri Kosina <jkosina@suse.cz>
Thu, 19 Dec 2013 14:08:32 +0000 (15:08 +0100)
Sync with Linus' tree to be able to apply fixes on top of newer things
in tree (efi-stub).

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
32 files changed:
Documentation/DocBook/.gitignore
Documentation/DocBook/Makefile
Documentation/DocBook/kernel-api.tmpl
Documentation/IRQ-domain.txt
Documentation/email-clients.txt
Documentation/io-mapping.txt
Documentation/kernel-parameters.txt
Documentation/md.txt
Documentation/rfkill.txt
Documentation/rt-mutex-design.txt
Documentation/static-keys.txt
Documentation/x86/x86_64/boot-options.txt
arch/arm/mach-at91/Kconfig.non_dt
arch/x86/Kconfig
drivers/block/Makefile
drivers/cdrom/Makefile
drivers/char/Makefile
drivers/devfreq/exynos/exynos4_bus.c
drivers/gpu/drm/exynos/exynos_drm_crtc.c
drivers/gpu/drm/exynos/exynos_drm_g2d.c
drivers/gpu/drm/exynos/exynos_drm_gem.c
drivers/gpu/drm/exynos/exynos_drm_gem.h
drivers/gpu/drm/exynos/exynos_drm_ipp.c
drivers/gpu/drm/exynos/exynos_drm_ipp.h
drivers/isdn/mISDN/Kconfig
drivers/scsi/Kconfig
drivers/staging/usbip/usbip_common.c
drivers/xen/Kconfig
include/linux/tracepoint.h
init/Kconfig
net/core/dev.c
net/netfilter/ipset/Kconfig

index 720f245ceb1f34dcf2f01c9607291db14a118d40..7ebd5465d9277ce250d4cfd97c17295da75afb6a 100644 (file)
@@ -10,5 +10,6 @@
 *.out
 *.png
 *.gif
+*.svg
 media-indices.tmpl
 media-entities.tmpl
index bc3d9f8c0a9018fca305ce3d27920fb39be7c04a..0f9c6ff41aac5206eb470ef07d68553d067022f0 100644 (file)
@@ -54,6 +54,7 @@ htmldocs: $(HTML)
 
 MAN := $(patsubst %.xml, %.9, $(BOOKS))
 mandocs: $(MAN)
+       $(if $(wildcard $(obj)/man/*.9),gzip -f $(obj)/man/*.9)
 
 installmandocs: mandocs
        mkdir -p /usr/local/man/man9/
@@ -145,7 +146,7 @@ build_main_index = rm -rf $(main_idx); \
                   cat $(HTML) >> $(main_idx)
 
 quiet_cmd_db2html = HTML    $@
-      cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
+      cmd_db2html = xmlto html $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
                echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \
         $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
 
@@ -159,7 +160,7 @@ quiet_cmd_db2html = HTML    $@
             cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi
 
 quiet_cmd_db2man = MAN     $@
-      cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; gzip -f $(obj)/man/*.9; fi
+      cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; fi
 %.9 : %.xml
        @(which xmlto > /dev/null 2>&1) || \
         (echo "*** You need to install xmlto ***"; \
index f75ab4c1b281119672df234624f1ae7aa80919c2..ecfd0ea406619b0a2c76071b2024c7219b9c7a6a 100644 (file)
@@ -109,6 +109,7 @@ X!Ilib/string.c
      <sect1><title>The Slab Cache</title>
 !Iinclude/linux/slab.h
 !Emm/slab.c
+!Emm/util.c
      </sect1>
      <sect1><title>User Space Memory Access</title>
 !Iarch/x86/include/asm/uaccess_32.h
index 9bc95942ec22b9f4c721c7e9dda0189ba75689c7..03df71aeb38c000dd607b657f62ebb477753bf76 100644 (file)
@@ -141,7 +141,7 @@ will use a legacy domain only if an IRQ range is supplied by the
 system and will otherwise use a linear domain mapping. The semantics
 of this call are such that if an IRQ range is specified then
 descriptors will be allocated on-the-fly for it, and if no range is
-specified it will fall through to irq_domain_add_linear() which meand
+specified it will fall through to irq_domain_add_linear() which means
 *no* irq descriptors will be allocated.
 
 A typical use case for simple domains is where an irqchip provider
index 860c29a472adfc13af02641001bd03dfe04b9cb6..e9f5daccbd02e2d8e97b489faf372dbb307529d8 100644 (file)
@@ -104,7 +104,7 @@ Then from the "Message" menu item, select insert file and choose your patch.
 As an added bonus you can customise the message creation toolbar menu
 and put the "insert file" icon there.
 
-Make the the composer window wide enough so that no lines wrap. As of
+Make the composer window wide enough so that no lines wrap. As of
 KMail 1.13.5 (KDE 4.5.4), KMail will apply word wrapping when sending
 the email if the lines wrap in the composer window. Having word wrapping
 disabled in the Options menu isn't enough. Thus, if your patch has very
index 473e43b2d588281efc95a3e5cde589e18d4eefa1..5ca78426f54c58d10e3fd0030ad51f6ccb2b5b9b 100644 (file)
@@ -38,7 +38,7 @@ maps are more efficient:
 
        void io_mapping_unmap_atomic(void *vaddr)
 
-               'vaddr' must be the the value returned by the last
+               'vaddr' must be the value returned by the last
                io_mapping_map_atomic_wc call. This unmaps the specified
                page and allows the task to sleep once again.
 
index 50680a59a2ff9a913e449a1d71ced9fab3004fe4..0ccd5fc038b1ccb4c3ab25893ead61c41070043d 100644 (file)
@@ -515,7 +515,14 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
 
        cgroup_disable= [KNL] Disable a particular controller
                        Format: {name of the controller(s) to disable}
-                               {Currently supported controllers - "memory"}
+                       The effects of cgroup_disable=foo are:
+                       - foo isn't auto-mounted if you mount all cgroups in
+                         a single hierarchy
+                       - foo isn't visible as an individually mountable
+                         subsystem
+                       {Currently only "memory" controller deal with this and
+                       cut the overhead, others just disable the usage. So
+                       only cgroup_disable=memory is actually worthy}
 
        checkreqprot    [SELINUX] Set initial checkreqprot flag value.
                        Format: { "0" | "1" }
index fbb2fcbf16b6088bdce40f16544d4eee7c48dcd9..f925666e4342bd115010b4ed095547e4235bcad8 100644 (file)
@@ -533,7 +533,7 @@ also have
       found.  The count in 'mismatch_cnt' is the number of sectors
       that were re-written, or (for 'check') would have been
       re-written.  As most raid levels work in units of pages rather
-      than sectors, this my be larger than the number of actual errors
+      than sectors, this may be larger than the number of actual errors
       by a factor of the number of sectors in a page.
 
    bitmap_set_bits
index 03c9d9299c6b1fb55ed48f89f146d4029b323f22..f430004df73c06eb9b8a3f595899cf078360a88d 100644 (file)
@@ -71,7 +71,7 @@ To create an rfkill driver, driver's Kconfig needs to have
        depends on RFKILL || !RFKILL
 
 to ensure the driver cannot be built-in when rfkill is modular. The !RFKILL
-case allows the driver to be built when rfkill is not configured, which which
+case allows the driver to be built when rfkill is not configured, which
 case all rfkill API can still be used but will be provided by static inlines
 which compile to almost nothing.
 
index a5bcd7f5c33fb4d1d818c35b2044b0382179d013..8666070d31896eeb0c54f820189b14d95bd1833d 100644 (file)
@@ -30,7 +30,7 @@ is something called unbounded priority inversion.  That is when the high
 priority process is prevented from running by a lower priority process for
 an undetermined amount of time.
 
-The classic example of unbounded priority inversion is were you have three
+The classic example of unbounded priority inversion is where you have three
 processes, let's call them processes A, B, and C, where A is the highest
 priority process, C is the lowest, and B is in between. A tries to grab a lock
 that C owns and must wait and lets C run to release the lock. But in the
index 9f5263d3152ccff97605234c8b0fe0417b160c59..c4407a41b0fc066b750ed5013db196ba3343bece 100644 (file)
@@ -116,7 +116,7 @@ The branch(es) can then be switched via:
        static_key_slow_dec(&key);
 
 Thus, 'static_key_slow_inc()' means 'make the branch true', and
-'static_key_slow_dec()' means 'make the the branch false' with appropriate
+'static_key_slow_dec()' means 'make the branch false' with appropriate
 reference counting. For example, if the key is initialized true, a
 static_key_slow_dec(), will switch the branch to false. And a subsequent
 static_key_slow_inc(), will change the branch back to true. Likewise, if the
@@ -236,7 +236,7 @@ label case adds:
 
 If we then include the padding bytes, the jump label code saves, 16 total bytes
 of instruction memory for this small function. In this case the non-jump label
-function is 80 bytes long. Thus, we have have saved 20% of the instruction
+function is 80 bytes long. Thus, we have saved 20% of the instruction
 footprint. We can in fact improve this even further, since the 5-byte no-op
 really can be a 2-byte no-op since we can reach the branch with a 2-byte jmp.
 However, we have not yet implemented optimal no-op sizes (they are currently
index 1228b22e142b2c5da2f749cb7922b357209c01a0..5223479291a295e7b248661d28c14ea8a33b3eaa 100644 (file)
@@ -78,14 +78,6 @@ APICs
 
    no_timer_check Don't check the IO-APIC timer. This can work around
                 problems with incorrect timer initialization on some boards.
-
-   apicmaintimer Run time keeping from the local APIC timer instead
-                 of using the PIT/HPET interrupt for this. This is useful
-                 when the PIT/HPET interrupts are unreliable.
-
-   noapicmaintimer  Don't do time keeping using the APIC timer.
-                Useful when this option was auto selected, but doesn't work.
-
    apicpmtimer
                 Do APIC timer calibration using the pmtimer. Implies
                 apicmaintimer. Useful when your PIT timer is totally
@@ -144,11 +136,6 @@ Non Executable Mappings
   on      Enable(default)
   off     Disable
 
-SMP
-
-  additional_cpus=NUM Allow NUM more CPUs for hotplug
-                (defaults are specified by the BIOS, see Documentation/x86/x86_64/cpu-hotplug-spec)
-
 NUMA
 
   numa=off     Only set up a single NUMA node spanning all memory.
@@ -289,16 +276,6 @@ Debugging
 
   kstack=N     Print N words from the kernel stack in oops dumps.
 
-  pagefaulttrace  Dump all page faults. Only useful for extreme debugging
-               and will create a lot of output.
-
-  call_trace=[old|both|newfallback|new]
-               old: use old inexact backtracer
-               new: use new exact dwarf2 unwinder
-               both: print entries from both
-               newfallback: use new unwinder but fall back to old if it gets
-                       stuck (default)
-
 Miscellaneous
 
        nogbpages
index ca900be144ce9466db4a1cfb6fb577eef669e81e..0363dba7d3f6fcadd4452d6f97bcc790936dff7a 100644 (file)
@@ -241,7 +241,7 @@ config MACH_PCONTROL_G20
        bool "PControl G20 CPU module"
        help
          Select this if you are using taskit's Stamp9G20 CPU module on this
-         carrier board, beeing the decentralized unit of a building automation
+         carrier board, being the decentralized unit of a building automation
          system; featuring nvram, eth-switch, iso-rs485, display, io
 
 config MACH_GSIA18S
index e903c71f7e69822d2ce5240b957399dbab783037..f85fe3459cb6d6f3c3ceb9e0cf60468bdfd19257 100644 (file)
@@ -952,7 +952,7 @@ config X86_ANCIENT_MCE
        depends on X86_32 && X86_MCE
        ---help---
          Include support for machine check handling on old Pentium 5 or WinChip
-         systems. These typically need to be enabled explicitely on the command
+         systems. These typically need to be enabled explicitly on the command
          line.
 
 config X86_MCE_THRESHOLD
index 8cc98cd0d4a8578485694e95735af1fd25514bff..816d979c32667f9549b7ef313f38f386b8790705 100644 (file)
@@ -31,7 +31,6 @@ obj-$(CONFIG_BLK_DEV_NBD)     += nbd.o
 obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o
 obj-$(CONFIG_VIRTIO_BLK)       += virtio_blk.o
 
-obj-$(CONFIG_VIODASD)          += viodasd.o
 obj-$(CONFIG_BLK_DEV_SX8)      += sx8.o
 obj-$(CONFIG_BLK_DEV_HD)       += hd.o
 
index ecf85fda0fc100d136afa85ab983b22767ab147f..8ffde4f8ab9ae53f3f6007890a709ce795d19d8f 100644 (file)
@@ -10,5 +10,4 @@ obj-$(CONFIG_BLK_DEV_SR)      +=              cdrom.o
 obj-$(CONFIG_PARIDE_PCD)       +=              cdrom.o
 obj-$(CONFIG_CDROM_PKTCDVD)    +=              cdrom.o
 
-obj-$(CONFIG_VIOCD)            += viocd.o      cdrom.o
 obj-$(CONFIG_GDROM)            += gdrom.o      cdrom.o
index 7ff1d0d208a7c3f89f6827fd3e9ba8815dad202d..290fe5b7fd327f48f9a9b8f7091a6f43b83c1745 100644 (file)
@@ -13,7 +13,6 @@ obj-$(CONFIG_MSM_SMD_PKT)     += msm_smd_pkt.o
 obj-$(CONFIG_MSPEC)            += mspec.o
 obj-$(CONFIG_MMTIMER)          += mmtimer.o
 obj-$(CONFIG_UV_MMTIMER)       += uv_mmtimer.o
-obj-$(CONFIG_VIOTAPE)          += viotape.o
 obj-$(CONFIG_IBM_BSR)          += bsr.o
 obj-$(CONFIG_SGI_MBCS)         += mbcs.o
 obj-$(CONFIG_BFIN_OTP)         += bfin-otp.o
index cede6f71cd63feb5afebde508199b9be9a507778..bbbfe6853b18b96b6e6fbcba1707b9d89553a4de 100644 (file)
@@ -116,7 +116,7 @@ static struct bus_opp_table exynos4210_busclk_table[] = {
 };
 
 /*
- * MIF is the main control knob clock for exynox4x12 MIF/INT
+ * MIF is the main control knob clock for Exynos4x12 MIF/INT
  * clock and voltage of both mif/int are controlled.
  */
 static struct bus_opp_table exynos4x12_mifclk_table[] = {
index ebc01503d50ec1f2a9034bb81fa4724f12555f16..6f3400f3978a7544cf9138c4e2cd0d7dc41a7f85 100644 (file)
@@ -36,9 +36,9 @@ enum exynos_crtc_mode {
  * @pipe: a crtc index created at load() with a new crtc object creation
  *     and the crtc object would be set to private->crtc array
  *     to get a crtc object corresponding to this pipe from private->crtc
- *     array when irq interrupt occured. the reason of using this pipe is that
+ *     array when irq interrupt occurred. the reason of using this pipe is that
  *     drm framework doesn't support multiple irq yet.
- *     we can refer to the crtc to current hardware interrupt occured through
+ *     we can refer to the crtc to current hardware interrupt occurred through
  *     this pipe value.
  * @dpms: store the crtc dpms value
  * @mode: store the crtc mode value
index 7bccedca487aebde1483ff08d65898e8d360c1c3..380aec28840b7e5ec4245e71207f0586f05efe75 100644 (file)
@@ -1126,7 +1126,7 @@ int exynos_g2d_set_cmdlist_ioctl(struct drm_device *drm_dev, void *data,
         * G2D interrupt event once current command list execution is
         * finished.
         * Otherwise only ACF bit should be set to INTEN register so
-        * that one interrupt is occured after all command lists
+        * that one interrupt is occurred after all command lists
         * have been completed.
         */
        if (node->event) {
index 1ade191d84f4d6514fd16871cb54cbdc3208d925..be59d50d8b16c836fbd1a5c88ed2bea87a7b769f 100644 (file)
@@ -652,7 +652,7 @@ int exynos_drm_gem_dumb_create(struct drm_file *file_priv,
        int ret;
 
        /*
-        * alocate memory to be used for framebuffer.
+        * allocate memory to be used for framebuffer.
         * - this callback would be called by user application
         *      with DRM_IOCTL_MODE_CREATE_DUMB command.
         */
index 702ec3abe85cc88eb74aa2e7dc99b5224c175dcf..b8c818ba2ff450e104fe545106a544ed92341632 100644 (file)
@@ -60,7 +60,7 @@ struct exynos_drm_gem_buf {
  * @vma: a pointer to vm_area.
  * @flags: indicate memory type to allocated buffer and cache attruibute.
  *
- * P.S. this object would be transfered to user as kms_bo.handle so
+ * P.S. this object would be transferred to user as kms_bo.handle so
  *     user can access the buffer through kms_bo.handle.
  */
 struct exynos_drm_gem_obj {
index 824e0705c8d333734f1713f996e9c48d225b307f..d519a4e5fe4022bd9101ede7a1e0edd2a4883dba 100644 (file)
@@ -335,7 +335,7 @@ int exynos_drm_ipp_get_property(struct drm_device *drm_dev, void *data,
        } else {
                /*
                 * Getting ippdrv capability by ipp_id.
-                * some deivce not supported wb, output interface.
+                * some device not supported wb, output interface.
                 * so, user application detect correct ipp driver
                 * using this ioctl.
                 */
index 4cadbea7dbde9d71b2011ae012b0e4c9b0b11ce3..ab1634befc05fd11e7766f1b537ae0f039af91bc 100644 (file)
@@ -48,7 +48,7 @@ struct drm_exynos_ipp_cmd_work {
 /*
  * A structure of command node.
  *
- * @priv: IPP private infomation.
+ * @priv: IPP private information.
  * @list: list head to command queue information.
  * @event_list: list head of event.
  * @mem_list: list head to source,destination memory queue information.
@@ -92,7 +92,7 @@ struct drm_exynos_ipp_buf_info {
 };
 
 /*
- * A structure of wb setting infomation.
+ * A structure of wb setting information.
  *
  * @enable: enable flag for wb.
  * @refresh: HZ of the refresh rate.
index 1747a02a019a1bcb7ed1ac1d37c02babd2a8c99e..c0730d5c734d6ad805d2a589573da4dfbe53bb48 100644 (file)
@@ -17,7 +17,7 @@ config MISDN_DSP
 
          This module may be used for special applications that require
          cross connecting of bchannels, conferencing, dtmf decoding,
-         echo cancelation, tone generation, and Blowfish encryption and
+         echo cancellation, tone generation, and Blowfish encryption and
          decryption. It may use hardware features if available.
 
          E.g. it is required for PBX4Linux. Go to http://isdn.eversberg.eu
index fe25677a551162789b0299247d88327dcbd48940..a2d61d061be7ba096374edde4dc0e3b47d7ff986 100644 (file)
@@ -204,9 +204,9 @@ config SCSI_MULTI_LUN
          Some devices support more than one LUN (Logical Unit Number) in order
          to allow access to several media, e.g. CD jukebox, USB card reader,
          mobile phone in mass storage mode. This option forces the kernel to
-         probe for all LUNs by default. This setting can be overriden by
+         probe for all LUNs by default. This setting can be overridden by
          max_luns boot/module parameter. Note that this option does not affect
-         devices conforming to SCSI-3 or higher as they can explicitely report
+         devices conforming to SCSI-3 or higher as they can explicitly report
          their number of LUNs. It is safe to say Y here unless you have one of
          those rare devices which reacts in an unexpected way when probed for
          multiple LUNs.
index e3fc749c1e7e016b217d627d8a5aedeb767fcb97..e2bffece81d7ec6f4c3353234248ce80e8b5f4d3 100644 (file)
@@ -366,7 +366,6 @@ int usbip_recv(struct socket *sock, void *buf, int size)
                msg.msg_namelen = 0;
                msg.msg_control = NULL;
                msg.msg_controllen = 0;
-               msg.msg_namelen    = 0;
                msg.msg_flags      = MSG_NOSIGNAL;
 
                result = kernel_recvmsg(sock, &msg, &iov, 1, size, MSG_WAITALL);
index c794ea1821402dc21e47af3d8b398c9d4f3209e6..12ba6db651427aa6bf11c9cc4e2d219157c03828 100644 (file)
@@ -222,7 +222,7 @@ config XEN_ACPI_PROCESSOR
 
          To do that the driver parses the Power Management data and uploads
          said information to the Xen hypervisor. Then the Xen hypervisor can
-         select the proper Cx and Pxx states. It also registers itslef as the
+         select the proper Cx and Pxx states. It also registers itself as the
          SMM so that other drivers (such as ACPI cpufreq scaling driver) will
          not load.
 
index f16dc0a4004976376c9036a244e1121ed52ed020..accc497f8d729160b0234756e96d99607cf67f33 100644 (file)
@@ -276,7 +276,7 @@ static inline void tracepoint_synchronize_unregister(void)
  * For use with the TRACE_EVENT macro:
  *
  * We define a tracepoint, its arguments, its printk format
- * and its 'fast binay record' layout.
+ * and its 'fast binary record' layout.
  *
  * Firstly, name your tracepoint via TRACE_EVENT(name : the
  * 'subsystem_event' notation is fine.
index 79383d3aa5dc5f7fe64abdcaf7d511144ca016e5..12d61f82e5f7eb0c345d9d53326eaa8f73b51f82 100644 (file)
@@ -532,7 +532,7 @@ config CONTEXT_TRACKING_FORCE
          dynticks subsystem by forcing the context tracking on all
          CPUs in the system.
 
-         Say Y only if you're working on the developpement of an
+         Say Y only if you're working on the development of an
          architecture backend for the context tracking.
 
          Say N otherwise, this option brings an overhead that you
index ba3b7ea5ebb3139cca38e82ac6f5f5e346f4a4e0..d2b87dbbbb1a763980e571f4eac300a9742e1e4c 100644 (file)
@@ -6224,7 +6224,7 @@ void netdev_freemem(struct net_device *dev)
  *     @rxqs:          the number of RX subqueues to allocate
  *
  *     Allocates a struct net_device with private data area for driver use
- *     and performs basic initialization.  Also allocates subquue structs
+ *     and performs basic initialization.  Also allocates subqueue structs
  *     for each queue on the device.
  */
 struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
index a2d6263b6c648e97c663025660ad47320c2c08ff..44cd4f58adf08b914b871d7399942fb58168a623 100644 (file)
@@ -21,7 +21,7 @@ config IP_SET_MAX
          You can define here default value of the maximum number 
          of IP sets for the kernel.
 
-         The value can be overriden by the 'max_sets' module
+         The value can be overridden by the 'max_sets' module
          parameter of the 'ip_set' module.
 
 config IP_SET_BITMAP_IP