All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Willem Pinckaers <willem@lekkertech.net>,
	"Don A. Bailey" <donb@securitymouse.com>,
	Willy Tarreau <w@1wt.eu>
Subject: [PATCH 3.16 046/127] Documentation: lzo: document part of the encoding
Date: Tue, 28 Oct 2014 11:34:41 +0800	[thread overview]
Message-ID: <20141028033422.917878311@linuxfoundation.org> (raw)
In-Reply-To: <20141028033420.925922046@linuxfoundation.org>

3.16-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Willy Tarreau <w@1wt.eu>

commit d98a0526434d27e261f622cf9d2e0028b5ff1a00 upstream.

Add a complete description of the LZO format as processed by the
decompressor. I have not found a public specification of this format
hence this analysis, which will be used to better understand the code.

Cc: Willem Pinckaers <willem@lekkertech.net>
Cc: "Don A. Bailey" <donb@securitymouse.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 Documentation/lzo.txt |  164 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 164 insertions(+)

--- /dev/null
+++ b/Documentation/lzo.txt
@@ -0,0 +1,164 @@
+
+LZO stream format as understood by Linux's LZO decompressor
+===========================================================
+
+Introduction
+
+  This is not a specification. No specification seems to be publicly available
+  for the LZO stream format. This document describes what input format the LZO
+  decompressor as implemented in the Linux kernel understands. The file subject
+  of this analysis is lib/lzo/lzo1x_decompress_safe.c. No analysis was made on
+  the compressor nor on any other implementations though it seems likely that
+  the format matches the standard one. The purpose of this document is to
+  better understand what the code does in order to propose more efficient fixes
+  for future bug reports.
+
+Description
+
+  The stream is composed of a series of instructions, operands, and data. The
+  instructions consist in a few bits representing an opcode, and bits forming
+  the operands for the instruction, whose size and position depend on the
+  opcode and on the number of literals copied by previous instruction. The
+  operands are used to indicate :
+
+    - a distance when copying data from the dictionary (past output buffer)
+    - a length (number of bytes to copy from dictionary)
+    - the number of literals to copy, which is retained in variable "state"
+      as a piece of information for next instructions.
+
+  Optionally depending on the opcode and operands, extra data may follow. These
+  extra data can be a complement for the operand (eg: a length or a distance
+  encoded on larger values), or a literal to be copied to the output buffer.
+
+  The first byte of the block follows a different encoding from other bytes, it
+  seems to be optimized for literal use only, since there is no dictionary yet
+  prior to that byte.
+
+  Lengths are always encoded on a variable size starting with a small number
+  of bits in the operand. If the number of bits isn't enough to represent the
+  length, up to 255 may be added in increments by consuming more bytes with a
+  rate of at most 255 per extra byte (thus the compression ratio cannot exceed
+  around 255:1). The variable length encoding using #bits is always the same :
+
+       length = byte & ((1 << #bits) - 1)
+       if (!length) {
+               length = ((1 << #bits) - 1)
+               length += 255*(number of zero bytes)
+               length += first-non-zero-byte
+       }
+       length += constant (generally 2 or 3)
+
+  For references to the dictionary, distances are relative to the output
+  pointer. Distances are encoded using very few bits belonging to certain
+  ranges, resulting in multiple copy instructions using different encodings.
+  Certain encodings involve one extra byte, others involve two extra bytes
+  forming a little-endian 16-bit quantity (marked LE16 below).
+
+  After any instruction except the large literal copy, 0, 1, 2 or 3 literals
+  are copied before starting the next instruction. The number of literals that
+  were copied may change the meaning and behaviour of the next instruction. In
+  practice, only one instruction needs to know whether 0, less than 4, or more
+  literals were copied. This is the information stored in the <state> variable
+  in this implementation. This number of immediate literals to be copied is
+  generally encoded in the last two bits of the instruction but may also be
+  taken from the last two bits of an extra operand (eg: distance).
+
+  End of stream is declared when a block copy of distance 0 is seen. Only one
+  instruction may encode this distance (0001HLLL), it takes one LE16 operand
+  for the distance, thus requiring 3 bytes.
+
+  IMPORTANT NOTE : in the code some length checks are missing because certain
+  instructions are called under the assumption that a certain number of bytes
+  follow because it has already been garanteed before parsing the instructions.
+  They just have to "refill" this credit if they consume extra bytes. This is
+  an implementation design choice independant on the algorithm or encoding.
+
+Byte sequences
+
+  First byte encoding :
+
+      0..17   : follow regular instruction encoding, see below. It is worth
+                noting that codes 16 and 17 will represent a block copy from
+                the dictionary which is empty, and that they will always be
+                invalid at this place.
+
+      18..21  : copy 0..3 literals
+                state = (byte - 17) = 0..3  [ copy <state> literals ]
+                skip byte
+
+      22..255 : copy literal string
+                length = (byte - 17) = 4..238
+                state = 4 [ don't copy extra literals ]
+                skip byte
+
+  Instruction encoding :
+
+      0 0 0 0 X X X X  (0..15)
+        Depends on the number of literals copied by the last instruction.
+        If last instruction did not copy any literal (state == 0), this
+        encoding will be a copy of 4 or more literal, and must be interpreted
+        like this :
+
+           0 0 0 0 L L L L  (0..15)  : copy long literal string
+           length = 3 + (L ?: 15 + (zero_bytes * 255) + non_zero_byte)
+           state = 4  (no extra literals are copied)
+
+        If last instruction used to copy between 1 to 3 literals (encoded in
+        the instruction's opcode or distance), the instruction is a copy of a
+        2-byte block from the dictionary within a 1kB distance. It is worth
+        noting that this instruction provides little savings since it uses 2
+        bytes to encode a copy of 2 other bytes but it encodes the number of
+        following literals for free. It must be interpreted like this :
+
+           0 0 0 0 D D S S  (0..15)  : copy 2 bytes from <= 1kB distance
+           length = 2
+           state = S (copy S literals after this block)
+         Always followed by exactly one byte : H H H H H H H H
+           distance = (H << 2) + D + 1
+
+        If last instruction used to copy 4 or more literals (as detected by
+        state == 4), the instruction becomes a copy of a 3-byte block from the
+        dictionary from a 2..3kB distance, and must be interpreted like this :
+
+           0 0 0 0 D D S S  (0..15)  : copy 3 bytes from 2..3 kB distance
+           length = 3
+           state = S (copy S literals after this block)
+         Always followed by exactly one byte : H H H H H H H H
+           distance = (H << 2) + D + 2049
+
+      0 0 0 1 H L L L  (16..31)
+           Copy of a block within 16..48kB distance (preferably less than 10B)
+           length = 2 + (L ?: 7 + (zero_bytes * 255) + non_zero_byte)
+        Always followed by exactly one LE16 :  D D D D D D D D : D D D D D D S S
+           distance = 16384 + (H << 14) + D
+           state = S (copy S literals after this block)
+           End of stream is reached if distance == 16384
+
+      0 0 1 L L L L L  (32..63)
+           Copy of small block within 16kB distance (preferably less than 34B)
+           length = 2 + (L ?: 31 + (zero_bytes * 255) + non_zero_byte)
+        Always followed by exactly one LE16 :  D D D D D D D D : D D D D D D S S
+           distance = D + 1
+           state = S (copy S literals after this block)
+
+      0 1 L D D D S S  (64..127)
+           Copy 3-4 bytes from block within 2kB distance
+           state = S (copy S literals after this block)
+           length = 3 + L
+         Always followed by exactly one byte : H H H H H H H H
+           distance = (H << 3) + D + 1
+
+      1 L L D D D S S  (128..255)
+           Copy 5-8 bytes from block within 2kB distance
+           state = S (copy S literals after this block)
+           length = 5 + L
+         Always followed by exactly one byte : H H H H H H H H
+           distance = (H << 3) + D + 1
+
+Authors
+
+  This document was written by Willy Tarreau <w@1wt.eu> on 2014/07/19 during an
+  analysis of the decompression code available in Linux 3.16-rc5. The code is
+  tricky, it is possible that this document contains mistakes or that a few
+  corner cases were overlooked. In any case, please report any doubt, fix, or
+  proposed updates to the author(s) so that the document can be updated.



  parent reply	other threads:[~2014-10-28  3:43 UTC|newest]

Thread overview: 133+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-28  3:33 [PATCH 3.16 000/127] 3.16.7-stable review Greg Kroah-Hartman
2014-10-28  3:33 ` [PATCH 3.16 001/127] btrfs: wake up transaction thread from SYNC_FS ioctl Greg Kroah-Hartman
2014-10-28  3:33 ` [PATCH 3.16 002/127] btrfs: Fix a deadlock in btrfs_dev_replace_finishing() Greg Kroah-Hartman
2014-10-28  3:33 ` [PATCH 3.16 003/127] Btrfs: add missing compression property remove in btrfs_ioctl_setflags Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 005/127] Btrfs: dont do async reclaim during log replay Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 006/127] Btrfs: try not to ENOSPC on " Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 007/127] Btrfs: cleanup error handling in build_backref_tree Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 008/127] Btrfs: fix build_backref_tree issue with multiple shared blocks Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 009/127] Btrfs: fix race in WAIT_SYNC ioctl Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 010/127] fs: Add a missing permission check to do_umount Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 011/127] usb: pch_udc: usb gadget device support for Intel Quark X1000 Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 012/127] pci_ids: Add support for Intel Quark ILB Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 013/127] kvm: x86: fix stale mmio cache bug Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 014/127] kvm: fix potentially corrupt mmio cache Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 015/127] KVM: do not bias the generation number in kvm_current_mmio_generation Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 016/127] KVM: s390: unintended fallthrough for external call Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 017/127] kvm: dont take vcpu mutex for obviously invalid vcpu ioctls Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 018/127] x86,kvm,vmx: Preserve CR4 across VM entry Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 019/127] x86/intel/quark: Switch off CR4.PGE so TLB flush uses CR3 instead Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 020/127] spi: dw-mid: respect 8 bit mode Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 021/127] spi: dw-mid: check that DMA was inited before exit Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 022/127] HID: rmi: check sanity of the incoming report Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 023/127] mpc85xx_edac: Make L2 interrupt shared too Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 024/127] regmap: debugfs: fix possbile NULL pointer dereference Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 025/127] regmap: fix NULL pointer dereference in _regmap_write/read Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 026/127] regmap: fix possible ZERO_SIZE_PTR pointer dereferencing error Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 027/127] be2iscsi: check ip buffer before copying Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 028/127] mptfusion: enable no_write_same for vmware scsi disks Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 029/127] regulator: ltc3589: fix broken voltage transitions Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 030/127] qla2xxx: fix kernel NULL pointer access Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 031/127] qla2xxx: Use correct offset to req-q-out for reserve calculation Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 032/127] qla2xxx: Fix shost use-after-free on device removal Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 033/127] dmaengine: fix xor sources continuation Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 034/127] firmware_class: make sure fw requests contain a name Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 035/127] arm64: debug: dont re-enable debug exceptions on return from el1_dbg Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 036/127] Drivers: hv: util: Properly pack the data for file copy functionality Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 037/127] Drivers: hv: vmbus: Cleanup vmbus_post_msg() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 038/127] Drivers: hv: vmbus: Cleanup vmbus_teardown_gpadl() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 039/127] Drivers: hv: vmbus: Cleanup vmbus_close_internal() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 040/127] Drivers: hv: vmbus: Cleanup vmbus_establish_gpadl() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 041/127] Drivers: hv: vmbus: Fix a bug in vmbus_open() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 042/127] Drivers: hv: vmbus: Cleanup hv_post_message() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 043/127] mei: bus: fix possible boundaries violation Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 044/127] m68k: Disable/restore interrupts in hwreg_present()/hwreg_write() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 045/127] Fixing lease renewal Greg Kroah-Hartman
2014-10-28  3:34 ` Greg Kroah-Hartman [this message]
2014-10-28  3:34 ` [PATCH 3.16 047/127] Revert "lzo: properly check for overruns" Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 048/127] lzo: check for length overrun in variable length encoding Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 049/127] tty: omap-serial: fix division by zero Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 050/127] NFSv4: Fix lock recovery when CREATE_SESSION/SETCLIENTID_CONFIRM fails Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 051/127] NFSv4: fix open/lock state recovery error handling Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 052/127] NFSv4.1: Fix an NFSv4.1 state renewal regression Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 053/127] nfsd4: reserve adequate space for LOCK op Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 054/127] NFS: Fix an uninitialised pointer Oops in the writeback error path Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 055/127] NFS: Fix a bogus warning in nfs_generic_pgio Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 056/127] iwlwifi: mvm: disable BT Co-running by default Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 057/127] iwlwifi: Add missing PCI IDs for the 7260 series Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 058/127] spi: dw-mid: terminate ongoing transfers at exit Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 059/127] PCI: mvebu: Fix uninitialized variable in mvebu_get_tgt_attr() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 060/127] PCI: Add missing MEM_64 mask in pci_assign_unassigned_bridge_resources() Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 061/127] PCI: Increase IBM ipr SAS Crocodile BARs to at least system page size Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 062/127] PCI: Generate uppercase hex for modalias interface class Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 063/127] rt2800: correct BBP1_TX_POWER_CTRL mask Greg Kroah-Hartman
2014-10-28  3:34 ` [PATCH 3.16 064/127] Revert "ath9k_hw: reduce ANI firstep range for older chips" Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 065/127] Bluetooth: Fix HCI H5 corrupted ack value Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 066/127] Bluetooth: Fix incorrect LE CoC PDU length restriction based on HCI MTU Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 067/127] Bluetooth: Fix issue with USB suspend in btusb driver Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 068/127] Bluetooth: Fix setting correct security level when initiating SMP Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 069/127] mm: clear __GFP_FS when PF_MEMALLOC_NOIO is set Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 071/127] kernel: add support for gcc 5 Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 073/127] futex: Ensure get_futex_key_refs() always implies a barrier Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 074/127] powerpc/iommu/ddw: Fix endianness Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 075/127] powerpc/eeh: Clear frozen device state in time Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 076/127] ima: fix fallback to use new_sync_read() Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 077/127] ima: provide flag to identify new empty files Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 078/127] arm64: compat: fix compat types affecting struct compat_elf_prpsinfo Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 079/127] ALSA: pcm: use the same dma mmap codepath both for arm and arm64 Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 081/127] ALSA: emu10k1: Fix deadlock in synth voice lookup Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 082/127] ALSA: ALC283 codec - Avoid pop noise on headphones during suspend/resume Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 083/127] ALSA: usb-audio: Add support for Steinberg UR22 USB interface Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 084/127] ALSA: hda - hdmi: Fix missing ELD change event on plug/unplug Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 085/127] ALSA: hda - Fix inverted LED gpio setup for Lenovo Ideapad Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 086/127] ALSA: hda - Add missing terminating entry to SND_HDA_PIN_QUIRK macro Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 087/127] ARM: at91/dt: Fix typo regarding can0_clk Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 088/127] ARM: at91: fix at91sam9263ek DT mmc pinmuxing settings Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 089/127] ARM: at91/PMC: dont forget to write PMC_PCDR register to disable clocks Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 090/127] ARM: Kirkwood: Fix DT based DSA Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 091/127] ARM: mvebu: Netgear RN104: Use Hardware BCH ECC Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 092/127] ARM: mvebu: Netgear RN2120: " Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 093/127] ARM: mvebu: Netgear RN102: " Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 094/127] ARM: dts: imx28-evk: Let i2c0 run at 100kHz Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 095/127] ecryptfs: avoid to access NULL pointer when write metadata in xattr Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 096/127] xfs: ensure WB_SYNC_ALL writeback handles partial pages correctly Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 097/127] sparc64: Do not disable interrupts in nmi_cpu_busy() Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 098/127] sparc64: Fix pcr_ops initialization and usage bugs Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 099/127] sparc32: dma_alloc_coherent must honour gfp flags Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 100/127] sparc64: sun4v TLB error power off events Greg Kroah-Hartman
2014-10-28  3:35   ` Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 101/127] sparc64: Fix corrupted thread fault code Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 102/127] sparc64: find_node adjustment Greg Kroah-Hartman
2014-10-28  3:35   ` Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 103/127] sparc64: Move request_irq() from ldc_bind() to ldc_alloc() Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 104/127] sparc: Let memset return the address argument Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 105/127] sparc: bpf_jit: fix support for ldx/stx mem and SKF_AD_VLAN_TAG Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 106/127] sparc: bpf_jit: fix loads from negative offsets Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 107/127] sparc64: Fix reversed start/end in flush_tlb_kernel_range() Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 108/127] sparc64: Fix lockdep warnings on reboot on Ultra-5 Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 109/127] sparc64: Fix FPU register corruption with AES crypto offload Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 110/127] sparc64: Do not define thread fpregs save area as zero-length array Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 111/127] sparc64: Fix hibernation code refrence to PAGE_OFFSET Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 112/127] sparc64: correctly recognise M6 and M7 cpu type Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 113/127] sparc64: support M6 and M7 for building CPU distribution map Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 114/127] sparc64: cpu hardware caps support for sparc M6 and M7 Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 115/127] sparc64: T5 PMU Greg Kroah-Hartman
2014-10-28  3:35   ` Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 116/127] sparc64: Switch to 4-level page tables Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 117/127] sparc64: Define VA hole at run time, rather than at compile time Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 118/127] sparc64: Adjust KTSB assembler to support larger physical addresses Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 119/127] sparc64: Fix physical memory management regressions with large max_phys_bits Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 120/127] sparc64: Use kernel page tables for vmemmap Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 121/127] sparc64: Increase MAX_PHYS_ADDRESS_BITS to 53 Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 122/127] sparc64: Adjust vmalloc region size based upon available virtual address bits Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 123/127] sparc64: sparse irq Greg Kroah-Hartman
2014-10-28  3:35 ` [PATCH 3.16 124/127] sparc64: Kill unnecessary tables and increase MAX_BANKS Greg Kroah-Hartman
2014-10-28  3:36 ` [PATCH 3.16 125/127] sparc64: Increase size of boot string to 1024 bytes Greg Kroah-Hartman
2014-10-28  3:36   ` Greg Kroah-Hartman
2014-10-28  3:36 ` [PATCH 3.16 126/127] sparc64: Fix register corruption in top-most kernel stack frame during boot Greg Kroah-Hartman
2014-10-28  3:36 ` [PATCH 3.16 127/127] sparc64: Implement __get_user_pages_fast() Greg Kroah-Hartman
2014-10-28  3:51 ` [PATCH 3.16 000/127] 3.16.7-stable review Greg Kroah-Hartman
2014-10-28 13:57   ` Steven Rostedt
2014-10-28 14:06     ` Greg Kroah-Hartman
2014-10-28 15:14 ` Guenter Roeck
2014-10-28 16:15 ` Shuah Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141028033422.917878311@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=donb@securitymouse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=w@1wt.eu \
    --cc=willem@lekkertech.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.