)]}'
{
  "log": [
    {
      "commit": "9a0b5817ad97bb718ab85322759d19a238712b47",
      "tree": "39bd21eb69c4001b99096d96a76a2e5d37904108",
      "parents": [
        "4d7d8c82c181711d28c8336108330a9121f5ef07"
      ],
      "author": {
        "name": "Gerd Hoffmann",
        "email": "kraxel@suse.de",
        "time": "Thu Mar 23 02:59:32 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] x86: SMP alternatives\n\nImplement SMP alternatives, i.e.  switching at runtime between different\ncode versions for UP and SMP.  The code can patch both SMP-\u003eUP and UP-\u003eSMP.\nThe UP-\u003eSMP case is useful for CPU hotplug.\n\nWith CONFIG_CPU_HOTPLUG enabled the code switches to UP at boot time and\nwhen the number of CPUs goes down to 1, and switches to SMP when the number\nof CPUs goes up to 2.\n\nWithout CONFIG_CPU_HOTPLUG or on non-SMP-capable systems the code is\npatched once at boot time (if needed) and the tables are released\nafterwards.\n\nThe changes in detail:\n\n  * The current alternatives bits are moved to a separate file,\n    the SMP alternatives code is added there.\n\n  * The patch adds some new elf sections to the kernel:\n    .smp_altinstructions\n\tlike .altinstructions, also contains a list\n\tof alt_instr structs.\n    .smp_altinstr_replacement\n\tlike .altinstr_replacement, but also has some space to\n\tsave original instruction before replaving it.\n    .smp_locks\n\tlist of pointers to lock prefixes which can be nop\u0027ed\n\tout on UP.\n    The first two are used to replace more complex instruction\n    sequences such as spinlocks and semaphores.  It would be possible\n    to deal with the lock prefixes with that as well, but by handling\n    them as special case the table sizes become much smaller.\n\n * The sections are page-aligned and padded up to page size, so they\n   can be free if they are not needed.\n\n * Splitted the code to release init pages to a separate function and\n   use it to release the elf sections if they are unused.\n\nSigned-off-by: Gerd Hoffmann \u003ckraxel@suse.de\u003e\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7835e98b2e3c66dba79cb0ff8ebb90a2fe030c29",
      "tree": "405a96eade34845dabe2f125b6c5eb095846869d",
      "parents": [
        "70dc991d66cac40fdb07346dba2b5d862d732c34"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:40 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:02 2006 -0800"
      },
      "message": "[PATCH] remove set_page_count() outside mm/\n\nset_page_count usage outside mm/ is limited to setting the refcount to 1.\nRemove set_page_count from outside mm/, and replace those users with\ninit_page_count() and set_page_refcounted().\n\nThis allows more debug checking, and tighter control on how code is allowed\nto play around with page-\u003e_count.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "70dc991d66cac40fdb07346dba2b5d862d732c34",
      "tree": "53ba8de1ae2d49f7479391e82794e35f14c0f7f7",
      "parents": [
        "84097518d1ecd2330f9488e4c2d09953a3340e74"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:35 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:01 2006 -0800"
      },
      "message": "[PATCH] remove set_page_count(page, 0) users (outside mm)\n\nA couple of places set_page_count(page, 1) that don\u0027t need to.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "fe1db50c7222c67466e41241bc7ef17b469bcf1d",
      "tree": "1956b61473d8e9cc8a1a0849e75a728b1395f902",
      "parents": [
        "f462e8f913bdc7a28ce55508d0c045a0c445b157"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Fri Feb 24 13:03:58 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Feb 24 14:31:37 2006 -0800"
      },
      "message": "[PATCH] uml: tidying COW code\n\nImprove (especially for coherence) some prototypes, and return code of\ninit_cow_file in error case - for a short write return -EINVAL, otherwise\nreturn the error we got!\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f462e8f913bdc7a28ce55508d0c045a0c445b157",
      "tree": "ce584e748f632d90307d3c2cd62294f3b209c903",
      "parents": [
        "dc1561ac019ff7b6f75c5175abd2ec65c8dbd581"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Fri Feb 24 13:03:57 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Feb 24 14:31:37 2006 -0800"
      },
      "message": "[PATCH] uml: better error reporting for read_output\n\nDo precise error handling: print precise error messages, distinguishing short\nreads and read errors.  This functions fails frequently enough for me so I\nbothered doing this fix.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "dc1561ac019ff7b6f75c5175abd2ec65c8dbd581",
      "tree": "4820ed1be1024c2f09382dbeade4f7c4e5a8b3e8",
      "parents": [
        "635dd50b7dc69b698e8808ff2802a6cfc31385a8"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Fri Feb 24 13:03:56 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Feb 24 14:31:37 2006 -0800"
      },
      "message": "[PATCH] uml: os_connect_socket error path fixup\n\nFix an fd leak and a return of -1 instead of -errno in the error path - this\nshowed up in intensive testing of HPPFS, the os_connect_socket user.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "635dd50b7dc69b698e8808ff2802a6cfc31385a8",
      "tree": "d2d699dc7890eae52674b91a5ac34be645ce0e29",
      "parents": [
        "07f4e2c61c76e8b543c0a2589063aea85c15fb25"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Fri Feb 24 13:03:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Feb 24 14:31:37 2006 -0800"
      },
      "message": "[PATCH] uml: fix ((unused)) attribute\n\nUse __attribute_used__ instead of __attribute__ ((unused)).  This will help\nwith GCC \u003e 3.2.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "07f4e2c61c76e8b543c0a2589063aea85c15fb25",
      "tree": "7a43503115b18d26b5baed9c5bb9263469a5587f",
      "parents": [
        "31bc5a33346b6dd35be219d1416449e0064e9123"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Fri Feb 24 13:03:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Feb 24 14:31:37 2006 -0800"
      },
      "message": "[PATCH] uml: fix usage of kernel_errno in place of errno\n\nTo avoid conflicts, in kernel files errno is expanded to kernel_errno, to\ndistinguish it from glibc errno.  In this case, the code wants to use the libc\nerrno but the kernel one is used; in the other usage, we return errno in place\nof -errno in case of an error.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "31bc5a33346b6dd35be219d1416449e0064e9123",
      "tree": "ce4c3d105b5ec6cfa69b8300a885c9c26908eafe",
      "parents": [
        "b1a3aa209161af3b7ca8ce8eae89b15faa96f612"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Fri Feb 24 13:03:53 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Feb 24 14:31:36 2006 -0800"
      },
      "message": "[PATCH] uml: correct error messages in COW driver\n\nImprove some error messages in the COW driver, and say V3, not V2, when\ntalking about V3 format.  Also resync with our userspace code utility a bit\nmore.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "48b8c10056d22ecc070bbfcbbfc8f84d13181178",
      "tree": "9be17274d1560d25bc04fdf1cae9ce3e8ecb8d3d",
      "parents": [
        "e2216feb37f1df65a29fb1e5ed41d9f7ba657b2c"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Tue Feb 07 12:58:44 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Feb 07 16:12:32 2006 -0800"
      },
      "message": "[PATCH] uml: remove a dead file\n\nA previous patch removed a file from the build without removing it from the\ntree.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e2216feb37f1df65a29fb1e5ed41d9f7ba657b2c",
      "tree": "445da277a6f0202c6de853474f846467bf2dd7b7",
      "parents": [
        "43b00fdbb13bfc1b2f4a8e5b65315db6d9c479a3"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Tue Feb 07 12:58:43 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Feb 07 16:12:32 2006 -0800"
      },
      "message": "[PATCH] uml: initialize process FP registers properly\n\nWe weren\u0027t making sure that we initialized the FP registers of new processes\nto sane values.\n\nThis patch also moves some defines in the affected area closer to where they\nare used.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "43b00fdbb13bfc1b2f4a8e5b65315db6d9c479a3",
      "tree": "259d8a28854c007d2e0ee7ca0b0eba7e0f220a0d",
      "parents": [
        "14d9ead05ec925f299ae5cfe948c180c88ec842e"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Tue Feb 07 12:58:42 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Feb 07 16:12:32 2006 -0800"
      },
      "message": "[PATCH] uml: block SIGWINCH in ptrace tester child\n\nThe process that UML uses to probe the host\u0027s ptrace capabilities can (rarely)\nreceive a SIGWINCH, confusing the parent.  This fixes that by blocking\nSIGWINCH.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "14d9ead05ec925f299ae5cfe948c180c88ec842e",
      "tree": "88901eee9fb3d4b332b8cf96ffd91d0f9cbe2d2f",
      "parents": [
        "1d2ddcfb1935c9c0e98c4295458b01f24e3274f9"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Tue Feb 07 12:58:42 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Feb 07 16:12:32 2006 -0800"
      },
      "message": "[PATCH] uml: balance list_add and list_del in the network driver\n\nThe network driver added an interface to the \"opened\" list when it was\nconfigured, not when it was brought up, and removed it when it was taken down.\n A sequence of ifconfig up, ifconfig down, ...  caused it to be removed\nmultiple times from the list without being added in between, resulting in a\ncrash.  This patch moves the add to when the interface is brought up.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1d2ddcfb1935c9c0e98c4295458b01f24e3274f9",
      "tree": "94bc4ad32840430b22e22057dbf8deb70e72492a",
      "parents": [
        "fbd5577901388ff9306a05eb63648c30e4722134"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Tue Feb 07 12:58:41 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Feb 07 16:12:32 2006 -0800"
      },
      "message": "[PATCH] uml: close TUN/TAP file descriptors\n\nWhen UML opens a TUN/TAP device, the file descriptor could be copied into\nlater, long-lived threads, holding the device open even after the interface is\ntaken down, preventing it from being brought up again.  This patch makes these\ndescriptors close-on-exec so that they disappear from helper processes, and\nadds CLONE_FILES to a UML helper thread so that the descriptors are closed in\nthe thread when they are closed elsewhere in UML.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "fbd5577901388ff9306a05eb63648c30e4722134",
      "tree": "d114c2eed68da9bf7f435fe02dc39caa92a7c0d0",
      "parents": [
        "3bc8414b079ec372485c99ed1f33c6c42ca9d756"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Tue Feb 07 12:58:40 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Feb 07 16:12:32 2006 -0800"
      },
      "message": "[PATCH] uml: add debug switch for skas mode\n\nIt doesn\u0027t do anything but emit a warning, but there\u0027s a user population\nthat\u0027s used to adding \u0027debug\u0027 to the UML command line in order to gdb it.\nWith skas0 mode, that\u0027s not necessary, but these users need some indication\nthat \u0027debug\u0027 doesn\u0027t do what they want.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "72e5525765ee01d72a9b92fab78ecea883ae7fdd",
      "tree": "cb532f02be0ced6f5ce73470d7ce762d76358730",
      "parents": [
        "42947cb98fd16bff21e0000a974ff6bd1e620cd4"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Feb 01 03:06:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:23 2006 -0800"
      },
      "message": "[PATCH] uml: avoid \"CONFIG_NR_CPUS undeclared\" bogus error messages\n\n      Olaf Hering \u003colh@suse.de\u003e\n\nOlaf reported UML doesn\u0027t build for him with a clear analisys of what happened\n- we\u0027re using NR_CPUS in files linked against glibc headers.  Seems like it\ndefines CONFIG_SMP but not CONFIG_NR_CPUS, so we get CONFIG_NR_CPUS\nundeclared.\n\nThe fix is to move the declaration away from that header file and move it in\nasm-um headers, and to add that header where needed.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "42947cb98fd16bff21e0000a974ff6bd1e620cd4",
      "tree": "5f5892c860c97b58a69ab97303d0cacc5c67d78a",
      "parents": [
        "4cd7ed94428babb0cdbf08cc14c257e223186079"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Feb 01 03:06:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:23 2006 -0800"
      },
      "message": "[PATCH] uml: some harmless sparse warning fixes\n\nFix some simple sparse warnings - a lot more staticness and a misplaced\n__user.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e5cf888631af95c8022d659d77fb595e0c3ac778",
      "tree": "e35d7093339e16d0ee0bb30888b59832c5ca42fb",
      "parents": [
        "3dfd95b378953f6cf0bd58fc990c05ef5a0ea1a6"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Feb 01 03:06:27 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:22 2006 -0800"
      },
      "message": "[PATCH] uml: TT - SYSCALL_DEBUG - fix buglet introduced in cleanup\n\nFixes a bug introduced in commit e32dacb9f481fd6decb41adb28e720c923d34f54 -\nindex is initialized based on syscall before syscall is calculated.\n\nI\u0027m bothering with this mainly because it gives a correct warning when the\nconfig option is enabled, even if the code is for a almost unused debugging\noption.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3dfd95b378953f6cf0bd58fc990c05ef5a0ea1a6",
      "tree": "b36f902b9e38b06995d7d9cdf0079019f01f7225",
      "parents": [
        "854e981cc69bb93b49bdd052c8bc1dc744509f04"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Feb 01 03:06:26 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:22 2006 -0800"
      },
      "message": "[PATCH] uml: fix \"apples/bananas\" typo\n\nFix stupid typo.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "854e981cc69bb93b49bdd052c8bc1dc744509f04",
      "tree": "f45d1f19cc43c70f8f012ce7be667a3614e89cdb",
      "parents": [
        "98105d47d3d62eb68d06d85dd448699678d725fc"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Feb 01 03:06:25 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:22 2006 -0800"
      },
      "message": "[PATCH] uml: fix hugest stack users\n\nThe C99 initialization, with GCC\u0027s bad handling, for 6K wide structs (which\n_aren\u0027t_ on the stack), is causing GCC to use 12K for these silly procs with 3\nvars.  Workaround this.\n\nNote that .name \u003d { \u0027\\0\u0027 } translates to memset(-\u003ename, 0, \u0027-\u003ename\u0027 size) - I verified\nthis with GCC\u0027s docs and a testprogram.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "98105d47d3d62eb68d06d85dd448699678d725fc",
      "tree": "14bfef15ce1f4cb12dd5c90df3ee5846fbb4eb5b",
      "parents": [
        "0c19585b0d2f6817dd9af607650d3f6cae2fd8bc"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Feb 01 03:06:25 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:22 2006 -0800"
      },
      "message": "[PATCH] uml: comments about libc-conflict guards\n\nWhile fixing myself the mktime conflict (which someone already merged), I also\nimproved a few comments.  Merge them up.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "db805812084ab03fbf6aac95c5f7ef2f50e3bd9a",
      "tree": "e8c41301a70342ffa9dbee52ffa0bd5571097d31",
      "parents": [
        "c6b7a1edcb31306f904b5b11354bf0d198136e15"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Feb 01 03:06:23 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:22 2006 -0800"
      },
      "message": "[PATCH] uml: fix some typos\n\nFix a couple of typos.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c6b7a1edcb31306f904b5b11354bf0d198136e15",
      "tree": "1c6fcce373e89b64e20efd400f0e51e5e68b49ff",
      "parents": [
        "d8c206b2eeb244d6ab57d5a339e707fef2305aa7"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Feb 01 03:06:22 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:22 2006 -0800"
      },
      "message": "[PATCH] uml: add a build dependency\n\nkern_constants.h now depends on arch/um/include to make sure it exists\nbefore we try to create symlinks in it.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e8730eabd45e47e392f230ab8720c4b8537901fc",
      "tree": "b4baeb1144ba775c5148bc8bee36947e4a2e4dac",
      "parents": [
        "1d0098b6e2055e4afb2ceadf11c4b9f43b671ccc"
      ],
      "author": {
        "name": "Pekka Enberg",
        "email": "penberg@cs.helsinki.fi",
        "time": "Wed Feb 01 03:05:06 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Feb 01 08:53:12 2006 -0800"
      },
      "message": "[PATCH] uml: compilation fix when MODE_SKAS disabled\n\n  CC      arch/um/sys-i386/ldt.o\narch/um/sys-i386/ldt.c:19:21: proc_mm.h: No such file or directory\nmake[1]: *** [arch/um/sys-i386/ldt.o] Error 1\n\nSigned-off-by: Pekka Enberg \u003cpenberg@cs.helsinki.fi\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "36a7878a224c18aa4a5e098dc93d19cf5601462b",
      "tree": "25b6339902dc1a517da33f631021e90b34456e99",
      "parents": [
        "2fc10620e741153329e2f1cbcde76e526f501410"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 18 17:44:03 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:30 2006 -0800"
      },
      "message": "[PATCH] uml: use generic sys_rt_sigsuspend\n\nUse the generic sys_rt_sigsuspend.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2fc10620e741153329e2f1cbcde76e526f501410",
      "tree": "d93344bc160f4f2455d4a4947d6347c1ff9b6fd2",
      "parents": [
        "f27201da5c8f118cfe266f51447bdd108d5f081d"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 18 17:44:02 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:30 2006 -0800"
      },
      "message": "[PATCH] uml: add TIF_RESTORE_SIGMASK support\n\nAdd support for TIF_RESTORE_SIGMASK.  I copy the i386 handling of the flag.\nsys_sigsuspend is also changed to follow i386.\nAlso a bit of cleanup -\n   turn an if into a switch\n   get rid of a couple more emacs formatting comments\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a374a48ffbd7d1ffd40d1d30d2751df159a1aca7",
      "tree": "df16dafb952dbe530796cdcd853a9e04a5811810",
      "parents": [
        "4833aff757b747b51b878a13f3a6e2b1a2abb619"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:43:01 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:21 2006 -0800"
      },
      "message": "[PATCH] uml ubd code: fix a bit of whitespace\n\nCorrect a bit of whitespace problems while working here.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4833aff757b747b51b878a13f3a6e2b1a2abb619",
      "tree": "caec57a746cb04ef62e04fc5cf14a6acc555de46",
      "parents": [
        "ce2d2aedcc3ca582fed90f44970e8b3e4f006a7d"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:43:00 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:21 2006 -0800"
      },
      "message": "[PATCH] uml: allow again to move backing file and to override saved location\n\nWhen the user specifies both a COW file and its backing file, if the previous\nbacking file is not found, currently UML tries again to use it and fails.\n\nThis can be corrected by changing same_backing_files() return value in that\ncase, so that the caller will try to change the COW file to point to the new\nlocation, as already done in other cases.\n\nAdditionally, given the change in the meaning of the func, change its name,\ninvert its return value, so all values are inverted except when\nstat(from_cow,\u0026buf2) fails.  And add some comments and two minor bugfixes -\nremove a fd leak (return err rather than goto out) and a repeated check.\n\nTested well.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ce2d2aedcc3ca582fed90f44970e8b3e4f006a7d",
      "tree": "d62b397ea52aa09ebe466b6a4a79505e3c76e15c",
      "parents": [
        "b63162939cd797c8269964ce856ed1f2fec5f70e"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:42:59 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:21 2006 -0800"
      },
      "message": "[PATCH] uml: arch Kconfig menu cleanups\n\n*) mark as \"EXPERIMENTAL\" various items that either aren\u0027t very stable or\n   that are actively crashing the setup of users which don\u0027t really need them\n   (i.e.  HIGHMEM and 3-level pagetables on x86 - nobody needs either,\n   everybody reports \"I\u0027m using it and getting trouble\").\n\n*) move net/Kconfig near to the rest of network configurations, and\n   drivers/block/Kconfig near \"Block layer\" submenu.\n\n*) it\u0027s useless and doesn\u0027t work well to force NETDEVICES on and to disable\n   the prompt like it\u0027s done.  Better remove the attempt, and change that to a\n   simple \"default y if UML\".\n\n*) drop the warning about \"report problems about HPPFS\" - it\u0027s redundant\n   anyway, as that\u0027s the usual procedure, and HPPFS users are especially\n   technical (i.e.  they know reporting bugs is _good_).\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b63162939cd797c8269964ce856ed1f2fec5f70e",
      "tree": "666dd2919bd156aa183a87576224d0fad3c4cf72",
      "parents": [
        "b6a2b13778873bd9edd0b4a7d24a7bd730369021"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:42:58 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:21 2006 -0800"
      },
      "message": "[PATCH] uml: avoid malloc to sleep in atomic sections\n\nUgly trick to help make malloc not sleeping - we can\u0027t do anything else.  But\nthis is not yet optimal, since spinlock don\u0027t trigger in_atomic() when\npreemption is disabled.\n\nAlso, even if ugly, this was already used in one place, and was even more\nbogus.  Fix it.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b6a2b13778873bd9edd0b4a7d24a7bd730369021",
      "tree": "dc534ba13079c9fcecb2c02798c5021a26a95ae4",
      "parents": [
        "71c8d4c3aad3132765d30b05dce98bb8a9508f02"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:42:57 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:21 2006 -0800"
      },
      "message": "[PATCH] uml: sigio code - reduce spinlock hold time\n\nIn a previous patch I shifted an allocation to being atomic.\n\nIn this patch, a better but more intrusive solution is implemented, i.e.  hold\nthe lock only when really needing it, especially not over pipe operations, nor\nover the culprit allocation.\n\nAdditionally, while at it, add a missing kfree in the failure path, and make\nsure that if we fail in forking, write_sigio_pid is -1 and not, say, -ENOMEM.\n\nAnd fix whitespace, at least for things I was touching anyway.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "71c8d4c3aad3132765d30b05dce98bb8a9508f02",
      "tree": "d9b21742707b5de48511663f2fcd1627fb9a5a86",
      "parents": [
        "e56a78855a4f72fc658bfd21d08939dd6e09fa4c"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:42:56 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:21 2006 -0800"
      },
      "message": "[PATCH] uml: fix spinlock recursion and sleep-inside-spinlock in error path\n\nIn this error path, when the interface has had a problem, we call dev_close(),\nwhich is disallowed for two reasons:\n\n*) takes again the UML internal spinlock, inside the -\u003estop method of this\n   device\n*) can be called in process context only, while we\u0027re in interrupt context.\n\nI\u0027ve also thought that calling dev_close() may be a wrong policy to follow,\nbut it\u0027s not up to me to decide that.\n\nHowever, we may end up with multiple dev_close() queued on the same device.\nBut the initial test for (dev-\u003eflags \u0026 IFF_UP) makes this harmless, though -\nand dev_close() is supposed to care about races with itself.  So there\u0027s no\nharm in delaying the shutdown, IMHO.\n\nSomething to mark the interface as \"going to shutdown\" would be appreciated,\nbut dev_deactivate has the same problems as dev_close(), so we can\u0027t use it\neither.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e56a78855a4f72fc658bfd21d08939dd6e09fa4c",
      "tree": "fcb56d8a23bad9824e72ef8fb26e688726061d9d",
      "parents": [
        "c42791b6ec5453cd7910eac7bfdd88f27173f81c"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:42:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:21 2006 -0800"
      },
      "message": "[PATCH] uml: networking - clear transport-specific structure\n\nPre-clear transport-specific private structure before passing it down.\n\nIn fact, I just got a slab corruption and kernel panic on exit because kfree()\nwas called on a pointer which probably was never allocated, BUT hadn\u0027t been\nset to NULL by the driver.\n\nAs the code is full of such errors, I\u0027ve decided for now to go the safe way\n(we\u0027re talking about drivers), and to do the simple thing.  I\u0027m also starting\nto fix drivers, and already sent a patch for the daemon transport.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c42791b6ec5453cd7910eac7bfdd88f27173f81c",
      "tree": "f874b541bfacb27df2bcfdf6fe5823353d431635",
      "parents": [
        "3b948068b84b9759cdf0965abf3074dcb9230e98"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Wed Jan 18 17:42:53 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:20 2006 -0800"
      },
      "message": "[PATCH] uml: make daemon transport behave properly\n\nAvoid uninitialized data in the daemon_data structure.  I used this transport\nbefore doing proper setup before-hand, and I got some very nice SLAB\ncorruption due to freeing crap pointers.  So just make sure to clear\neverything when appropriate.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "097fdf06c63741e6ac1a4e01c2255861dd0a1c49",
      "tree": "0aa53ac292ce1dd31cc5a416231ffc47eb0da940",
      "parents": [
        "c83d4635ee8c8fe16046ff6cabcff708be16df75"
      ],
      "author": {
        "name": "Bodo Stroesser",
        "email": "bstroesser@fujitsu-siemens.com",
        "time": "Wed Jan 18 17:42:51 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:20 2006 -0800"
      },
      "message": "[PATCH] uml: TT mode softint fixes\n\nSome fixes to make softints work in tt mode.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c83d4635ee8c8fe16046ff6cabcff708be16df75",
      "tree": "8853be96da3194a4a9f08d3e2bf7f4d54dafcad6",
      "parents": [
        "1d7173baf286c8b720f97f119ec92be43076ebde"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 18 17:42:50 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:20 2006 -0800"
      },
      "message": "[PATCH] uml: use setjmp/longjmp instead of sigsetjmp/siglongjmp\n\nNow that we are doing soft interrupts, there\u0027s no point in using sigsetjmp and\nsiglongjmp.  Using setjmp and longjmp saves a sigprocmask on every jump.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1d7173baf286c8b720f97f119ec92be43076ebde",
      "tree": "4d562c25063c73a690fe1777fa86c3f48dfbbf13",
      "parents": [
        "09ee011eb322c2072ec184a88763c250a5485d8b"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 18 17:42:49 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:20 2006 -0800"
      },
      "message": "[PATCH] uml: implement soft interrupts\n\nThis patch implements soft interrupts.  Interrupt enabling and disabling no\nlonger map to sigprocmask.  Rather, a flag is set indicating whether\ninterrupts may be handled.  If a signal comes in and interrupts are marked as\nOK, then it is handled normally.  If interrupts are marked as off, then the\nsignal handler simply returns after noting that a signal needs handling.  When\ninterrupts are enabled later on, this pending signals flag is checked, and the\nIRQ handlers are called at that point.\n\nThe point of this is to reduce the cost of local_irq_save et al, since they\nare very much more common than the signals that they are enabling and\ndisabling.  Soft interrupts produce a speed-up of ~25% on a kernel build.\n\nSubtleties -\n\n    UML uses sigsetjmp/siglongjmp to switch contexts.  sigsetjmp has been\n    wrapped in a save_flags-like macro which remembers the interrupt state at\n    setjmp time, and restores it when it is longjmp-ed back to.\n\n    The enable_signals function has to loop because the IRQ handler\n    disables interrupts before returning.  enable_signals has to return with\n    signals enabled, and signals may come in between the disabling and the\n    return to enable_signals.  So, it loops for as long as there are pending\n    signals, ensuring that signals are enabled when it finally returns, and\n    that there are no pending signals that need to be dealt with.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "09ee011eb322c2072ec184a88763c250a5485d8b",
      "tree": "ea13731ab3d7fe143b27b0f060956b3cec0f727a",
      "parents": [
        "abaf69773d8dda98b917d94c07757f6520da7bec"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 18 17:42:48 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:20 2006 -0800"
      },
      "message": "[PATCH] uml: eliminate some globals\n\nStop using global variables to hold the file descriptor and offset used to map\nthe skas0 stubs.  Instead, calculate them using the page physical addresses.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "abaf69773d8dda98b917d94c07757f6520da7bec",
      "tree": "1000669c13511044d1f545cff6af26c1b1d946fb",
      "parents": [
        "f45d9fc9d80678c2ee22c578e503055207c46fd0"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Wed Jan 18 17:42:46 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:19 2006 -0800"
      },
      "message": "[PATCH] uml: move libc-dependent skas process handling\n\nThe serial UML OS-abstraction layer patch (um/kernel/skas dir).\n\nThis moves all systemcalls from skas/process.c file under os-Linux dir and\njoin skas/process.c and skas/process_kern.c files.\n\nSigned-off-by: Gennady Sharapov \u003cgennady.v.sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f45d9fc9d80678c2ee22c578e503055207c46fd0",
      "tree": "e67a7783c2866af94092801a519f04bb77109ade",
      "parents": [
        "4abfbf4034b419736de5797a3860ab0bcf5c5c8d"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Wed Jan 18 17:42:45 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:19 2006 -0800"
      },
      "message": "[PATCH] uml: move libc-dependent skas memory mapping code\n\nThe serial UML OS-abstraction layer patch (um/kernel/skas dir).\n\nThis moves all systemcalls from skas/mem_user.c file under os-Linux dir and\njoin skas/mem_user.c and skas/mem.c files.\n\nSigned-off-by: Gennady Sharapov \u003cgennady.v.sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4abfbf4034b419736de5797a3860ab0bcf5c5c8d",
      "tree": "4cc593f696c92dc2f3db63f9c89bc5862ea73801",
      "parents": [
        "2c332a251302873cf8301c2aad27737b6df70255"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Wed Jan 18 17:42:44 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:19 2006 -0800"
      },
      "message": "[PATCH] uml: move headers to arch/um/include\n\nThe serial UML OS-abstraction layer patch (um/kernel dir).\n\nThis moves skas headers to arch/um/include.\n\nSigned-off-by: Gennady Sharapov \u003cGennady.V.Sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2c332a251302873cf8301c2aad27737b6df70255",
      "tree": "8c641abe3d27bf44a7a55f4f6354dc5de7ccc260",
      "parents": [
        "cff65c4f0ea6662124bbb7bf3806e5df1c6d735d"
      ],
      "author": {
        "name": "Bodo Stroesser",
        "email": "bstroesser@fujitsu-siemens.com",
        "time": "Wed Jan 18 17:42:43 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:19 2006 -0800"
      },
      "message": "[PATCH] uml: change interface to boot_timer_handler\n\nCurrent implementation of boot_timer_handler isn\u0027t usable for s390.  So I\nchanged its name to do_boot_timer_handler, taking (struct sigcontext *)sc as\nargument.  do_boot_timer_handler is called from new boot_timer_handler() in\narch/um/os-Linux/signal.c, which uses the same mechanisms as other signal\nhandler to find out sigcontext pointer.\n\nSigned-off-by: Bodo Stroesser \u003cbstroesser@fujitsu-siemens.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "cff65c4f0ea6662124bbb7bf3806e5df1c6d735d",
      "tree": "5f19b3facdfa6a50ad1668b28d1ff74a92a90271",
      "parents": [
        "4fef0c10fa174b57a10854b8b4b2b90d155706e0"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Wed Jan 18 17:42:42 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:19 2006 -0800"
      },
      "message": "[PATCH] uml: move libc-dependent time code\n\nThe serial UML OS-abstraction layer patch (um/kernel dir).\n\nThis moves all systemcalls from time.c file under os-Linux dir and joins\ntime.c and tine_kernel.c files\n\nSigned-off-by: Gennady Sharapov \u003cGennady.V.Sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4fef0c10fa174b57a10854b8b4b2b90d155706e0",
      "tree": "02cfcc989114da9a6d46484753937cc0e3a60b52",
      "parents": [
        "12919aa6e015dd85170fc3b1a3e10a5dfd116c72"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Wed Jan 18 17:42:41 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:19 2006 -0800"
      },
      "message": "[PATCH] uml: move libc-dependent utility procedures\n\nThe serial UML OS-abstraction layer patch (um/kernel dir).\n\nThis moves all systemcalls from user_util.c file under os-Linux dir\n\nSigned-off-by: Gennady Sharapov \u003cGennady.V.Sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "12919aa6e015dd85170fc3b1a3e10a5dfd116c72",
      "tree": "07072818e5155f55f7c9867d216725f1261ec009",
      "parents": [
        "ea1eae75eb596e0628dc5e01d32c78b1f6b257fb"
      ],
      "author": {
        "name": "Bodo Stroesser",
        "email": "bstroesser@fujitsu-siemens.com",
        "time": "Wed Jan 18 17:42:39 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 18 19:20:18 2006 -0800"
      },
      "message": "[PATCH] uml: move LDT creation\n\ns390 doesn\u0027t have a LDT.  So MM_COPY_SEGMENTS will not be supported on s390.\n\nThe only user of MM_COPY_SEGMENTS is new_mm(), but that\u0027s no longer useful, as\narch/sys-i386/ldt.c defines init_new_ldt(), which is called immediately after\nnew_mm().  So we should copy host\u0027s LDT in init_new_ldt(), if /proc/mm is\navailable, to have this subarch specific call in subarch code.\n\nSigned-off-by: Bodo Stroesser \u003cbstroesser@fujitsu-siemens.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3f02d072d46bb409e8ca3cf16c0511f5c21adaf6",
      "tree": "baec074db38a5ceaaabbcee76f199acef43bb42a",
      "parents": [
        "0238cb4e7583c521bb3538060f98a73e65f61324",
        "fb453d4b0b51ea71c9eb8192c61b768afeb7ee8a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 15 16:43:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 15 16:43:29 2006 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial\n"
    },
    {
      "commit": "ee7be5de357b8ff69afc8c39648b336cd917218a",
      "tree": "77127835d1a1896fc182cc737b7b5e9474b3ee63",
      "parents": [
        "858119e159384308a5dde67776691a2ebf70df0f"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Sat Jan 14 13:20:44 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Jan 14 18:27:06 2006 -0800"
      },
      "message": "[PATCH] uml: fix symbol for mktime\n\n  LD      .tmp_vmlinux1\n/usr/lib/gcc-lib/i486-linux/3.3.4/../../../libc.a(mktime.o): In function `timelocal\u0027:\n: multiple definition of `mktime\u0027\nkernel/built-in.o:kernel/time.c:604: first defined here\n/usr/bin/ld: Warning: size of symbol `mktime\u0027 changed from 134 in kernel/built-in.o to 44 in /usr/lib/gcc-lib/i486-linux/3.3.4/../../../libc.a(mktime.o)\ncollect2: ld returned 1 exit status\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "014c2544e6fd09d702c908d95fe32c082376e15c",
      "tree": "deba495e18bc9ba16bd8d703e2c901b9af8bbe38",
      "parents": [
        "46a9f65f8bb39778646b83220d9619aff1490bcd"
      ],
      "author": {
        "name": "Jesper Juhl",
        "email": "juhl-lkml@dif.dk",
        "time": "Sun Jan 15 02:37:08 2006 +0100"
      },
      "committer": {
        "name": "Adrian Bunk",
        "email": "bunk@r063144.stusta.swh.mhn.de",
        "time": "Sun Jan 15 02:37:08 2006 +0100"
      },
      "message": "return statement cleanup - kill pointless parentheses\n\nThis patch removes pointless parentheses from return statements.\n\nSigned-off-by: Jesper Juhl \u003cjuhl-lkml@dif.dk\u003e\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\n"
    },
    {
      "commit": "579b3ea5916d60ade1e04d2a49637e5cbba67eac",
      "tree": "9dd96a3fc1e55b3c093ef611edcd16a7aed1f32a",
      "parents": [
        "ca9bc0bb2d1c7afdd34ec79b3de4d16a8e0225e8"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Thu Jan 12 01:05:48 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Jan 12 09:08:53 2006 -0800"
      },
      "message": "[PATCH] uml: task_stack_page()\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ca9bc0bb2d1c7afdd34ec79b3de4d16a8e0225e8",
      "tree": "0233d66a5b61716f676ef78e45bb71e976668cd2",
      "parents": [
        "36483c6b5e6cc8f29fbe5203caa7e0b836802747"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Thu Jan 12 01:05:48 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Jan 12 09:08:53 2006 -0800"
      },
      "message": "[PATCH] uml: task_thread_info()\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "beb25c6e27b21d0c0f7b9c2769fa334f1f9a8c2c",
      "tree": "1b4f10528b5d73db96e7b71e9eae58f8bf236d47",
      "parents": [
        "621009f4baf24581211dbb7b0816e01ed9fa8496"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 11 12:17:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 11 18:42:10 2006 -0800"
      },
      "message": "[PATCH] uml: kill an unused variable\n\nThe HDIO_GETGEO patch left an unused variable in the UML block driver.  This\ngets rid of it.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "621009f4baf24581211dbb7b0816e01ed9fa8496",
      "tree": "9fb6f53b0b0e3d55d3d4e1de60f6b9ab66accc23",
      "parents": [
        "a174b30e2963a02e9657f4ac69b2b500993bf0d4"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 11 12:17:28 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 11 18:42:10 2006 -0800"
      },
      "message": "[PATCH] uml: fix debug output on x86_64\n\nThe debug-stub patch was broken on x86_64 because it thinks the frame size\nthere is 168 words.  In reality, it is 168 bytes, and using HOST_FRAME_SIZE,\nwhich is expressed in consistent units across architectures, fixes this.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a174b30e2963a02e9657f4ac69b2b500993bf0d4",
      "tree": "9defc32aa50e73397ae8744ae07daac3a816b43d",
      "parents": [
        "edc0e6595616db3f34229077f30eb0616d1e0b84"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 11 12:17:28 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 11 18:42:09 2006 -0800"
      },
      "message": "[PATCH] uml: eliminate doubled boot output\n\nCON_PRINTBUFFER was a bad idea for the mconsole console.  It causes the boot\noutput to be printed twice.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "edc0e6595616db3f34229077f30eb0616d1e0b84",
      "tree": "f4c7247ded9641273d47302d959737f2143e1d1b",
      "parents": [
        "114d1ff4f551c8cc940de71b03c5b7365b4124f5"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 11 12:17:27 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 11 18:42:09 2006 -0800"
      },
      "message": "[PATCH] uml: revert compile-time option checking\n\nUndo the previous no-modes patch since Adrian Bunk sent in a kbuild way of\ndoing the same thing.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "114d1ff4f551c8cc940de71b03c5b7365b4124f5",
      "tree": "4cbdd6bcdce9cd34f3920676fdd10779c30a5780",
      "parents": [
        "4ee189a9260849ebacbdd3caf1fd5eb077fcf6a9"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 11 12:17:26 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 11 18:42:09 2006 -0800"
      },
      "message": "[PATCH] uml: update Kconfig help\n\nThe MODE_TT help was a little outdated.  This updates it in light of the\nexistence of skas0 mode.  It\u0027s also turned off by default since it is mostly\nobsoleted by skas0 mode.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4ee189a9260849ebacbdd3caf1fd5eb077fcf6a9",
      "tree": "016e90e4f3d7da648e3739e08849457ffbc50cfd",
      "parents": [
        "10b5aabddd1e8f26fdccc56666ddcad653e02fd6"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Wed Jan 11 12:17:23 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 11 18:42:09 2006 -0800"
      },
      "message": "[PATCH] uml: fix missing KBUILD_BASENAME\n\n2.6.15-mm1 caused kernel-offsets.c to stop compiling with a syntax error in a\nheader.  The problem was with KBUILD_BASENAME, which didn\u0027t get a definition\nwith the by-hand compilation in the main UML Makefile.\n\nThis was OK before since the expansion was syntactically the same as the\nKBUILD_BASENAME token.  With -mm1, the expansion is now a quote-delimited\nstring, so there needs to be a definition of it.\n\nSince kernel-offsets.c is basically the same as other arches\u0027 asm-offsets.c,\nand those seem to build OK, this patch turns kernel-offsets.c into\nasm-offsets.c.  kernel-offsets.c is in arch/um/sys-$(SUBARCH), i.e.  sys-i386\nand sys-x86_64, while kbuild expects it to be in arch/um/kernel.\nkernel-offsets.c is moved to\narch/um/include/sysdep-$(SUBARCH)/kernel-offsets.h, which is included by\narch/um/kernel/asm-offsets.c.  With that, include/asm-um/asm-offsets.h is\ngenerated automatically.  kernel-offsets.h continues to exist because it needs\nto be accessible to userspace UML code, and include/asm-um isn\u0027t.  So, a\nsymlink is made from arch/um/include/kernel-offsets.h to\ninclude/asm-um/asm-offsets.h.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "33f0f88f1c51ae5c2d593d26960c760ea154c2e2",
      "tree": "f53a38cf49406863f079d74d0e8f91b276f7c1a9",
      "parents": [
        "6ed80991a2dce4afc113be35089c564d62fa1f11"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 09 20:54:13 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 10 08:01:59 2006 -0800"
      },
      "message": "[PATCH] TTY layer buffering revamp\n\nThe API and code have been through various bits of initial review by\nserial driver people but they definitely need to live somewhere for a\nwhile so the unconverted drivers can get knocked into shape, existing\ndrivers that have been updated can be better tuned and bugs whacked out.\n\nThis replaces the tty flip buffers with kmalloc objects in rings. In the\nnormal situation for an IRQ driven serial port at typical speeds the\nbehaviour is pretty much the same, two buffers end up allocated and the\nkernel cycles between them as before.\n\nWhen there are delays or at high speed we now behave far better as the\nbuffer pool can grow a bit rather than lose characters. This also means\nthat we can operate at higher speeds reliably.\n\nFor drivers that receive characters in blocks (DMA based, USB and\nespecially virtualisation) the layer allows a lot of driver specific\ncode that works around the tty layer with private secondary queues to be\nremoved. The IBM folks need this sort of layer, the smart serial port\npeople do, the virtualisers do (because a virtualised tty typically\noperates at infinite speed rather than emulating 9600 baud).\n\nFinally many drivers had invalid and unsafe attempts to avoid buffer\noverflows by directly invoking tty methods extracted out of the innards\nof work queue structs. These are no longer needed and all go away. That\nfixes various random hangs with serial ports on overflow.\n\nThe other change in here is to optimise the receive_room path that is\nused by some callers. It turns out that only one ldisc uses receive room\nexcept asa constant and it updates it far far less than the value is\nread. We thus make it a variable not a function call.\n\nI expect the code to contain bugs due to the size alone but I\u0027ll be\nwatching and squashing them and feeding out new patches as it goes.\n\nBecause the buffers now dynamically expand you should only run out of\nbuffering when the kernel runs out of memory for real.  That means a lot of\nthe horrible hacks high performance drivers used to do just aren\u0027t needed any\nmore.\n\nDescription:\n\ntty_insert_flip_char is an old API and continues to work as before, as does\ntty_flip_buffer_push() [this is why many drivers dont need modification].  It\ndoes now also return the number of chars inserted\n\nThere are also\n\ntty_buffer_request_room(tty, len)\n\nwhich asks for a buffer block of the length requested and returns the space\nfound.  This improves efficiency with hardware that knows how much to\ntransfer.\n\nand tty_insert_flip_string_flags(tty, str, flags, len)\n\nto insert a string of characters and flags\n\nFor a smart interface the usual code is\n\n    len \u003d tty_request_buffer_room(tty, amount_hardware_says);\n    tty_insert_flip_string(tty, buffer_from_card, len);\n\nMore description!\n\nAt the moment tty buffers are attached directly to the tty.  This is causing a\nlot of the problems related to tty layer locking, also problems at high speed\nand also with bursty data (such as occurs in virtualised environments)\n\nI\u0027m working on ripping out the flip buffers and replacing them with a pool of\ndynamically allocated buffers.  This allows both for old style \"byte I/O\"\ndevices and also helps virtualisation and smart devices where large blocks of\ndata suddenely materialise and need storing.\n\nSo far so good.  Lots of drivers reference tty-\u003eflip.*.  Several of them also\ncall directly and unsafely into function pointers it provides.  This will all\nbreak.  Most drivers can use tty_insert_flip_char which can be kept as an API\nbut others need more.\n\nAt the moment I\u0027ve added the following interfaces, if people think more will\nbe needed now is a good time to say\n\n int tty_buffer_request_room(tty, size)\n\nTry and ensure at least size bytes are available, returns actual room (may be\nzero).  At the moment it just uses the flipbuf space but that will change.\nRepeated calls without characters being added are not cumulative.  (ie if you\ncall it with 1, 1, 1, and then 4 you\u0027ll have four characters of space.  The\nother functions will also try and grow buffers in future but this will be a\nmore efficient way when you know block sizes.\n\n int tty_insert_flip_char(tty, ch, flag)\n\nAs before insert a character if there is room.  Now returns 1 for success, 0\nfor failure.\n\n int tty_insert_flip_string(tty, str, len)\n\nInsert a block of non error characters.  Returns the number inserted.\n\n int tty_prepare_flip_string(tty, strptr, len)\n\nAdjust the buffer to allow len characters to be added.  Returns a buffer\npointer in strptr and the length available.  This allows for hardware that\nneeds to use functions like insl or mencpy_fromio.\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nCc: Paul Fulghum \u003cpaulkf@microgate.com\u003e\nSigned-off-by: Hirokazu Takata \u003ctakata@linux-m32r.org\u003e\nSigned-off-by: Serge Hallyn \u003cserue@us.ibm.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: John Hawkes \u003chawkes@sgi.com\u003e\nSigned-off-by: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "becf8b5d00f4b47e847f98322cdaf8cd16243861",
      "tree": "152ba7583324c64d34ecc70d5401957ca7225761",
      "parents": [
        "97735f25d2ba898ec5e13746451525580631c834"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Mon Jan 09 20:52:38 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 10 08:01:39 2006 -0800"
      },
      "message": "[PATCH] hrtimer: convert posix timers completely\n\n- convert posix-timers.c to use hrtimers\n\n- remove the now obsolete abslist code\n\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e585e47031751f4e393e10ffd922885508b958dd",
      "tree": "08a641dab000aacb25c6b7331c32271e4109535f",
      "parents": [
        "22c4e3084eb8b88288a622a57d8b35c450a439f2"
      ],
      "author": {
        "name": "Matt Mackall",
        "email": "mpm@selenic.com",
        "time": "Sun Jan 08 01:05:24 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:14:11 2006 -0800"
      },
      "message": "[PATCH] tiny: Make *[ug]id16 support optional\n\nConfigurable 16-bit UID and friends support\n\nThis allows turning off the legacy 16 bit UID interfaces on embedded platforms.\n\n   text    data     bss     dec     hex filename\n3330172  529036  190556 4049764  3dcb64 vmlinux-baseline\n3328268  529040  190556 4047864  3dc3f8 vmlinux\n\nFrom: Adrian Bunk \u003cbunk@stusta.de\u003e\n\n    UID16 was accidentially disabled for !EMBEDDED.\n\nSigned-off-by: Matt Mackall \u003cmpm@selenic.com\u003e\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5e38291d80086f6972f471c7caffa03184de0bf0",
      "tree": "563a6aaac4f8c15f448080a3cec738821fa14a0b",
      "parents": [
        "87ba81dba431232548ce29d5d224115d0c2355ac"
      ],
      "author": {
        "name": "Eric W. Biederman",
        "email": "ebiederm@xmission.com",
        "time": "Sun Jan 08 01:03:46 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:14:00 2006 -0800"
      },
      "message": "[PATCH] Don\u0027t attempt to power off if power off is not implemented\n\nThe problem.  It is expected that /sbin/halt -p works exactly like\n/sbin/halt, when the kernel does not implement power off functionality.\n\nThe kernel can do a lot of work in the reboot notifiers and in\ndevice_shutdown before we even get to machine_power_off.  Some of that\nshutdown is not safe if you are leaving the power on, and it definitely\ngets in the way of using sysrq or pressing ctrl-alt-del.  Since the\nshutdown happens in generic code there is no way to fix this in\narchitecture specific code :(\n\nSome machines are kernel oopsing today because of this.\n\nThe simple solution is to turn LINUX_REBOOT_CMD_POWER_OFF into\nLINUX_REBOOT_CMD_HALT if power_off functionality is not implemented.\n\nThis has the unfortunate side effect of disabling the power off\nfunctionality on architectures that leave pm_power_off to null and still\nimplement something in machine_power_off.  And it will break the build on\nsome architectures that don\u0027t have a pm_power_off variable at all.\n\nOn both counts I say tough.\n\nFor architectures like alpha that don\u0027t implement the pm_power_off variable\npm_power_off is declared in linux/pm.h and it is a generic part of our\npower management code, and all architectures should implement it.\n\nFor architectures like parisc that have a default power off method in\nmachine_power_off if pm_power_off is not implemented or fails.  It is easy\nenough to set the pm_power_off variable.  And nothing bad happens there,\nthe machines just stop powering off.\n\nThe current semantics are impossible without a flag at the top level so we\ncan avoid the problem code if a power off is not implemented.  pm_power_off\nis as good a flag as any with the bonus that it works without modification\non at least x86, x86_64, powerpc, and ppc today.\n\nAndrew can you pick this up and put this in the mm tree.  Kernels that\ndon\u0027t compile or don\u0027t power off seem saner than kernels that oops or\npanic.  Until we get the arch specific patches for the problem\narchitectures this probably isn\u0027t smart to push into the stable kernel.\nUnfortunately I don\u0027t have the time at the moment to walk through every\narchitecture and make them work.  And even if I did I couldn\u0027t test it :(\n\nFrom: Hirokazu Takata \u003ctakata@linux-m32r.org\u003e\n\n    Add pm_power_off() for build fix of arch/m32r/kernel/process.c.\n\nFrom: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\n\n    UML build fix\n\nSigned-off-by: Eric W. Biederman \u003cebiederm@xmission.com\u003e\nSigned-off-by: Hayato Fujiwara \u003cfujiwara@linux-m32r.org\u003e\nSigned-off-by: Hirokazu Takata \u003ctakata@linux-m32r.org\u003e\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a885c8c4316e1c1d2d2c8755da3f3d14f852528d",
      "tree": "e4f4e7a7657c0944d11c259f8f17ffcd6b2da0f5",
      "parents": [
        "5b0ed2c64d8fdafb5fcfb3baabdd288628b1ff9b"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@lst.de",
        "time": "Sun Jan 08 01:02:50 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:54 2006 -0800"
      },
      "message": "[PATCH] Add block_device_operations.getgeo block device method\n\nHDIO_GETGEO is implemented in most block drivers, and all of them have to\nduplicate the code to copy the structure to userspace, as well as getting\nthe start sector.  This patch moves that to common code [1] and adds a\n-\u003egetgeo method to fill out the raw kernel hd_geometry structure.  For many\ndrivers this means -\u003eioctl can go away now.\n\n[1] the s390 block drivers are odd in this respect.  xpram sets -\u003estart\n    to 4 always which seems more than odd, and the dasd driver shifts\n    the start offset around, probably because of it\u0027s non-standard\n    sector size.\n\nSigned-off-by: Christoph Hellwig \u003chch@lst.de\u003e\nCc: Jens Axboe \u003caxboe@suse.de\u003e\nCc: \u003cmike.miller@hp.com\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Bartlomiej Zolnierkiewicz \u003cB.Zolnierkiewicz@elka.pw.edu.pl\u003e\nCc: Neil Brown \u003cneilb@cse.unsw.edu.au\u003e\nCc: Markus Lidel \u003cMarkus.Lidel@shadowconnect.com\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nCc: David Woodhouse \u003cdwmw2@infradead.org\u003e\nCc: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\nCc: James Bottomley \u003cJames.Bottomley@steeleye.com\u003e\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "eafbaa94691f6a1fa67c3b076caa3ce4e2920100",
      "tree": "3534b420ba7f1465265277b99b0b5f282d38facb",
      "parents": [
        "c0a689d05d8dc1580aeb87b2959e3de8c57f5f77"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Sun Jan 08 01:01:34 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:40 2006 -0800"
      },
      "message": "[PATCH] uml: prevent MODE_SKAS\u003dn and MODE_TT\u003dn\n\nIf MODE_TT\u003dn, MODE_SKAS must be y.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c0a689d05d8dc1580aeb87b2959e3de8c57f5f77",
      "tree": "05e8b4f18f90a9b2b6cebed72cb668808c94cafb",
      "parents": [
        "f8aaeacec159f2d9003872781fa4d49659e347fb"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Sun Jan 08 01:01:33 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:40 2006 -0800"
      },
      "message": "[PATCH] uml: whitespace cleanup\n\nThis fixes some mangled whitespace added by the earlier trap_user.c patch.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c66fdd5e324392584c6f11de65cfe24b0e2d9303",
      "tree": "f05cb784406c0a0cb24d291e515dfcaa3e4b6464",
      "parents": [
        "ea2ba7dc3dd3f85034e6da6abacc813d723a2ad5"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Sun Jan 08 01:01:32 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:39 2006 -0800"
      },
      "message": "[PATCH] uml: merge trap_user.c and trap_kern.c\n\nThe serial UML OS-abstraction layer patch (um/kernel dir).\n\nThis joins trap_user.c and trap_kernel.c files.\n\nSigned-off-by: Gennady Sharapov \u003cGennady.V.Sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ea2ba7dc3dd3f85034e6da6abacc813d723a2ad5",
      "tree": "56f3d2a22d3ba3d91042d9a536b659b9c967dc03",
      "parents": [
        "0805d89c151b4800eade4c2f50d39c5253d7d054"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Sun Jan 08 01:01:31 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:39 2006 -0800"
      },
      "message": "[PATCH] uml: move libc-dependent code from trap_user.c\n\nThe serial UML OS-abstraction layer patch (um/kernel dir).\n\nThis moves all systemcalls from trap_user.c file under os-Linux dir\n\nSigned-off-by: Gennady Sharapov \u003cGennady.V.Sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0805d89c151b4800eade4c2f50d39c5253d7d054",
      "tree": "3ff8a48973e266f5e9eccf6aa38c80282aef12ca",
      "parents": [
        "b2de464f7f0006bec162559a8db161869d32ee93"
      ],
      "author": {
        "name": "Gennady Sharapov",
        "email": "Gennady.V.Sharapov@intel.com",
        "time": "Sun Jan 08 01:01:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:39 2006 -0800"
      },
      "message": "[PATCH] uml: move libc-dependent code from signal_user.c\n\nThe serial UML OS-abstraction layer patch (um/kernel dir).\n\nThis moves all systemcalls from signal_user.c file under os-Linux dir\n\nSigned-off-by: Gennady Sharapov \u003cGennady.V.Sharapov@intel.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8d93c700a489eba08514222df414a23852a85d2b",
      "tree": "95431dbad08c7807840faff3d8bf85dba0c66e13",
      "parents": [
        "3a331a511a2fe522034f3958eecf58751be434ac"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:06 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:48 2006 -0800"
      },
      "message": "[PATCH] uml: free network IRQ correctly\n\nFree the network IRQ when closing down the network devices at shutdown.\nDelete the device from the opened devices list on close.\n\nThese prevent an -EBADF when later disabling SIGIO on all extant descriptors\nand a complaint from free_irq about freeing the IRQ twice.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3a331a511a2fe522034f3958eecf58751be434ac",
      "tree": "4e1a5e3f1c1b3d46a685c7993afe8065f84a0786",
      "parents": [
        "4111b025dc64f33803d2147565147428dc51d014"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:05 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:48 2006 -0800"
      },
      "message": "[PATCH] uml: fix whitespace in mconsole driver\n\nFix up some bogus spacing in the mconsole driver.  Also delete the\nemacs formatting comment at the end.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4111b025dc64f33803d2147565147428dc51d014",
      "tree": "9eaf09fd540df937c40d16a973c11f0427c0c1b0",
      "parents": [
        "6f517d3fc862d3c8d8ba65c0b2472d399aceb9ed"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:05 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:48 2006 -0800"
      },
      "message": "[PATCH] uml: capture printk output for mconsole sysrq\n\nPass sysrq output back to the mconsole client using the mechanism\nintroduced for stack output.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6f517d3fc862d3c8d8ba65c0b2472d399aceb9ed",
      "tree": "d8062920a60939dd2dda3b2deb39a4e206e0ae06",
      "parents": [
        "7b033e1fdeef3d8bacac3cd5cfa53c9d670d1f3d"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:04 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:48 2006 -0800"
      },
      "message": "[PATCH] uml: capture printk output for mconsole stack\n\nThe stack command now sends the printk output back to the mconsole client.\nThis is done by registering a special console for the mconsole driver.  This\nreceives all printk output.  Normally, it is ignored, but when a stack command\nis issued, any printk output will be sent back to the client.\n\nThis will capture any printk output, whether it is stack output or not, since\nwe can\u0027t tell the difference.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7b033e1fdeef3d8bacac3cd5cfa53c9d670d1f3d",
      "tree": "632948968ea0d61bc323f419866d3d037a99f0a5",
      "parents": [
        "44700a4469b6bb89e6f1edd32b8a4a915dd967c6"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:03 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:47 2006 -0800"
      },
      "message": "[PATCH] uml: add mconsole_reply variant with length param\n\nThis is needed for the console output patch, since we have a possibly\nnon-NULL-terminated string there.  So, the new interface takes a string and a\nlength, and the old interface calls strlen on its string and calls the new\ninterface with the length.\n\nThere\u0027s also a bit of whitespace cleanup.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "44700a4469b6bb89e6f1edd32b8a4a915dd967c6",
      "tree": "e9474d4c2ebb13f94ca810aa99473d1d6bf8eba1",
      "parents": [
        "e464bf2bed027ea185992b44bf4b0326387a520d"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:02 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:47 2006 -0800"
      },
      "message": "[PATCH] uml: better diagnostics for broken configs\n\nProduce a compile-time error if both MODE_SKAS and MODE_TT are disabled.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e464bf2bed027ea185992b44bf4b0326387a520d",
      "tree": "1038935546cbf91640835d7b868067c60a95b33f",
      "parents": [
        "7eebe8a9c51686927709a57b1f2725d371014abc"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:01 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:47 2006 -0800"
      },
      "message": "[PATCH] uml: SIGWINCH handling cleanup\n\nCode cleanup - unregister_winch and winch_cleanup had some duplicate code.\nThis is now abstracted out into free_winch.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7eebe8a9c51686927709a57b1f2725d371014abc",
      "tree": "6b1543982c8656c76c25baa7e44497d5d9de307a",
      "parents": [
        "2264c475e4bf7427e59921953c89a5693ecb506f"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:19:01 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:47 2006 -0800"
      },
      "message": "[PATCH] uml: umid cleanup\n\nThis patch cleans up the umid code:\n\n- The only_if_set argument to get_umid is gone.\n\n- get_umid returns an empty string rather than NULL if there is no umid.\n\n- umid_is_random is gone since its users went away.\n\n- Some printfs were turned into printks because the code runs late enough\n  that printk is working.\n\n- Error paths were cleaned up.\n\n- Some functions now return an error and let the caller print the error\n  message rather than printing it themselves.  This eliminates the practice of\n  passing a pointer to printf or printk in, depending on where in the boot\n  process we are.\n\n- Major tidying of not_dead_yet - mostly error path cleanup, plus a comment\n  explaining why it doesn\u0027t react to errors the way you might expect.\n\n- Calls to os_* interfaces that were moved under os are changed back to\n  their native libc forms.\n\n- snprintf, strlcpy, and their bounds-checking friends are used more often,\n  replacing by-hand bounds checking in some places.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2264c475e4bf7427e59921953c89a5693ecb506f",
      "tree": "4ebf1fa766ee7487eeaf583f1ffe2b63e6e0af2c",
      "parents": [
        "e4dcee8099802c71437a15b940f66106d9f88b2f"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:59 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:47 2006 -0800"
      },
      "message": "[PATCH] uml: separate libc-dependent umid code\n\nI reworked Gennady\u0027s umid OS abstraction patch because the code shouldn\u0027t\nbe moved entirely to os.  As it turns out, I moved most of it anyway.  This\npatch is the minimal one needed to move the code and have it work.\nIt turns out that the concept of the umid is OS-independent, but\nalmost everything else about the implementation is OS-dependent.\n\nThis is code movement without cleanup - a follow-on patch tidies\neverything up without shuffling code around.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e4dcee8099802c71437a15b940f66106d9f88b2f",
      "tree": "b4831639d38369fce2e20fd40730425ca702102c",
      "parents": [
        "9159c9dfffe1746d58b015ceaa3b7b8e99ee9d5c"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:58 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:46 2006 -0800"
      },
      "message": "[PATCH] uml: Add throttling to console driver\n\nThis patch adds support for throttling and unthrottling input when the tty\ndriver can\u0027t handle it.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9159c9dfffe1746d58b015ceaa3b7b8e99ee9d5c",
      "tree": "938b1a30d0d127ed05e8145af2ddcd1c07719ac0",
      "parents": [
        "165dc5911627a9c4752e909a0da661b96b6fd269"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:58 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:46 2006 -0800"
      },
      "message": "[PATCH] uml: Fix flip_buf full handling\n\nWhen the tty flip_buf is full, it\u0027s a good idea to delay the input processing\nfor a jiffy, rather than just scheduling the tasklet immediately.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "165dc5911627a9c4752e909a0da661b96b6fd269",
      "tree": "7e8eb47b7e766a5296b9e15ef177f958dec16d93",
      "parents": [
        "1f80171e81ed0d08dcdb6efe239d7b929aef498f"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:57 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:46 2006 -0800"
      },
      "message": "[PATCH] uml: Simplify console opening/closing and irq registration\n\nThis patch simplifies the opening and closing of host console devices and the\nregistration and deregistration of IRQs.  The intent is to make it obvious\nthat an IRQ can\u0027t exist without an open file descriptor.\n\nchan_enable will now open the channel, and when both opening and IRQ\nregistration are desired, this should be used.  Opening only is done for the\ninitial console, so that interface still needs to exist.\n\nThe free_irqs_later interface is now gone.  It was intended to avoid freeing\nan IRQ while it was being processed.  It did this, but it didn\u0027t eliminate the\npossiblity of free_irq being called from an interrupt, which is bad.  In its\nplace is a list of irqs to be freed, which is processed by the signal handler\njust before exiting.  close_one_chan now disables irqs.\n\nWhen a host device disappears, it is just closed, and that disables IRQs.\n\nThe device id registered with the IRQ is now the chan structure, not the tty.\nThis is because the interrupt arrives on a descriptor associated with the\nchannel.  This caused equivalent changes in the arguments to line_timer_cb.\nline_disable is gone since it is not used any more.\n\nThe count field in the line structure is gone.  tty-\u003ecount is used instead.\n\nThe complicated logic in sigio_handler with freeing IRQs when necessary and\nmaking sure its idea of the next irq is correct is now much simpler.  The irq\nlist can\u0027t be rearranged underneath it, so it is now a simple list walk.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1f80171e81ed0d08dcdb6efe239d7b929aef498f",
      "tree": "f6f72268ddee265b46ceb698cdff6daa7cba6250",
      "parents": [
        "418e55d49b0ec7d2e7a033f2dd083f5b2ab7d119"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:46 2006 -0800"
      },
      "message": "[PATCH] uml: move console configuration\n\nThis patch changes when console devices are configured in order to prepare the\nground for the next patch.\n\nparse_chan_pair is now done earlier, when initcalls are run, rather than when\nthe device is opened.\n\nWhen a host device disappears, the channel list is closed, but not freed.\nThis is required by the previous change.  line_config now takes the options\nstructure as an argument, and line_open doesn\u0027t.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "418e55d49b0ec7d2e7a033f2dd083f5b2ab7d119",
      "tree": "d1e598b98955774b270b0f3f8f4a4e63815ff97e",
      "parents": [
        "9010772cdff36072dd509ec72c1a55fccde8e58e"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:54 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:46 2006 -0800"
      },
      "message": "[PATCH] uml: line_setup interface change\n\nline_setup is changed to return the device which it set up, rather than just\nsuccess or failure.  This will be important in the line-config patch.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9010772cdff36072dd509ec72c1a55fccde8e58e",
      "tree": "b87fbf28462462b691b6f2bca382dd6188ef3dc1",
      "parents": [
        "d571cd18f225542460b5d9b83e5e0d507be71656"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:54 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:46 2006 -0800"
      },
      "message": "[PATCH] uml: Add static initializations and declarations\n\nSome structure fields were being dynamically initialized when they could be\ninitialized at compile-time instead.  This also makes some declarations static\n(in the C sense).\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d571cd18f225542460b5d9b83e5e0d507be71656",
      "tree": "2434036d1a068afa831532f71deabcbd47527bc8",
      "parents": [
        "88890b88742debb97006df264b653d18acdc80d0"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:53 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:45 2006 -0800"
      },
      "message": "[PATCH] uml: Move mconsole support out of generic code\n\nA bit of restructuring which eliminates the all_allowed argument (which is\nmconsole-specific) to line_setup.  That logic is moved to the mconsole\ncallback.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "88890b88742debb97006df264b653d18acdc80d0",
      "tree": "f84377762bd7e69b5cdcab1ee7e4406295c898ce",
      "parents": [
        "0834cc77af6a8a650f803d4a7c3c0f134b366f87"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:52 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:45 2006 -0800"
      },
      "message": "[PATCH] uml: Remove unneeded structure field\n\nThis removes a structure field which turned out to be pointless, and\nreferences to it.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0834cc77af6a8a650f803d4a7c3c0f134b366f87",
      "tree": "a23d3746dfed759b28c250a7b5365e035a0a6542",
      "parents": [
        "d50084a2991f3d9490d5c0f3af72e6fe1515a493"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:51 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:45 2006 -0800"
      },
      "message": "[PATCH] uml: use ARRAY_SIZE\n\nThis patch replaces instances of \"sizeof(foo)/sizeof(foo[0])\" with\nARRAY_SIZE(foo), which expands to the same thing.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d50084a2991f3d9490d5c0f3af72e6fe1515a493",
      "tree": "051d6c46ddab1ee47db40252cdad4cbbe0a04f5b",
      "parents": [
        "1b57e9c27882a908f180d4daf72ee12c6f137178"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:50 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:45 2006 -0800"
      },
      "message": "[PATCH] uml: Formatting changes\n\nThis patch makes a bunch of non-functional changes -\n    return(foo); becomes return foo;\n    some statements are broken across lines for readability\n    some trailing whitespace is cleaned up\n    open_one_chan took four arguments, three of which could be\n       deduced from the first.  Accordingly, they were eliminated.\n    some examples of \"} else {\" had a newline added\n    some whitespace cleanup in the indentation\n    lines_init got some control flow cleanup\n    some long lines were broken\n    removed another emacs-specific C formatting comment\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1b57e9c27882a908f180d4daf72ee12c6f137178",
      "tree": "422930c86e877418cc96623653b750bd0d1f5a9a",
      "parents": [
        "970d6e3a3461ebc62bc3fc6d4962c936cb2ed97c"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:49 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:45 2006 -0800"
      },
      "message": "[PATCH] uml: non-void functions should return something\n\nThere are a few functions which are declared to return something, but don\u0027t.\nThese are actually infinite loops which are forced to be declared as non-void.\n This makes them all return 0.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "970d6e3a3461ebc62bc3fc6d4962c936cb2ed97c",
      "tree": "0af12c696e86ec294d966c704821f806b6e28883",
      "parents": [
        "118c1f27b838c5d1cf5338dc5abff52ceb364826"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Fri Jan 06 00:18:48 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:45 2006 -0800"
      },
      "message": "[PATCH] uml: use kstrdup\n\nThere were a bunch of calls to uml_strdup dating from before kstrdup was\nintroduced.  This changes those calls.  It doesn\u0027t eliminate the definition\nsince there is still a couple of calls in userspace code (which should\nprobably call the libc strdup).\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "63b44442416a243f05881b0dd094b621a46ab4b3",
      "tree": "81e009cce86af20a866cb0853320e99615d6fee4",
      "parents": [
        "74433c0fe105f47e78c1f2267312693870c9ebc3"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:40:02 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] uml: fix compilation with CONFIG_MODE_TT disabled\n\nFix UML compilation when SKAS mode is disabled. Indeed, we were compiling\nSKAS-only object files, which failed due to some SKAS-only headers being\nexcluded from the search path.\n\nThanks to the bug report from Pekka J Enberg.\n\nAcked-by: Pekka J Enberg \u003cpenberg (at) cs ! helsinki ! fi\u003e\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "74433c0fe105f47e78c1f2267312693870c9ebc3",
      "tree": "7b5f23e5ae0fc252feadb34f5dc7c2448261326f",
      "parents": [
        "30f04a4efa73dc80bf3f59f3f19ad5a24ac5ac0a"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:39:59 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] Hostfs: update for new glibc - add missing symbol exports\n\nToday, when compiling UML, I got warnings for two used unexported symbols:\nreaddir64 and truncate64. Indeed, my glibc headers are aliasing readdir to\nreaddir64 and truncate to truncate64 (and so on).\n\nI\u0027m then adding additional exports. Since I\u0027ve no idea if the symbols where\nalways provided in the supported glibc\u0027s, I\u0027ve added weak definitions too.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "516949480d3700cbde4272228a102c84721d6007",
      "tree": "b7fef00010e2ad97a9fdab4f683c1516948749cb",
      "parents": [
        "3603bc8dc5ab33941e6378fe52ea03b7f5561109"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:39:51 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] uml: fix random segfaults at bootup\n\nDon\u0027t use printk() where \"current_thread_info()\" is crap.\n\nUntil when we switch to running on init_stack, current_thread_info() evaluates\nto crap. Printk uses \"current\" at times (in detail, \u0026current is evaluated with\nCONFIG_DEBUG_SPINLOCK to check the spinlock owner task).\n\nAnd this leads to random segmentation faults.\n\nExactly, what happens is that \u0026current \u003d *(current_thread_info()), i.e. round\ndown $esp and dereference the value. I.e. access the stack below $esp, which\ncauses SIGSEGV on a VM_GROWSDOWN vma (see arch/i386/mm/fault.c).\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5b7b15afee89d6940482259b54d0864b7b2302b0",
      "tree": "a3294a2c1f14ff4ebc9d645189ad12070529a639",
      "parents": [
        "76c842d8f8096e2c98ff9ebe1db861363ff254e5"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Sun Dec 18 17:50:39 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 18 11:19:44 2005 -0800"
      },
      "message": "[PATCH] uml skas0: stop gcc\u0027s insanity\n\nWith Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\n\nUML skas0 stub has been miscompiling for many people (incidentally not\nthe authors), depending on the used GCC versions.\n\nI think (and testing on some GCC versions shows) this patch avoids the\nfundamental issue which is behind this, namely gcc using the stack when\nwe have just replaced it, behind gcc\u0027s back.  The remapping and storage\nof the return value is hidden in a blob of asm, hopefully giving gcc no\nroom for creativity.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "76c842d8f8096e2c98ff9ebe1db861363ff254e5",
      "tree": "d2bdfa086f10a70738a51ee81b66c6b5f17551fa",
      "parents": [
        "53c0b59dcdb7c68c3cfd4b9a0bd17373b785f2eb"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Sun Dec 18 17:50:37 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 18 11:19:44 2005 -0800"
      },
      "message": "[PATCH] uml - fix some funkiness in Kconfig\n\nSo you may have seen the miniconfig stuff wander by, which means that my\nbuild script exits if there\u0027s a .config error, and we have this:\n\n  fs/Kconfig:1749:warning: \u0027select\u0027 used by config symbol \u0027CIFS_UPCALL\u0027\n\trefer to undefined symbol \u0027CONNECTOR\u0027\n\nThis makes it shut up.\n\nSigned-off-by: Rob Landley \u003crob@landley.net\u003e\n[ Verified it makes sense. ]\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "53c0b59dcdb7c68c3cfd4b9a0bd17373b785f2eb",
      "tree": "c7f38309bbfc57353df29821b7d7bd41cc69a44d",
      "parents": [
        "9ce7677cfd7cd871adb457c80bea3b581b839641"
      ],
      "author": {
        "name": "Rob Landley",
        "email": "rob@landley.net",
        "time": "Sun Dec 18 17:50:35 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 18 11:19:44 2005 -0800"
      },
      "message": "[PATCH] uml: fix dynamic linking on some 64-bit distros\n\nWith Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\n\nThe current UML build assumes that on x86-64 systems, /lib is a symlink\nto /lib64, but in some distributions (like PLD and CentOS) they are\nseparate directories, so the 64 bit library loader isn\u0027t found.  This\npatch inserts /lib64 at the start of the rpath on x86-64 UML builds.\n\nSigned-off-by: Rob Landley \u003crob@landley.net\u003e\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9ce7677cfd7cd871adb457c80bea3b581b839641",
      "tree": "983c2c0518a7036c7fc1636054a3656529480b79",
      "parents": [
        "e5508c13ac25b07585229b144a45cf64a990171e"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Sun Dec 18 17:50:32 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 18 11:19:44 2005 -0800"
      },
      "message": "[PATCH] uml: arch/um/scripts/Makefile.rules - remove duplicated code\n\nDuplicated code - the patch adding it was probably applied twice without\nenough care.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bf001b26793bd9f8a446577c361226fbcd617182",
      "tree": "a3b4ddadeaf2c5c580569f46e3a5c56f9df2f623",
      "parents": [
        "8140a5005bc6f1c9d0fa103460d50d472e6e3426"
      ],
      "author": {
        "name": "Pekka J Enberg",
        "email": "penberg@cs.Helsinki.FI",
        "time": "Mon Dec 12 00:37:16 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:43 2005 -0800"
      },
      "message": "[PATCH] uml: fix compile error for tt\n\narch/um/kernel/tt/uaccess.c: In function `copy_from_user_tt\u0027:\narch/um/kernel/tt/uaccess.c:11: error: `FIXADDR_USER_START\u0027 undeclared (first use in this function)\narch/um/kernel/tt/uaccess.c:11: error: (Each undeclared identifier is reported only once\narch/um/kernel/tt/uaccess.c:11: error: for each function it appears in.)\n\nI get the compile error when I disable CONFIG_MODE_SKAS.\n\nSigned-off-by: Pekka Enberg \u003cpenberg@cs.helsinki.fi\u003e\nAcked-by: Paolo Giarrusso \u003cblaisorblade@yahoo.it\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "aa1a64ee12ae130706f3fc0007841ce9b0ddf9c2",
      "tree": "aa4dcbb8d1870209ae69dc85f241b8c1592ee4c1",
      "parents": [
        "17d469715c6453e4994e6617e8f644bf10f38584"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Mon Nov 21 21:32:10 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Nov 22 09:13:41 2005 -0800"
      },
      "message": "[PATCH] uml: eliminate use of libc PAGE_SIZE\n\nOn some systems, libc PAGE_SIZE calls getpagesize, which can\u0027t happen from a\nstub.  So, I use UM_KERN_PAGE_SIZE, which is less variable in its definition,\ninstead.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "17d469715c6453e4994e6617e8f644bf10f38584",
      "tree": "0bfc17100309b888315c3cae02adfd1783c04774",
      "parents": [
        "e23181deec0d2a8be576faf9d71211abb84d5ccc"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Mon Nov 21 21:32:09 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Nov 22 09:13:41 2005 -0800"
      },
      "message": "[PATCH] uml: properly invoke x86_64 system calls\n\nThis patch makes stub_segv use the stub_syscall macros.  This was needed\nanyway, but the bug that prompted this was the discovery that gcc was storing\nstuff in RCX, which is trashed across a system call.  This is exactly the sort\nof problem that the new macros fix.\n\nThere is a stub_syscall0 for getpid.  stub_segv was changed to be a libc file,\nand that caused some include changes.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e23181deec0d2a8be576faf9d71211abb84d5ccc",
      "tree": "012a6ef362ae469e632d3490bf14b2b09ad4015e",
      "parents": [
        "39d730ab87f07592e3a3794353f097d5184cae7a"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Mon Nov 21 21:32:08 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Nov 22 09:13:41 2005 -0800"
      },
      "message": "[PATCH] uml: eliminate anonymous union and clean up symlink lossage\n\nThis gives a name to the anonymous union introduced in skas-hold-own-ldt,\nallowing to build on a wider range of gccs.\n\nIt also removes ldt.h, which somehow became real, and replaces it with a\nsymlink, and creates ldt-x86_64.h as a copy of ldt-i386.h for now.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "39d730ab87f07592e3a3794353f097d5184cae7a",
      "tree": "36cb363e0815cb7508227a5063a677fe95e0fa4b",
      "parents": [
        "18317ab0ca5ac0c654be3eac31ebb781b4a5e9b2"
      ],
      "author": {
        "name": "Jeff Dike",
        "email": "jdike@addtoit.com",
        "time": "Mon Nov 21 21:32:04 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Nov 22 09:13:41 2005 -0800"
      },
      "message": "[PATCH] uml: eliminate use of local in clone stub\n\nWe have a bug in the i386 stub_syscall6 which pushes ebp before the system\ncall and pops it afterwards.  Because we use syscall6 to remap the stack, the\nold contents of the stack (and the former value of ebp) are no longer\navailable.  Some versions of gcc make from a real local, accessed through ebp,\ndespite my efforts to make it obvious that references to from are really\nconstants.  This patch attempts to make it even more obvious by eliminating\nfrom and using a macro to access the stub\u0027s data explicitly with constants.\n\nMy original thinking on this was to replace syscall6 with a remap_stack\ninterface which saved ebp someplace and restored it afterwards.  The problem\nis that there are no registers to put it in, except for esp.  That could work,\nsince we can store a constant in esp after the mmap because we just replaced\nthe stack.  However, this approach seems a tad cleaner.\n\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ba260e23efbabcff975f60401475c2bdd693f872",
      "tree": "61b78237e116abd22d15b4886c0e08f6bc63d243",
      "parents": [
        "7a590611c0f1e1302c58fdfdc958f2d6bdddd78a"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Sun Nov 13 16:07:14 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:15 2005 -0800"
      },
      "message": "[PATCH] uml: fix daemon transport exit path bug\n\nFix some exit path bugs in the daemon driver.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nAcked-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    }
  ],
  "next": "7a590611c0f1e1302c58fdfdc958f2d6bdddd78a"
}
