05 Aug, 2014

1 commit

  • Patch queue for ppc - 2014-08-01

    Highlights in this release include:

    - BookE: Rework instruction fetch, not racy anymore now
    - BookE HV: Fix ONE_REG accessors for some in-hardware registers
    - Book3S: Good number of LE host fixes, enable HV on LE
    - Book3S: Some misc bug fixes
    - Book3S HV: Add in-guest debug support
    - Book3S HV: Preload cache lines on context switch
    - Remove 440 support

    Alexander Graf (31):
    KVM: PPC: Book3s PR: Disable AIL mode with OPAL
    KVM: PPC: Book3s HV: Fix tlbie compile error
    KVM: PPC: Book3S PR: Handle hyp doorbell exits
    KVM: PPC: Book3S PR: Fix ABIv2 on LE
    KVM: PPC: Book3S PR: Fix sparse endian checks
    PPC: Add asm helpers for BE 32bit load/store
    KVM: PPC: Book3S HV: Make HTAB code LE host aware
    KVM: PPC: Book3S HV: Access guest VPA in BE
    KVM: PPC: Book3S HV: Access host lppaca and shadow slb in BE
    KVM: PPC: Book3S HV: Access XICS in BE
    KVM: PPC: Book3S HV: Fix ABIv2 on LE
    KVM: PPC: Book3S HV: Enable for little endian hosts
    KVM: PPC: Book3S: Move vcore definition to end of kvm_arch struct
    KVM: PPC: Deflect page write faults properly in kvmppc_st
    KVM: PPC: Book3S: Stop PTE lookup on write errors
    KVM: PPC: Book3S: Add hack for split real mode
    KVM: PPC: Book3S: Make magic page properly 4k mappable
    KVM: PPC: Remove 440 support
    KVM: Rename and add argument to check_extension
    KVM: Allow KVM_CHECK_EXTENSION on the vm fd
    KVM: PPC: Book3S: Provide different CAPs based on HV or PR mode
    KVM: PPC: Implement kvmppc_xlate for all targets
    KVM: PPC: Move kvmppc_ld/st to common code
    KVM: PPC: Remove kvmppc_bad_hva()
    KVM: PPC: Use kvm_read_guest in kvmppc_ld
    KVM: PPC: Handle magic page in kvmppc_ld/st
    KVM: PPC: Separate loadstore emulation from priv emulation
    KVM: PPC: Expose helper functions for data/inst faults
    KVM: PPC: Remove DCR handling
    KVM: PPC: HV: Remove generic instruction emulation
    KVM: PPC: PR: Handle FSCR feature deselects

    Alexey Kardashevskiy (1):
    KVM: PPC: Book3S: Fix LPCR one_reg interface

    Aneesh Kumar K.V (4):
    KVM: PPC: BOOK3S: PR: Fix PURR and SPURR emulation
    KVM: PPC: BOOK3S: PR: Emulate virtual timebase register
    KVM: PPC: BOOK3S: PR: Emulate instruction counter
    KVM: PPC: BOOK3S: HV: Update compute_tlbie_rb to handle 16MB base page

    Anton Blanchard (2):
    KVM: PPC: Book3S HV: Fix ABIv2 indirect branch issue
    KVM: PPC: Assembly functions exported to modules need _GLOBAL_TOC()

    Bharat Bhushan (10):
    kvm: ppc: bookehv: Added wrapper macros for shadow registers
    kvm: ppc: booke: Use the shared struct helpers of SRR0 and SRR1
    kvm: ppc: booke: Use the shared struct helpers of SPRN_DEAR
    kvm: ppc: booke: Add shared struct helpers of SPRN_ESR
    kvm: ppc: booke: Use the shared struct helpers for SPRN_SPRG0-7
    kvm: ppc: Add SPRN_EPR get helper function
    kvm: ppc: bookehv: Save restore SPRN_SPRG9 on guest entry exit
    KVM: PPC: Booke-hv: Add one reg interface for SPRG9
    KVM: PPC: Remove comment saying SPRG1 is used for vcpu pointer
    KVM: PPC: BOOKEHV: rename e500hv_spr to bookehv_spr

    Michael Neuling (1):
    KVM: PPC: Book3S HV: Add H_SET_MODE hcall handling

    Mihai Caraman (8):
    KVM: PPC: e500mc: Enhance tlb invalidation condition on vcpu schedule
    KVM: PPC: e500: Fix default tlb for victim hint
    KVM: PPC: e500: Emulate power management control SPR
    KVM: PPC: e500mc: Revert "add load inst fixup"
    KVM: PPC: Book3e: Add TLBSEL/TSIZE defines for MAS0/1
    KVM: PPC: Book3s: Remove kvmppc_read_inst() function
    KVM: PPC: Allow kvmppc_get_last_inst() to fail
    KVM: PPC: Bookehv: Get vcpu's last instruction for emulation

    Paul Mackerras (4):
    KVM: PPC: Book3S: Controls for in-kernel sPAPR hypercall handling
    KVM: PPC: Book3S: Allow only implemented hcalls to be enabled or disabled
    KVM: PPC: Book3S PR: Take SRCU read lock around RTAS kvm_read_guest() call
    KVM: PPC: Book3S: Make kvmppc_ld return a more accurate error indication

    Stewart Smith (2):
    Split out struct kvmppc_vcore creation to separate function
    Use the POWER8 Micro Partition Prefetch Engine in KVM HV on POWER8

    Conflicts:
    Documentation/virtual/kvm/api.txt

    Paolo Bonzini
     

29 Jul, 2014

1 commit


28 Jul, 2014

4 commits

  • The KVM_CHECK_EXTENSION is only available on the kvm fd today. Unfortunately
    on PPC some of the capabilities change depending on the way a VM was created.

    So instead we need a way to expose capabilities as VM ioctl, so that we can
    see which VM type we're using (HV or PR). To enable this, add the
    KVM_CHECK_EXTENSION ioctl to our vm ioctl portfolio.

    Signed-off-by: Alexander Graf
    Acked-by: Paolo Bonzini

    Alexander Graf
     
  • Unfortunately, the LPCR got defined as a 32-bit register in the
    one_reg interface. This is unfortunate because KVM allows userspace
    to control the DPFD (default prefetch depth) field, which is in the
    upper 32 bits. The result is that DPFD always get set to 0, which
    reduces performance in the guest.

    We can't just change KVM_REG_PPC_LPCR to be a 64-bit register ID,
    since that would break existing userspace binaries. Instead we define
    a new KVM_REG_PPC_LPCR_64 id which is 64-bit. Userspace can still use
    the old KVM_REG_PPC_LPCR id, but it now only modifies those fields in
    the bottom 32 bits that userspace can modify (ILE, TC and AIL).
    If userspace uses the new KVM_REG_PPC_LPCR_64 id, it can modify DPFD
    as well.

    Signed-off-by: Alexey Kardashevskiy
    Signed-off-by: Paul Mackerras
    Cc: stable@vger.kernel.org
    Signed-off-by: Alexander Graf

    Alexey Kardashevskiy
     
  • This adds code to check that when the KVM_CAP_PPC_ENABLE_HCALL
    capability is used to enable or disable in-kernel handling of an
    hcall, that the hcall is actually implemented by the kernel.
    If not an EINVAL error is returned.

    This also checks the default-enabled list of hcalls and prints a
    warning if any hcall there is not actually implemented.

    Signed-off-by: Paul Mackerras
    Signed-off-by: Alexander Graf

    Paul Mackerras
     
  • This provides a way for userspace controls which sPAPR hcalls get
    handled in the kernel. Each hcall can be individually enabled or
    disabled for in-kernel handling, except for H_RTAS. The exception
    for H_RTAS is because userspace can already control whether
    individual RTAS functions are handled in-kernel or not via the
    KVM_PPC_RTAS_DEFINE_TOKEN ioctl, and because the numeric value for
    H_RTAS is out of the normal sequence of hcall numbers.

    Hcalls are enabled or disabled using the KVM_ENABLE_CAP ioctl for the
    KVM_CAP_PPC_ENABLE_HCALL capability on the file descriptor for the VM.
    The args field of the struct kvm_enable_cap specifies the hcall number
    in args[0] and the enable/disable flag in args[1]; 0 means disable
    in-kernel handling (so that the hcall will always cause an exit to
    userspace) and 1 means enable. Enabling or disabling in-kernel
    handling of an hcall is effective across the whole VM.

    The ability for KVM_ENABLE_CAP to be used on a VM file descriptor
    on PowerPC is new, added by this commit. The KVM_CAP_ENABLE_CAP_VM
    capability advertises that this ability exists.

    When a VM is created, an initial set of hcalls are enabled for
    in-kernel handling. The set that is enabled is the set that have
    an in-kernel implementation at this point. Any new hcall
    implementations from this point onwards should not be added to the
    default set without a good reason.

    No distinction is made between real-mode and virtual-mode hcall
    implementations; the one setting controls them both.

    Signed-off-by: Paul Mackerras
    Signed-off-by: Alexander Graf

    Paul Mackerras
     

22 Jul, 2014

1 commit


21 Jul, 2014

3 commits

  • …vms390/linux into kvm-next

    This series enables the "KVM_(S|G)ET_MP_STATE" ioctls on s390 to make
    the cpu state settable by user space.

    This is necessary to avoid races in s390 SIGP/reset handling which
    happen because some SIGPs are handled in QEMU, while others are
    handled in the kernel. Together with the busy conditions as return
    value of SIGP races happen especially in areas like starting and
    stopping of CPUs. (For example, there is a program 'cpuplugd', that
    runs on several s390 distros which does automatic onlining and
    offlining on cpus.)

    As soon as the MPSTATE interface is used, user space takes complete
    control of the cpu states. Otherwise the kernel will use the old way.

    Therefore, the new kernel continues to work fine with old QEMUs.

    Paolo Bonzini
     
  • Let's document that this is a capability that may be enabled per-vm.

    Signed-off-by: Cornelia Huck
    Reviewed-by: David Hildenbrand
    Signed-off-by: Christian Borntraeger

    Cornelia Huck
     
  • Capabilities can be enabled on a vcpu or (since recently) on a vm. Document
    this and note for the existing capabilites whether they are per-vcpu or
    per-vm.

    Signed-off-by: Cornelia Huck
    Reviewed-by: David Hildenbrand
    Signed-off-by: Christian Borntraeger

    Cornelia Huck
     

10 Jul, 2014

5 commits

  • This patch
    - adds s390 specific MP states to linux headers and documents them
    - implements the KVM_{SET,GET}_MP_STATE ioctls
    - enables KVM_CAP_MP_STATE
    - allows user space to control the VCPU state on s390.

    If user space sets the VCPU state using the ioctl KVM_SET_MP_STATE, we can disable
    manual changing of the VCPU state and trust user space to do the right thing.

    Signed-off-by: David Hildenbrand
    Reviewed-by: Cornelia Huck
    Acked-by: Christian Borntraeger
    Signed-off-by: Christian Borntraeger

    David Hildenbrand
     
  • Highlight the aspects of the ioctls that are actually specific to x86
    and ia64. As defined restrictions (irqchip) and mp states may not apply
    to other architectures, these parts are flagged to belong to x86 and ia64.

    In preparation for the use of KVM_(S|G)ET_MP_STATE by s390.
    Fix a spelling error (KVM_SET_MP_STATE vs. KVM_SET_MPSTATE) on the way.

    Signed-off-by: David Hildenbrand
    Reviewed-by: Cornelia Huck
    Acked-by: Christian Borntraeger
    Signed-off-by: Christian Borntraeger

    David Hildenbrand
     
  • Document the MIPS specific parts of the KVM API, including:
    - The layout of the kvm_regs structure.
    - The interrupt number passed to KVM_INTERRUPT.
    - The registers supported by the KVM_{GET,SET}_ONE_REG interface, and
    the encoding of those register ids.
    - That KVM_INTERRUPT and KVM_GET_REG_LIST are supported on MIPS.

    Signed-off-by: James Hogan
    Cc: Paolo Bonzini
    Cc: Gleb Natapov
    Cc: kvm@vger.kernel.org
    Cc: Randy Dunlap
    Cc: linux-doc@vger.kernel.org
    Signed-off-by: Paolo Bonzini

    James Hogan
     
  • Some of the MIPS registers that can be accessed with the
    KVM_{GET,SET}_ONE_REG interface have fairly long names, so widen the
    Register column of the table in the KVM_SET_ONE_REG documentation to
    allow them to fit.

    Tabs in the table are replaced with spaces at the same time for
    consistency.

    Signed-off-by: James Hogan
    Cc: Paolo Bonzini
    Cc: Gleb Natapov
    Cc: kvm@vger.kernel.org
    Cc: Randy Dunlap
    Cc: linux-doc@vger.kernel.org
    Signed-off-by: Paolo Bonzini

    James Hogan
     
  • KVM_SET_SIGNAL_MASK is implemented in generic code and isn't x86
    specific, so document it as being applicable for all architectures.

    Signed-off-by: James Hogan
    Cc: Paolo Bonzini
    Cc: Gleb Natapov
    Cc: kvm@vger.kernel.org
    Cc: Randy Dunlap
    Cc: linux-doc@vger.kernel.org
    Signed-off-by: Paolo Bonzini

    James Hogan
     

04 Jun, 2014

2 commits

  • Pull trivial tree changes from Jiri Kosina:
    "Usual pile of patches from trivial tree that make the world go round"

    * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (23 commits)
    staging: go7007: remove reference to CONFIG_KMOD
    aic7xxx: Remove obsolete preprocessor define
    of: dma: doc fixes
    doc: fix incorrect formula to calculate CommitLimit value
    doc: Note need of bc in the kernel build from 3.10 onwards
    mm: Fix printk typo in dmapool.c
    modpost: Fix comment typo "Modules.symvers"
    Kconfig.debug: Grammar s/addition/additional/
    wimax: Spelling s/than/that/, wording s/destinatary/recipient/
    aic7xxx: Spelling s/termnation/termination/
    arm64: mm: Remove superfluous "the" in comment
    of: Spelling s/anonymouns/anonymous/
    dma: imx-sdma: Spelling s/determnine/determine/
    ath10k: Improve grammar in comments
    ath6kl: Spelling s/determnine/determine/
    of: Improve grammar for of_alias_get_id() documentation
    drm/exynos: Spelling s/contro/control/
    radio-bcm2048.c: fix wrong overflow check
    doc: printk-formats: do not mention casts for u64/s64
    doc: spelling error changes
    ...

    Linus Torvalds
     
  • Pull KVM updates from Paolo Bonzini:
    "At over 200 commits, covering almost all supported architectures, this
    was a pretty active cycle for KVM. Changes include:

    - a lot of s390 changes: optimizations, support for migration, GDB
    support and more

    - ARM changes are pretty small: support for the PSCI 0.2 hypercall
    interface on both the guest and the host (the latter acked by
    Catalin)

    - initial POWER8 and little-endian host support

    - support for running u-boot on embedded POWER targets

    - pretty large changes to MIPS too, completing the userspace
    interface and improving the handling of virtualized timer hardware

    - for x86, a larger set of changes is scheduled for 3.17. Still, we
    have a few emulator bugfixes and support for running nested
    fully-virtualized Xen guests (para-virtualized Xen guests have
    always worked). And some optimizations too.

    The only missing architecture here is ia64. It's not a coincidence
    that support for KVM on ia64 is scheduled for removal in 3.17"

    * tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm: (203 commits)
    KVM: add missing cleanup_srcu_struct
    KVM: PPC: Book3S PR: Rework SLB switching code
    KVM: PPC: Book3S PR: Use SLB entry 0
    KVM: PPC: Book3S HV: Fix machine check delivery to guest
    KVM: PPC: Book3S HV: Work around POWER8 performance monitor bugs
    KVM: PPC: Book3S HV: Make sure we don't miss dirty pages
    KVM: PPC: Book3S HV: Fix dirty map for hugepages
    KVM: PPC: Book3S HV: Put huge-page HPTEs in rmap chain for base address
    KVM: PPC: Book3S HV: Fix check for running inside guest in global_invalidates()
    KVM: PPC: Book3S: Move KVM_REG_PPC_WORT to an unused register number
    KVM: PPC: Book3S: Add ONE_REG register names that were missed
    KVM: PPC: Add CAP to indicate hcall fixes
    KVM: PPC: MPIC: Reset IRQ source private members
    KVM: PPC: Graciously fail broken LE hypercalls
    PPC: ePAPR: Fix hypercall on LE guest
    KVM: PPC: BOOK3S: Remove open coded make_dsisr in alignment handler
    KVM: PPC: BOOK3S: Always use the saved DAR value
    PPC: KVM: Make NX bit available with magic page
    KVM: PPC: Disable NX for old magic page using guests
    KVM: PPC: BOOK3S: HV: Add mixed page-size support for guest
    ...

    Linus Torvalds
     

30 May, 2014

4 commits


27 May, 2014

1 commit


15 May, 2014

1 commit

  • s390 has acquired irqfd support with commit "KVM: s390: irq routing for
    adapter interrupts" (84223598778ba08041f4297fda485df83414d57e) but
    failed to announce it. Let's fix that.

    Signed-off-by: Cornelia Huck
    Acked-by: Christian Borntraeger
    Signed-off-by: Christian Borntraeger

    Cornelia Huck
     

06 May, 2014

1 commit


05 May, 2014

1 commit


30 Apr, 2014

2 commits

  • Currently, we don't have an exit reason to notify user space about
    a system-level event (for e.g. system reset or shutdown) triggered
    by the VCPU. This patch adds exit reason KVM_EXIT_SYSTEM_EVENT for
    this purpose. We can also inform user space about the 'type' and
    architecture specific 'flags' of a system-level event using the
    kvm_run structure.

    This newly added KVM_EXIT_SYSTEM_EVENT will be used by KVM ARM/ARM64
    in-kernel PSCI v0.2 support to reset/shutdown VMs.

    Signed-off-by: Anup Patel
    Signed-off-by: Pranavkumar Sawargaonkar
    Reviewed-by: Christoffer Dall
    Reviewed-by: Marc Zyngier
    Signed-off-by: Christoffer Dall

    Anup Patel
     
  • We have in-kernel emulation of PSCI v0.2 in KVM ARM/ARM64. To provide
    PSCI v0.2 interface to VCPUs, we have to enable KVM_ARM_VCPU_PSCI_0_2
    feature when doing KVM_ARM_VCPU_INIT ioctl.

    The patch updates documentation of KVM_ARM_VCPU_INIT ioctl to provide
    info regarding KVM_ARM_VCPU_PSCI_0_2 feature.

    Signed-off-by: Anup Patel
    Signed-off-by: Pranavkumar Sawargaonkar
    Acked-by: Christoffer Dall
    Acked-by: Marc Zyngier
    Signed-off-by: Christoffer Dall

    Anup Patel
     

22 Apr, 2014

3 commits


03 Apr, 2014

1 commit

  • Pull trivial tree updates from Jiri Kosina:
    "Usual rocket science -- mostly documentation and comment updates"

    * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial:
    sparse: fix comment
    doc: fix double words
    isdn: capi: fix "CAPI_VERSION" comment
    doc: DocBook: Fix typos in xml and template file
    Bluetooth: add module name for btwilink
    driver core: unexport static function create_syslog_header
    mmc: core: typo fix in printk specifier
    ARM: spear: clean up editing mistake
    net-sysfs: fix comment typo 'CONFIG_SYFS'
    doc: Insert MODULE_ in module-signing macros
    Documentation: update URL to hfsplus Technote 1150
    gpio: update path to documentation
    ixgbe: Fix format string in ixgbe_fcoe.
    Kconfig: Remove useless "default N" lines
    user_namespace.c: Remove duplicated word in comment
    CREDITS: fix formatting
    treewide: Fix typo in Documentation/DocBook
    mm: Fix warning on make htmldocs caused by slab.c
    ata: ata-samsung_cf: cleanup in header file
    idr: remove unused prototype of idr_free()

    Linus Torvalds
     

28 Mar, 2014

1 commit

  • The KVM API documentation is not clear about the semantics of the data
    field on the mmio struct on the kvm_run struct.

    This has become problematic when supporting ARM guests on big-endian
    host systems with guests of both endianness types, because it is unclear
    how the data should be exported to user space.

    This should not break with existing implementations as all supported
    existing implementations of known user space applications (QEMU and
    kvmtools for virtio) only support default endianness of the
    architectures on the host side.

    Cc: Marc Zyngier
    Cc: Peter Maydell
    Cc: Alexander Graf
    Signed-off-by: Christoffer Dall
    Signed-off-by: Paolo Bonzini

    Christoffer Dall
     

21 Mar, 2014

4 commits

  • Introduce a new interrupt class for s390 adapter interrupts and enable
    irqfds for s390.

    This is depending on a new s390 specific vm capability, KVM_CAP_S390_IRQCHIP,
    that needs to be enabled by userspace.

    Acked-by: Christian Borntraeger
    Signed-off-by: Cornelia Huck

    Cornelia Huck
     
  • Add a new interface to register/deregister sources of adapter interrupts
    identified by an unique id via the flic. Adapters may also be maskable
    and carry a list of pinned pages.

    These adapters will be used by irq routing later.

    Acked-by: Christian Borntraeger
    Signed-off-by: Cornelia Huck

    Cornelia Huck
     
  • Allow KVM_ENABLE_CAP to act on a vm as well as on a vcpu. This makes more
    sense when the caller wants to enable a vm-related capability.

    s390 will be the first user; wire it up.

    Reviewed-by: Thomas Huth
    Reviewed-by: Christian Borntraeger
    Signed-off-by: Cornelia Huck

    Cornelia Huck
     
  • Fix double words "the the" in various files
    within Documentations.

    Signed-off-by: Masanari Iida
    Signed-off-by: Jiri Kosina

    Masanari Iida
     

13 Mar, 2014

1 commit

  • Both QEMU and KVM have already accumulated a significant number of
    optimizations based on the hard-coded assumption that ioapic polarity
    will always use the ActiveHigh convention, where the logical and
    physical states of level-triggered irq lines always match (i.e.,
    active(asserted) == high == 1, inactive == low == 0). QEMU guests
    are expected to follow directions given via ACPI and configure the
    ioapic with polarity 0 (ActiveHigh). However, even when misbehaving
    guests (e.g. OS X
    Signed-off-by: Gabriel L. Somlo
    [Move documentation to KVM_IRQ_LINE, add ia64. - Paolo]
    Signed-off-by: Paolo Bonzini

    Gabriel L. Somlo
     

04 Mar, 2014

1 commit


11 Feb, 2014

1 commit

  • Some of the 00-INDEX files are somewhat outdated and some folders does
    not contain 00-INDEX at all. Only outdated (with the notably exception
    of spi) indexes are touched here, the 169 folders without 00-INDEX has
    not been touched.

    New 00-INDEX
    - spi/* was added in a series of commits dating back to 2006

    Added files (missing in (*/)00-INDEX)
    - dmatest.txt was added by commit 851b7e16a07d ("dmatest: run test via
    debugfs")
    - this_cpu_ops.txt was added by commit a1b2a555d637 ("percpu: add
    documentation on this_cpu operations")
    - ww-mutex-design.txt was added by commit 040a0a371005 ("mutex: Add
    support for wound/wait style locks")
    - bcache.txt was added by commit cafe56359144 ("bcache: A block layer
    cache")
    - kernel-per-CPU-kthreads.txt was added by commit 49717cb40410
    ("kthread: Document ways of reducing OS jitter due to per-CPU
    kthreads")
    - phy.txt was added by commit ff764963479a ("drivers: phy: add generic
    PHY framework")
    - block/null_blk was added by commit 12f8f4fc0314 ("null_blk:
    documentation")
    - module-signing.txt was added by commit 3cafea307642 ("Add
    Documentation/module-signing.txt file")
    - assoc_array.txt was added by commit 3cb989501c26 ("Add a generic
    associative array implementation.")
    - arm/IXP4xx was part of the initial repo
    - arm/cluster-pm-race-avoidance.txt was added by commit 7fe31d28e839
    ("ARM: mcpm: introduce helpers for platform coherency exit/setup")
    - arm/firmware.txt was added by commit 7366b92a77fc ("ARM: Add
    interface for registering and calling firmware-specific operations")
    - arm/kernel_mode_neon.txt was added by commit 2afd0a05241d ("ARM:
    7825/1: document the use of NEON in kernel mode")
    - arm/tcm.txt was added by commit bc581770cfdd ("ARM: 5580/2: ARM TCM
    (Tightly-Coupled Memory) support v3")
    - arm/vlocks.txt was added by commit 9762f12d3e05 ("ARM: mcpm: Add
    baremetal voting mutexes")
    - blackfin/gptimers-example.c, Makefile was added by commit
    4b60779d5ea7 ("Blackfin: add an example showing how to use the
    gptimers API")
    - devicetree/usage-model.txt was added by commit 31134efc681a ("dt:
    Linux DT usage model documentation")
    - fb/api.txt was added by commit fb21c2f42879 ("fbdev: Add FOURCC-based
    format configuration API")
    - fb/sm501.txt was added by commit e6a049807105 ("video, sm501: add
    edid and commandline support")
    - fb/udlfb.txt was added by commit 96f8d864afd6 ("fbdev: move udlfb out
    of staging.")
    - filesystems/Makefile was added by commit 1e0051ae48a2
    ("Documentation/fs/: split txt and source files")
    - filesystems/nfs/nfsd-admin-interfaces.txt was added by commit
    8a4c6e19cfed ("nfsd: document kernel interfaces for nfsd
    configuration")
    - ide/warm-plug-howto.txt was added by commit f74c91413ec6 ("ide: add
    warm-plug support for IDE devices (take 2)")
    - laptops/Makefile was added by commit d49129accc21
    ("Documentation/laptop/: split txt and source files")
    - leds/leds-blinkm.txt was added by commit b54cf35a7f65 ("LEDS: add
    BlinkM RGB LED driver, documentation and update MAINTAINERS")
    - leds/ledtrig-oneshot.txt was added by commit 5e417281cde2 ("leds: add
    oneshot trigger")
    - leds/ledtrig-transient.txt was added by commit 44e1e9f8e705 ("leds:
    add new transient trigger for one shot timer activation")
    - m68k/README.buddha was part of the initial repo
    - networking/LICENSE.(qla3xxx|qlcnic|qlge) was added by commits
    40839129f779, c4e84bde1d59, 5a4faa873782
    - networking/Makefile was added by commit 3794f3e812ef ("docsrc: build
    Documentation/ sources")
    - networking/i40evf.txt was added by commit 105bf2fe6b32 ("i40evf: add
    driver to kernel build system")
    - networking/ipsec.txt was added by commit b3c6efbc36e2 ("xfrm: Add
    file to document IPsec corner case")
    - networking/mac80211-auth-assoc-deauth.txt was added by commit
    3cd7920a2be8 ("mac80211: add auth/assoc/deauth flow diagram")
    - networking/netlink_mmap.txt was added by commit 5683264c3981
    ("netlink: add documentation for memory mapped I/O")
    - networking/nf_conntrack-sysctl.txt was added by commit c9f9e0e1597f
    ("netfilter: doc: add nf_conntrack sysctl api documentation") lan)
    - networking/team.txt was added by commit 3d249d4ca7d0 ("net: introduce
    ethernet teaming device")
    - networking/vxlan.txt was added by commit d342894c5d2f ("vxlan:
    virtual extensible lan")
    - power/runtime_pm.txt was added by commit 5e928f77a09a ("PM: Introduce
    core framework for run-time PM of I/O devices (rev. 17)")
    - power/charger-manager.txt was added by commit 3bb3dbbd56ea
    ("power_supply: Add initial Charger-Manager driver")
    - RCU/lockdep-splat.txt was added by commit d7bd2d68aa2e ("rcu:
    Document interpretation of RCU-lockdep splats")
    - s390/kvm.txt was added by 5ecee4b (KVM: s390: API documentation)
    - s390/qeth.txt was added by commit b4d72c08b358 ("qeth: bridgeport
    support - basic control")
    - scheduler/sched-bwc.txt was added by commit 88ebc08ea9f7 ("sched: Add
    documentation for bandwidth control")
    - scsi/advansys.txt was added by commit 4bd6d7f35661 ("[SCSI] advansys:
    Move documentation to Documentation/scsi")
    - scsi/bfa.txt was added by commit 1ec90174bdb4 ("[SCSI] bfa: add
    readme file")
    - scsi/bnx2fc.txt was added by commit 12b8fc10eaf4 ("[SCSI] bnx2fc: Add
    driver documentation")
    - scsi/cxgb3i.txt was added by commit c3673464ebc0 ("[SCSI] cxgb3i: Add
    cxgb3i iSCSI driver.")
    - scsi/hpsa.txt was added by commit 992ebcf14f3c ("[SCSI] hpsa: Add
    hpsa.txt to Documentation/scsi")
    - scsi/link_power_management_policy.txt was added by commit
    ca77329fb713 ("[libata] Link power management infrastructure")
    - scsi/osd.txt was added by commit 78e0c621deca ("[SCSI] osd:
    Documentation for OSD library")
    - scsi/scsi-parameter.txt was created/moved by commit 163475fb111c
    ("Documentation: move SCSI parameters to their own text file")
    - serial/driver was part of the initial repo
    - serial/n_gsm.txt was added by commit 323e84122ec6 ("n_gsm: add a
    documentation")
    - timers/Makefile was added by commit 3794f3e812ef ("docsrc: build
    Documentation/ sources")
    - virt/kvm/s390.txt was added by commit d9101fca3d57 ("KVM: s390:
    diagnose call documentation")
    - vm/split_page_table_lock was added by commit 49076ec2ccaf ("mm:
    dynamically allocate page->ptl if it cannot be embedded to struct
    page")
    - w1/slaves/w1_ds28e04 was added by commit fbf7f7b4e2ae ("w1: Add
    1-wire slave device driver for DS28E04-100")
    - w1/masters/omap-hdq was added by commit e0a29382c6f5 ("hdq:
    documentation for OMAP HDQ")
    - x86/early-microcode.txt was added by commit 0d91ea86a895 ("x86, doc:
    Documentation for early microcode loading")
    - x86/earlyprintk.txt was added by commit a1aade478862 ("x86/doc:
    mini-howto for using earlyprintk=dbgp")
    - x86/entry_64.txt was added by commit 8b4777a4b50c ("x86-64: Document
    some of entry_64.S")
    - x86/pat.txt was added by commit d27554d874c7 ("x86: PAT
    documentation")

    Moved files
    - arm/kernel_user_helpers.txt was moved out of arch/arm/kernel by
    commit 37b8304642c7 ("ARM: kuser: move interface documentation out of
    the source code")
    - efi-stub.txt was moved out of x86/ and down into Documentation/ in
    commit 4172fe2f8a47 ("EFI stub documentation updates")
    - laptops/hpfall.c was moved out of hwmon/ and into laptops/ in commit
    efcfed9bad88 ("Move hp_accel to drivers/platform/x86")
    - commit 5616c23ad9cd ("x86: doc: move x86-generic documentation from
    Doc/x86/i386"):
    * x86/usb-legacy-support.txt
    * x86/boot.txt
    * x86/zero_page.txt
    - power/video_extension.txt was moved to acpi in commit 70e66e4df191
    ("ACPI / video: move video_extension.txt to Documentation/acpi")

    Removed files (left in 00-INDEX)
    - memory.txt was removed by commit 00ea8990aadf ("memory.txt: remove
    stray information")
    - gpio.txt was moved to gpio/ in commit fd8e198cfcaa ("Documentation:
    gpiolib: document new interface")
    - networking/DLINK.txt was removed by commit 168e06ae26dd
    ("drivers/net: delete old parallel port de600/de620 drivers")
    - serial/hayes-esp.txt was removed by commit f53a2ade0bb9 ("tty: esp:
    remove broken driver")
    - s390/TAPE was removed by commit 9e280f669308 ("[S390] remove tape
    block docu")
    - vm/locking was removed by commit 57ea8171d2bc ("mm: documentation:
    remove hopelessly out-of-date locking doc")
    - laptops/acer-wmi.txt was remvoed by commit 020036678e81 ("acer-wmi:
    Delete out-of-date documentation")

    Typos/misc issues
    - rpc-server-gss.txt was added as knfsd-rpcgss.txt in commit
    030d794bf498 ("SUNRPC: Use gssproxy upcall for server RPCGSS
    authentication.")
    - commit b88cf73d9278 ("net: add missing entries to
    Documentation/networking/00-INDEX")
    * generic-hdlc.txt was added as generic_hdlc.txt
    * spider_net.txt was added as spider-net.txt
    - w1/master/mxc-w1 was added as mxc_w1 by commit a5fd9139f74c ("w1: add
    1-wire master driver for i.MX27 / i.MX31")
    - s390/zfcpdump.txt was added as zfcpdump by commit 6920c12a407e
    ("[S390] Add Documentation/s390/00-INDEX.")

    Signed-off-by: Henrik Austad
    Reviewed-by: Paul E. McKenney [rcu bits]
    Acked-by: Rob Landley
    Cc: Jiri Kosina
    Cc: Thomas Gleixner
    Cc: Rob Herring
    Cc: David S. Miller
    Cc: Mark Brown
    Cc: "H. Peter Anvin"
    Cc: Ingo Molnar
    Cc: Gleb Natapov
    Cc: Linus Torvalds
    Cc: Len Brown
    Cc: James Bottomley
    Cc: Jean-Christophe Plagniol-Villard
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Henrik Austad
     

04 Feb, 2014

1 commit