)]}'
{
  "log": [
    {
      "commit": "cf40bd16fdad42c053040bcd3988f5fdedbb6c57",
      "tree": "d97ab25726981712be806d77650b7f65167cfc88",
      "parents": [
        "6f2b9b9a9d750a9175dc79c74bfed5add840983c"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Jan 21 08:12:39 2009 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Sat Feb 14 23:27:49 2009 +0100"
      },
      "message": "lockdep: annotate reclaim context (__GFP_NOFS)\n\nHere is another version, with the incremental patch rolled up, and\nadded reclaim context annotation to kswapd, and allocation tracing\nto slab allocators (which may only ever reach the page allocator\nin rare cases, so it is good to put annotations here too).\n\nHaven\u0027t tested this version as such, but it should be getting closer\nto merge worthy ;)\n\n--\nAfter noticing some code in mm/filemap.c accidentally perform a __GFP_FS\nallocation when it should not have been, I thought it might be a good idea to\ntry to catch this kind of thing with lockdep.\n\nI coded up a little idea that seems to work. Unfortunately the system has to\nactually be in __GFP_FS page reclaim, then take the lock, before it will mark\nit. But at least that might still be some orders of magnitude more common\n(and more debuggable) than an actual deadlock condition, so we have some\nimprovement I hope (the concept is no less complete than discovery of a lock\u0027s\ninterrupt contexts).\n\nI guess we could even do the same thing with __GFP_IO (normal reclaim), and\neven GFP_NOIO locks too... but filesystems will have the most locks and fiddly\ncode paths, so let\u0027s start there and see how it goes.\n\nIt *seems* to work. I did a quick test.\n\n\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\n[ INFO: inconsistent lock state ]\n2.6.28-rc6-00007-ged31348-dirty #26\n---------------------------------\ninconsistent {in-reclaim-W} -\u003e {ov-reclaim-W} usage.\nmodprobe/8526 [HC0[0]:SC0[0]:HE1:SE1] takes:\n (testlock){--..}, at: [\u003cffffffffa0020055\u003e] brd_init+0x55/0x216 [brd]\n{in-reclaim-W} state was registered at:\n  [\u003cffffffff80267bdb\u003e] __lock_acquire+0x75b/0x1a60\n  [\u003cffffffff80268f71\u003e] lock_acquire+0x91/0xc0\n  [\u003cffffffff8070f0e1\u003e] mutex_lock_nested+0xb1/0x310\n  [\u003cffffffffa002002b\u003e] brd_init+0x2b/0x216 [brd]\n  [\u003cffffffff8020903b\u003e] _stext+0x3b/0x170\n  [\u003cffffffff80272ebf\u003e] sys_init_module+0xaf/0x1e0\n  [\u003cffffffff8020c3fb\u003e] system_call_fastpath+0x16/0x1b\n  [\u003cffffffffffffffff\u003e] 0xffffffffffffffff\nirq event stamp: 3929\nhardirqs last  enabled at (3929): [\u003cffffffff8070f2b5\u003e] mutex_lock_nested+0x285/0x310\nhardirqs last disabled at (3928): [\u003cffffffff8070f089\u003e] mutex_lock_nested+0x59/0x310\nsoftirqs last  enabled at (3732): [\u003cffffffff8061f623\u003e] sk_filter+0x83/0xe0\nsoftirqs last disabled at (3730): [\u003cffffffff8061f5b6\u003e] sk_filter+0x16/0xe0\n\nother info that might help us debug this:\n1 lock held by modprobe/8526:\n #0:  (testlock){--..}, at: [\u003cffffffffa0020055\u003e] brd_init+0x55/0x216 [brd]\n\nstack backtrace:\nPid: 8526, comm: modprobe Not tainted 2.6.28-rc6-00007-ged31348-dirty #26\nCall Trace:\n [\u003cffffffff80265483\u003e] print_usage_bug+0x193/0x1d0\n [\u003cffffffff80266530\u003e] mark_lock+0xaf0/0xca0\n [\u003cffffffff80266735\u003e] mark_held_locks+0x55/0xc0\n [\u003cffffffffa0020000\u003e] ? brd_init+0x0/0x216 [brd]\n [\u003cffffffff802667ca\u003e] trace_reclaim_fs+0x2a/0x60\n [\u003cffffffff80285005\u003e] __alloc_pages_internal+0x475/0x580\n [\u003cffffffff8070f29e\u003e] ? mutex_lock_nested+0x26e/0x310\n [\u003cffffffffa0020000\u003e] ? brd_init+0x0/0x216 [brd]\n [\u003cffffffffa002006a\u003e] brd_init+0x6a/0x216 [brd]\n [\u003cffffffffa0020000\u003e] ? brd_init+0x0/0x216 [brd]\n [\u003cffffffff8020903b\u003e] _stext+0x3b/0x170\n [\u003cffffffff8070f8b9\u003e] ? mutex_unlock+0x9/0x10\n [\u003cffffffff8070f83d\u003e] ? __mutex_unlock_slowpath+0x10d/0x180\n [\u003cffffffff802669ec\u003e] ? trace_hardirqs_on_caller+0x12c/0x190\n [\u003cffffffff80272ebf\u003e] sys_init_module+0xaf/0x1e0\n [\u003cffffffff8020c3fb\u003e] system_call_fastpath+0x16/0x1b\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nSigned-off-by: Peter Zijlstra \u003ca.p.zijlstra@chello.nl\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "6f2b9b9a9d750a9175dc79c74bfed5add840983c",
      "tree": "176fda4698f3ee6dfa4f35febe9fb959f584d353",
      "parents": [
        "673f8205914a12e928c65afbcd78ae748f78df53"
      ],
      "author": {
        "name": "Johannes Berg",
        "email": "johannes@sipsolutions.net",
        "time": "Thu Jan 29 16:03:20 2009 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Sat Feb 14 23:25:52 2009 +0100"
      },
      "message": "timer: implement lockdep deadlock detection\n\nThis modifies the timer code in a way to allow lockdep to detect\ndeadlocks resulting from a lock being taken in the timer function\nas well as around the del_timer_sync() call.\n\nSigned-off-by: Johannes Berg \u003cjohannes@sipsolutions.net\u003e\n"
    },
    {
      "commit": "673f8205914a12e928c65afbcd78ae748f78df53",
      "tree": "38c60215646d079fab3bff812e094e914960c7ec",
      "parents": [
        "cf47b8f3d96b0b8b10b557444a28b3ca4024ff82",
        "ae1a25da8448271a99745da03100d5299575a269"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Sat Feb 07 18:31:54 2009 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Sat Feb 07 18:31:54 2009 +0100"
      },
      "message": "Merge branch \u0027linus\u0027 into core/locking\n\nConflicts:\n\tfs/btrfs/locking.c\n"
    },
    {
      "commit": "777c6c5f1f6e757ae49ecca2ed72d6b1f523c007",
      "tree": "342b79faee43af9705b5a8ca406565fda0ad08fd",
      "parents": [
        "40b0bb1e734700b81d2ec69367c035cd1537f4fa"
      ],
      "author": {
        "name": "Johannes Weiner",
        "email": "hannes@cmpxchg.org",
        "time": "Wed Feb 04 15:12:14 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Feb 05 12:56:48 2009 -0800"
      },
      "message": "wait: prevent exclusive waiter starvation\n\nWith exclusive waiters, every process woken up through the wait queue must\nensure that the next waiter down the line is woken when it has finished.\n\nInterruptible waiters don\u0027t do that when aborting due to a signal.  And if\nan aborting waiter is concurrently woken up through the waitqueue, noone\nwill ever wake up the next waiter.\n\nThis has been observed with __wait_on_bit_lock() used by\nlock_page_killable(): the first contender on the queue was aborting when\nthe actual lock holder woke it up concurrently.  The aborted contender\ndidn\u0027t acquire the lock and therefor never did an unlock followed by\nwaking up the next waiter.\n\nAdd abort_exclusive_wait() which removes the process\u0027 wait descriptor from\nthe waitqueue, iff still queued, or wakes up the next waiter otherwise.\nIt does so under the waitqueue lock.  Racing with a wake up means the\naborting process is either already woken (removed from the queue) and will\nwake up the next waiter, or it will remove itself from the queue and the\nconcurrent wake up will apply to the next waiter after it.\n\nUse abort_exclusive_wait() in __wait_event_interruptible_exclusive() and\n__wait_on_bit_lock() when they were interrupted by other means than a wake\nup through the queue.\n\n[akpm@linux-foundation.org: coding-style fixes]\nReported-by: Chris Mason \u003cchris.mason@oracle.com\u003e\nSigned-off-by: Johannes Weiner \u003channes@cmpxchg.org\u003e\nMentored-by: Oleg Nesterov \u003coleg@redhat.com\u003e\nCc: Peter Zijlstra \u003ca.p.zijlstra@chello.nl\u003e\nCc: Matthew Wilcox \u003cmatthew@wil.cx\u003e\nCc: Chuck Lever \u003ccel@citi.umich.edu\u003e\nCc: Nick Piggin \u003cnickpiggin@yahoo.com.au\u003e\nCc: Ingo Molnar \u003cmingo@elte.hu\u003e\nCc: \u003cstable@kernel.org\u003e\t\t[\"after some testing\"]\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "1f5e31d7e55ac7fbd4ec5e5b20c8868b0e4564c9",
      "tree": "713d0ace63c95da9b989aafce8ec84ebb1d1cbc3",
      "parents": [
        "afd8d0f940ba5078f38e435440089117ac7d9eb4"
      ],
      "author": {
        "name": "Andrea Righi",
        "email": "righi.andrea@gmail.com",
        "time": "Wed Feb 04 15:12:03 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Feb 05 12:56:46 2009 -0800"
      },
      "message": "fbmem: don\u0027t call copy_from/to_user() with mutex held\n\nAvoid calling copy_from/to_user() with fb_info-\u003elock mutex held in fbmem\nioctl().\n\nfb_mmap() is called under mm-\u003emmap_sem (A) held, that also acquires\nfb_info-\u003elock (B); fb_ioctl() takes fb_info-\u003elock (B) and does\ncopy_from/to_user() that might acquire mm-\u003emmap_sem (A), causing a\ndeadlock.\n\nNOTE: it doesn\u0027t push down the fb_info-\u003elock in each own driver\u0027s\nfb_ioctl(), so there are still potential deadlocks elsewhere.\n\nSigned-off-by: Andrea Righi \u003crighi.andrea@gmail.com\u003e\nCc: Dave Jones \u003cdavej@redhat.com\u003e\nCc: \"Rafael J. Wysocki\" \u003crjw@sisk.pl\u003e\nCc: Johannes Weiner \u003channes@saeurebad.de\u003e\nCc: Krzysztof Helt \u003ckrzysztof.h1@wp.pl\u003e\nCc: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nCc: Stefan Richter \u003cstefanr@s5r6.in-berlin.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "ac7b9004909d03d67016368093e81d37cae72895",
      "tree": "089cd0432d3c93b14dbd9d0178bfe2fa19690fd1",
      "parents": [
        "c073b2db006ba9370be1eecc36a1be1d9ce31310"
      ],
      "author": {
        "name": "Peter Zijlstra",
        "email": "peterz@infradead.org",
        "time": "Wed Feb 04 15:11:59 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Feb 05 12:56:46 2009 -0800"
      },
      "message": "generic swap(): don\u0027t return a value from swap()\n\nThe swap() macro is accidentally retuning the value of its first argument.\nChange it into a doesn\u0027t-return-anything macro before someone goes and\nrelies upon this behaviour.\n\nSigned-off-by: Peter Zijlstra \u003ca.p.zijlstra@chello.nl\u003e\nCc: Wu Fengguang \u003cwfg@linux.intel.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "3e561f975cd6db846b2bbd684cd107a27f5d8aaa",
      "tree": "c7b5b2d0a744cbe096c6f2572ce7803ccd399deb",
      "parents": [
        "9f96ae6ee049b78dc334965a38fb441f7a16201f",
        "35626129abcd6a7547e84c817ef5b6eff7a8758b"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Feb 04 13:58:37 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Feb 04 13:58:37 2009 -0800"
      },
      "message": "Merge branch \u0027sched-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip\n\n* \u0027sched-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:\n  sched: add missing kernel-doc in sched.h\n"
    },
    {
      "commit": "25431e900dc47abb312c9ae8599e8c8ae038eb5a",
      "tree": "3d67ac01e65668d673bfee18cfeb0ed8bc0027fa",
      "parents": [
        "0d7a063fa7b918d2a61cdd63232286d4131774de",
        "55128bc23e9ab44e97f81f6cd349035230ee59a6"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Feb 04 07:52:21 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Feb 04 07:52:21 2009 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:\n  sunrpc: fix rdma dependencies\n  e1000: Fix PCI enable to honor the need_ioport flag\n  sgi-xp: link XPNET\u0027s net_device_ops to its net_device structure\n  pcnet_cs: Fix misuse of the equality operator.\n  hso: add new device id\u0027s\n  dca: redesign locks to fix deadlocks\n  cassini/sungem: limit reaches -1, but 0 tested\n  net: variables reach -1, but 0 tested\n  qlge: bugfix: Add missing netif_napi_del call.\n  qlge: bugfix: Add flash offset for second port.\n  qlge: bugfix: Fix endian issue when reading flash.\n  udp: increments sk_drops in __udp_queue_rcv_skb()\n  net: Fix userland breakage wrt. linux/if_tunnel.h\n  net: packet socket packet_lookup_frame fix\n"
    },
    {
      "commit": "52a84ec2f33debc86507fe7cffd8171660457bf2",
      "tree": "9b2ca62d6a567960384a188c18ec7dc64a036cfa",
      "parents": [
        "b1792e367053968f2ddb48bc911d314143ce6242",
        "9062712fa9ed13b531dfc2228086650b8bd6a255"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Feb 03 07:39:55 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Feb 03 07:39:55 2009 -0800"
      },
      "message": "Merge branch \u0027upstream-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev\n\n* \u0027upstream-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev:\n  libata: implement HORKAGE_1_5_GBPS and apply it to WD My Book\n  libata: add no penalty retry request for EH device handling routines\n  libata: improve probe failure handling\n  libata: add @spd_limit to sata_down_spd_limit()\n  libata: clear dev-\u003eering in smarter way\n  libata: check onlineness before using SPD in sata_down_spd_limit()\n  libata: move ata_dev_disable() to libata-eh.c\n  libata: fix EH device failure handling\n  sata_nv: ck804 has borked hardreset too\n  ide/libata: fix ata_id_is_cfa() (take 4)\n  libata: fix kernel-doc warnings\n  ahci: add a module parameter to ignore the SSS flags for async scanning\n  sata_mv: Fix chip type for Hightpoint RocketRaid 1740/1742\n  [libata] sata_sil: Fix compilation error with libata debugging enabled\n"
    },
    {
      "commit": "fb53fde9762432d091dac209bdf4f3f850117c55",
      "tree": "607b09022b206a539cb4a924e4ef476443798252",
      "parents": [
        "eb4400e3a040b90a3ad805b01fcbc99a5f615c8f",
        "b1792e367053968f2ddb48bc911d314143ce6242"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Feb 02 23:55:27 2009 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Feb 02 23:55:27 2009 -0800"
      },
      "message": "Merge branch \u0027master\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6\n"
    },
    {
      "commit": "35626129abcd6a7547e84c817ef5b6eff7a8758b",
      "tree": "f11a12218b023183355c1dab79bb21403bbb6713",
      "parents": [
        "b1792e367053968f2ddb48bc911d314143ce6242"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Mon Feb 02 16:00:29 2009 -0800"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Tue Feb 03 06:32:10 2009 +0100"
      },
      "message": "sched: add missing kernel-doc in sched.h\n\nAdd kernel-doc notation for @lock:\n\ninclude/linux/sched.h:457: No description found for parameter \u0027lock\u0027\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "9062712fa9ed13b531dfc2228086650b8bd6a255",
      "tree": "d1bde6caeb53936859943bb1866ac65794cae5cb",
      "parents": [
        "cf9a590a9eae3b99ca77d8db17afd2d7dbdd0986"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Thu Jan 29 20:31:36 2009 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@redhat.com",
        "time": "Mon Feb 02 23:04:31 2009 -0500"
      },
      "message": "libata: implement HORKAGE_1_5_GBPS and apply it to WD My Book\n\n3Gbps is often much more prone to transmission failures.  It\u0027s usually\nokay to let EH handle speed down after transmission failures but some\nWD My Book drives completely shutdown after certain transmission\nfailures and after it only power cycling can revive them.  Combined\nwith the fact that external drives often end up with cable assembly\nwhich is longer than usual and more likely to have intervening gender,\nthis makes these drives very likely to shutdown under certain\nconfigurations virtually rendering them unusable.\n\nThis patch implements HOARKGE_1_5_GBPS and applies it to WD My Book\nsuch that 1.5Gbps is forced once the device is identified.\n\nPlease take a look at the following bz for related reports.\n\n  http://bugzilla.kernel.org/show_bug.cgi?id\u003d9913\n\nSigned-off-by: Tejun Heo \u003ctj@kernel.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@redhat.com\u003e\n"
    },
    {
      "commit": "99cf610aa4840d822cdc67d194b23b55010ca9bd",
      "tree": "68bc3d6c1f13849731bb7b4b11414b4b0e5fbffb",
      "parents": [
        "9913ff8abf1c70a8d52560dc931e1901d025ad27"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Thu Jan 29 20:31:32 2009 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@redhat.com",
        "time": "Mon Feb 02 23:03:17 2009 -0500"
      },
      "message": "libata: clear dev-\u003eering in smarter way\n\ndev-\u003eering used to be cleared together with the rest of ata_device in\nata_dev_init() which is called whenever a probing event occurs.\ndev-\u003eering is about to be used to track probing failures so it needs\nto remain persistent over multiple porbing events.  This patch\nachieves this by doing the following.\n\n* Instead of CLEAR_OFFSET, define CLEAR_BEGIN and CLEAR_END and only\n  clear between BEGIN and END.  ering is moved after END.  The split\n  of persistent area is to allow hotter items remain at the head.\n\n* ering is explicitly cleared on ata_dev_disable() and when device\n  attach succeeds.  So, ering is persistent throug a device\u0027s life\n  time (unless explicitly cleared of course) and also through periods\n  inbetween disablement of an attached device and successful detection\n  of the next one.\n\nSigned-off-by: Tejun Heo \u003ctj@kernel.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@redhat.com\u003e\n"
    },
    {
      "commit": "2999b58b795ad81f10e34bdbbfd2742172f247e4",
      "tree": "6ff5484a5a7083d105d5824d0ada16654484e7b8",
      "parents": [
        "5eb66fe05f08d515a7377787473bc4e4b1ed5b59"
      ],
      "author": {
        "name": "Sergei Shtylyov",
        "email": "sshtylyov@ru.mvista.com",
        "time": "Sun Feb 01 20:46:39 2009 +0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@redhat.com",
        "time": "Mon Feb 02 22:45:10 2009 -0500"
      },
      "message": "ide/libata: fix ata_id_is_cfa() (take 4)\n\nWhen checking for the CFA feature set support, ata_id_is_cfa() tests bit 2 in\nword 82 of the identify data instead the word 83;  it also checks the ATA/PI\nversion support in the word 80 (which the CompactFlash specifications have as\nreserved), this having no slightest chance to work on the modern CF cards that\ndon\u0027t have 0x848A in the word 0...\n\nSigned-off-by: Sergei Shtylyov \u003csshtylyov@ru.mvista.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@redhat.com\u003e\n"
    },
    {
      "commit": "b1792e367053968f2ddb48bc911d314143ce6242",
      "tree": "31ac3fddb0b14a202e9ceaa9681c1335ba35210c",
      "parents": [
        "859281ff370977f917ec2195f86a5bfccf1fc6d6",
        "71a082efc9fdc12068a3cee6cebb1330b00ebeee"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Feb 02 19:28:58 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Feb 02 19:28:58 2009 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6:\n  PCI hotplug: Change link order of pciehp \u0026 acpiphp\n  PCI hotplug: fakephp: Allocate PCI resources before adding the device\n  PCI MSI: Fix undefined shift by 32\n  PCI PM: Do not wait for buses in B2 or B3 during resume\n  PCI PM: Power up devices before restoring their state\n  PCI PM: Fix hibernation breakage on EeePC 701\n  PCI: irq and pci_ids patch for Intel Tigerpoint DeviceIDs\n  PCI PM: Fix suspend error paths and testing facility breakage\n"
    },
    {
      "commit": "859281ff370977f917ec2195f86a5bfccf1fc6d6",
      "tree": "ea8b4d21187b5de7b61ca368701c89d3504d5f96",
      "parents": [
        "93bfbd71db4d2e01c05e219f285249a74808b1d4",
        "f58914e41473faf15e2dd66ad26be914da1bce71"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Feb 02 19:27:00 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Feb 02 19:27:00 2009 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:\n  slub: fix per cpu kmem_cache_cpu array memory leak\n  kmalloc: return NULL instead of link failure\n"
    },
    {
      "commit": "86adf8adfcb3d3f4b6c30aeb40da480da02de1d1",
      "tree": "87800568dc48006f3418689e4d23578f5c1d79b7",
      "parents": [
        "3fff0179e33cd7d0a688dab65700c46ad089e934",
        "cbb5901b904e122139e97c6f4caed9b1f13c3455"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Feb 02 19:19:50 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Feb 02 19:19:50 2009 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.dk/linux-2.6-block\n\n* \u0027for-linus\u0027 of git://git.kernel.dk/linux-2.6-block:\n  block: add text file detailing queue/ sysfs files\n  bio.h: If they MUST be inlined, then use __always_inline\n  Fix misleading comment in bio.h\n  block: fix inconsistent parenthesisation of QUEUE_FLAG_DEFAULT\n  block: fix oops in blk_queue_io_stat()\n"
    },
    {
      "commit": "720eba31f47aeade8ec130ca7f4353223c49170f",
      "tree": "4aef103b59a0fb7b9406fd3e4bb09bdf7e3ad2f7",
      "parents": [
        "27421e211a39784694b597dbf35848b88363c248"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "dada1@cosmosbay.com",
        "time": "Tue Feb 03 13:31:36 2009 +1030"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Feb 02 19:17:55 2009 -0800"
      },
      "message": "modules: Use a better scheme for refcounting\n\nCurrent refcounting for modules (done if CONFIG_MODULE_UNLOAD\u003dy) is\nusing a lot of memory.\n\nEach \u0027struct module\u0027 contains an [NR_CPUS] array of full cache lines.\n\nThis patch uses existing infrastructure (percpu_modalloc() \u0026\npercpu_modfree()) to allocate percpu space for the refcount storage.\n\nInstead of wasting NR_CPUS*128 bytes (on i386), we now use\nnr_cpu_ids*sizeof(local_t) bytes.\n\nOn a typical distro, where NR_CPUS\u003d8, shiping 2000 modules, we reduce\nsize of module files by about 2 Mbytes. (1Kb per module)\n\nInstead of having all refcounters in the same memory node - with TLB misses\nbecause of vmalloc() - this new implementation permits to have better\nNUMA properties, since each  CPU will use storage on its preferred node,\nthanks to percpu storage.\n\nSigned-off-by: Eric Dumazet \u003cdada1@cosmosbay.com\u003e\nSigned-off-by: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "0afd4a21ba7d75e93fa79cf05d7a21774e149c0f",
      "tree": "a8b724ce55da03c5c1ea1152a57d7bb6c6b22ee6",
      "parents": [
        "f9e6934502e46c363100245f137ddf0f4b1cb574"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Feb 02 13:27:44 2009 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Feb 02 13:27:44 2009 -0800"
      },
      "message": "net: Fix userland breakage wrt. linux/if_tunnel.h\n\nReported by Andrew Walrond \u003candrew@walrond.org\u003e\n\nChangeset c19e654ddbe3831252f61e76a74d661e1a755530\n(\"gre: Add netlink interface\") added an include\nof linux/ip.h to linux/if_tunnel.h\n\nWe can\u0027t really let that get exposed to userspace\nbecause this conflicts with types defined in netinet/ip.h\nwhich userland is almost certainly going to have included\neither explicitly or implicitly.\n\nSo guard this include with a __KERNEL__ ifdef.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c52440a69df22dca69794936a91e2fb529a707fb",
      "tree": "efcf06527de98e9704ca4149cfd8dcf1b592032c",
      "parents": [
        "20b636bf7c946da260391cd4570b16506f140a2c"
      ],
      "author": {
        "name": "Alberto Bertogli",
        "email": "albertito@blitiri.com.ar",
        "time": "Mon Feb 02 12:41:07 2009 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Mon Feb 02 12:41:07 2009 +0100"
      },
      "message": "bio.h: If they MUST be inlined, then use __always_inline\n\nbvec_kmap_irq() and bvec_kunmap_irq() comments say they MUST be inlined,\nso mark them as __always_inline.\n\nSigned-off-by: Alberto Bertogli \u003calbertito@blitiri.com.ar\u003e\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "20b636bf7c946da260391cd4570b16506f140a2c",
      "tree": "457d7229ff04ad7b6d60bcea4645c45f7dd38c53",
      "parents": [
        "0648e10d71c8e510d80772c4cb4220c97e9c34c7"
      ],
      "author": {
        "name": "Alberto Bertogli",
        "email": "albertito@blitiri.com.ar",
        "time": "Mon Feb 02 12:41:07 2009 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Mon Feb 02 12:41:07 2009 +0100"
      },
      "message": "Fix misleading comment in bio.h\n\nThe comment says \"remember to add offset!\", but the function already adds\nit.\n\nSigned-off-by: Alberto Bertogli \u003calbertito@blitiri.com.ar\u003e\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "0648e10d71c8e510d80772c4cb4220c97e9c34c7",
      "tree": "65cb4b2780a1c072209b79bbb1b34cb927416611",
      "parents": [
        "fb8ec18c316d869271137c97320dbfd2def56569"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Mon Feb 02 08:43:48 2009 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Mon Feb 02 08:43:48 2009 +0100"
      },
      "message": "block: fix inconsistent parenthesisation of QUEUE_FLAG_DEFAULT\n\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "45c82b5a770be66845687a7d027c8b52946d59af",
      "tree": "9385e15d13409e39d6f43805f8e7fa20430ca57e",
      "parents": [
        "1347e965f5bcfffe82e56d2903ea4f32babaff4e",
        "7cff3608d2553a045b676fa81b0cf54e4f2cc5ce"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Jan 31 15:56:23 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Jan 31 15:56:23 2009 -0800"
      },
      "message": "Merge branch \u0027header-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip\n\n* \u0027header-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: (90 commits)\n  headers_check fix: x86, swab.h\n  headers_check fix: x86, sigcontext32.h\n  headers_check fix: x86, sigcontext.h\n  headers_check fix: x86, ptrace-abi.h\n  headers_check fix: x86, mtrr.h\n  headers_check fix: x86, mce.h\n  headers_check fix: x86, kvm.h\n  headers_check fix: x86, e820.h\n  headers_check fix: linux/rtnetlink.h\n  headers_check fix: linux/nubus.h\n  headers_check fix: video/uvesafb.h\n  headers_check fix: video/sisfb.h\n  headers_check fix: sound/hdsp.h\n  headers_check fix: mtd/inftl-user.h\n  headers_check fix: linux/virtio_net.h\n  headers_check fix: linux/virtio_console.h\n  headers_check fix: linux/virtio_blk.h\n  headers_check fix: linux/videodev.h\n  headers_check fix: linux/video_encoder.h\n  headers_check fix: linux/video_decoder.h\n  ...\n"
    },
    {
      "commit": "5b2d3e6d542c4c7009ba72e047c4c0633f2b5e26",
      "tree": "6fdb2333bab91572b82af30ba7a1a9f858d320e5",
      "parents": [
        "f6490438fce5902f840d1f0f905295077c635e7a",
        "b0a9b5111abf60ef07eade834f480e89004c7920"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Jan 31 15:54:06 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Jan 31 15:54:06 2009 -0800"
      },
      "message": "Merge branch \u0027timers-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip\n\n* \u0027timers-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:\n  hrtimer: prevent negative expiry value after clock_was_set()\n  hrtimers: allow the hot-unplugging of all cpus\n  hrtimers: increase clock min delta threshold while interrupt hanging\n"
    },
    {
      "commit": "94df7de0289bc2df3d6e85cd2ece52bf42682f45",
      "tree": "b3f614b015adfb9574959687bb9b7ac4c884e23a",
      "parents": [
        "7f22391cbe82a80a9f891d8bd10fc28ff248d1e2"
      ],
      "author": {
        "name": "Sebastien Dugue",
        "email": "sebastien.dugue@bull.net",
        "time": "Mon Dec 01 14:09:07 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Fri Jan 30 22:35:29 2009 +0100"
      },
      "message": "hrtimers: allow the hot-unplugging of all cpus\n\nImpact: fix CPU hotplug hang on Power6 testbox\n\nOn architectures that support offlining all cpus (at least powerpc/pseries),\nhot-unpluging the tick_do_timer_cpu can result in a system hang.\n\nThis comes from the fact that if the cpu going down happens to be the\ncpu doing the tick, then as the tick_do_timer_cpu handover happens after the\ncpu is dead (via the CPU_DEAD notification), we\u0027re left without ticks,\njiffies are frozen and any task relying on timers (msleep, ...) is stuck.\nThat\u0027s particularly the case for the cpu looping in __cpu_die() waiting\nfor the dying cpu to be dead.\n\nThis patch addresses this by having the tick_do_timer_cpu handover happen\nearlier during the CPU_DYING notification. For this, a new clockevent\nnotification type is introduced (CLOCK_EVT_NOTIFY_CPU_DYING) which is triggered\nin hrtimer_cpu_notify().\n\nSigned-off-by: Sebastien Dugue \u003csebastien.dugue@bull.net\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "541c94f1d5ac2665fd15f1b827416f8c0b2f55cb",
      "tree": "5c786c3837edbc5bc1505a5f06ffed6ec6048ca9",
      "parents": [
        "d5c72d7842c71403bc3d57ca05a8a1f96d81e262"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:40:32 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:15:57 2009 +0530"
      },
      "message": "headers_check fix: linux/rtnetlink.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/rtnetlink.h:328: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "d5c72d7842c71403bc3d57ca05a8a1f96d81e262",
      "tree": "fea4d656ff650b7bd3a28a6d846f65279afd98a7",
      "parents": [
        "de4d3795527b06c67e1333c5662f146b59c97e21"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:39:17 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:15:24 2009 +0530"
      },
      "message": "headers_check fix: linux/nubus.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/nubus.h:232: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "9a0e0ac21ca2af4715808b97bd600f0aecd87240",
      "tree": "fd329a9ccd1392cfc273bb1337a3cb951f4d817c",
      "parents": [
        "8697325408d9be18fa24346c346b23fa56c3b190"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:31:05 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:13:08 2009 +0530"
      },
      "message": "headers_check fix: linux/virtio_net.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/virtio_net.h:28: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "8697325408d9be18fa24346c346b23fa56c3b190",
      "tree": "e16fd16e66fcc6ce700aa1965e5c8fdf8e285d48",
      "parents": [
        "982f8184f9a9251ba4e5c6d79ec32d25c0ad3cc8"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:29:33 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:12:44 2009 +0530"
      },
      "message": "headers_check fix: linux/virtio_console.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/virtio_console.h:15: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "982f8184f9a9251ba4e5c6d79ec32d25c0ad3cc8",
      "tree": "879794536102798980e8cab1c9a13b9bcdb18020",
      "parents": [
        "98be96b85398499212bc77ae3076a69e20368428"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:27:58 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:11:25 2009 +0530"
      },
      "message": "headers_check fix: linux/virtio_blk.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/virtio_blk.h:21: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "98be96b85398499212bc77ae3076a69e20368428",
      "tree": "76a831960fb62f893b2753751c39ccea5c26c413",
      "parents": [
        "a4c1d7c8c61969667a853d08b039507669463807"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:26:01 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:10:59 2009 +0530"
      },
      "message": "headers_check fix: linux/videodev.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/videodev.h:53: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "a4c1d7c8c61969667a853d08b039507669463807",
      "tree": "564da0adaf5859d4f6138b2f9da0e8a158ec0870",
      "parents": [
        "8b1e3a2f7f84484a8c208671adac39eb148c7d61"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:24:09 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:10:11 2009 +0530"
      },
      "message": "headers_check fix: linux/video_encoder.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/video_encoder.h:5: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "8b1e3a2f7f84484a8c208671adac39eb148c7d61",
      "tree": "d0afdecbd86e44e3e4775fcee270f272c113c03e",
      "parents": [
        "448314fc968252b0b95f74bbe63fdcaf41e6413d"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:22:51 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:09:13 2009 +0530"
      },
      "message": "headers_check fix: linux/video_decoder.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/video_decoder.h:7: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "448314fc968252b0b95f74bbe63fdcaf41e6413d",
      "tree": "475639e76154dec737cbbfdf159bfb8f3a2da174",
      "parents": [
        "6b6bcd0ed953ae0ed73af4759788fb8384bbaeed"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:21:19 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:08:18 2009 +0530"
      },
      "message": "headers_check fix: linux/taskstats.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/taskstats.h:44: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "6b6bcd0ed953ae0ed73af4759788fb8384bbaeed",
      "tree": "710bd2124d11894040fadde03976ac9dd273b1c6",
      "parents": [
        "e6faa002be269233bf1e8961e7e0a79ca3f2db8b"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:20:04 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:07:31 2009 +0530"
      },
      "message": "headers_check fix: linux/synclink.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/synclink.h:209: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "e6faa002be269233bf1e8961e7e0a79ca3f2db8b",
      "tree": "7627e054bb513ff49ed0b13dbee2d9a7dddfc2bf",
      "parents": [
        "a788fd53aec9a439f6b8bf57888c30aea1176e1b"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:17:53 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:07:00 2009 +0530"
      },
      "message": "headers_check fix: linux/sound.h\n\nfix the following \u0027make headers_check\u0027 warnings:\n\n  usr/include/linux/sound.h:33: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:34: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:35: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:36: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:37: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:39: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:40: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:41: extern\u0027s make no sense in userspace\n  usr/include/linux/sound.h:42: extern\u0027s make no sense in userspace\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "a788fd53aec9a439f6b8bf57888c30aea1176e1b",
      "tree": "013149157888cb1cce5f02efa2d7def1f609e1ef",
      "parents": [
        "68622c61dc7971382f5d69cd5d881e618ea30414"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:14:02 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:06:33 2009 +0530"
      },
      "message": "headers_check fix: linux/signalfd.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/signalfd.h:19: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "68622c61dc7971382f5d69cd5d881e618ea30414",
      "tree": "fa3e5f2a76fc1f6362865fdf05dccd5b7a98caa1",
      "parents": [
        "7260a91666a3149181e7b78bbf73beebbb04f8fa"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:11:32 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:05:59 2009 +0530"
      },
      "message": "headers_check fix: linux/random.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/random.h:39: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "7260a91666a3149181e7b78bbf73beebbb04f8fa",
      "tree": "e186b22fccc6b85bd8c2eaa6c5786c14820b9e87",
      "parents": [
        "b8adfd3c753b47c47f626e032da7999530c316f0"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:09:17 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:05:30 2009 +0530"
      },
      "message": "headers_check fix: linux/ppp_defs.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/ppp_defs.h:50: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "b8adfd3c753b47c47f626e032da7999530c316f0",
      "tree": "270a3730da0e33290cc844fcbfb475503a9ed0c3",
      "parents": [
        "ed307444d8f276d7052400c47d9f4c5393997c42"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:07:05 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:04:50 2009 +0530"
      },
      "message": "headers_check fix: linux/pkt_sched.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/pkt_sched.h:32: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "ed307444d8f276d7052400c47d9f4c5393997c42",
      "tree": "841292fe03ce5ae3bd8e69aa7e5f324af8fc293b",
      "parents": [
        "06f43adba62f99de101616ffc5d0564aab237111"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:05:32 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:03:40 2009 +0530"
      },
      "message": "headers_check fix: linux/pkt_cls.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  linux/pkt_cls.h:122: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "06f43adba62f99de101616ffc5d0564aab237111",
      "tree": "8d36cc64b3a297d3e17b078c426c4dd4f597c95c",
      "parents": [
        "a81184c1f8cf8589a00894c20422982defc3f056"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 22:03:25 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:02:54 2009 +0530"
      },
      "message": "headers_check fix: linux/phonet.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/phonet.h:50: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "a81184c1f8cf8589a00894c20422982defc3f056",
      "tree": "79623771af3101a5af456c05dfbf19f2466bbd42",
      "parents": [
        "ee79a6415f911801eb7804704ac130088281b2d8"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:59:48 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:02:27 2009 +0530"
      },
      "message": "headers_check fix: linux/nfs_idmap.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/nfs_idmap.h:55: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "ee79a6415f911801eb7804704ac130088281b2d8",
      "tree": "01f358bdb9f3ae79ff6056b8f67700bcc397ffcd",
      "parents": [
        "8ef342021a55e4237e593c7f6304d0caa7bf1232"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:58:19 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:01:42 2009 +0530"
      },
      "message": "headers_check fix: linux/neighbour.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/neighbour.h:8: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "8ef342021a55e4237e593c7f6304d0caa7bf1232",
      "tree": "d7e796d5683f2af1eebe8fb7675810f2a822bca8",
      "parents": [
        "4b7ae34277608a30346d076beb44cbc466aa73e5"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:56:32 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:01:11 2009 +0530"
      },
      "message": "headers_check fix: linux/msdos_fs.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/msdos_fs.h:100: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "4b7ae34277608a30346d076beb44cbc466aa73e5",
      "tree": "f2bbe93683288de577fcf7801d927a273c92f28a",
      "parents": [
        "df9c04ed3ff455aa5cb7c4bcddf4544fe54cfa33"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:54:23 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:00:35 2009 +0530"
      },
      "message": "headers_check fix: linux/minix_fs.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/minix_fs.h:34: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "df9c04ed3ff455aa5cb7c4bcddf4544fe54cfa33",
      "tree": "b94f5c3b098fc9e92b8e64cb80dcdde4f5d284d2",
      "parents": [
        "d6d20f54847e27ed886e8285c208368ef3d42abb"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:50:39 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Sat Jan 31 00:00:06 2009 +0530"
      },
      "message": "headers_check fix: linux/irda.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/irda.h:127: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "d6d20f54847e27ed886e8285c208368ef3d42abb",
      "tree": "11913a475271774211920432cb6a8645a2124daf",
      "parents": [
        "e5144de521417b0f0eea74ece89acd437ecd32c9"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:49:07 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:59:44 2009 +0530"
      },
      "message": "headers_check fix: linux/ipx.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/ipx.h:13: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "e5144de521417b0f0eea74ece89acd437ecd32c9",
      "tree": "f9c04ef33abe7714977d9b44040d7edb513ed548",
      "parents": [
        "5c6aa2badf1b97ead5ffec8094f0c6236e0c07c5"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:47:52 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:59:12 2009 +0530"
      },
      "message": "headers_check fix: linux/ipv6_route.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/ipv6_route.h:42: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "5c6aa2badf1b97ead5ffec8094f0c6236e0c07c5",
      "tree": "2d1f1f37701ae8b3f2bb5e825bd8b433a35efd72",
      "parents": [
        "217a2291570b1e4c28cb6e4cd099707e456a09b8"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:46:43 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:58:41 2009 +0530"
      },
      "message": "headers_check fix: linux/ipv6.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/ipv6.h:26: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "217a2291570b1e4c28cb6e4cd099707e456a09b8",
      "tree": "6e3a798328b7ca8bb5f137c8e1158f1b096c6eac",
      "parents": [
        "2df005b75ab910f789f099f81bb70b3aa37203a7"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:44:19 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:58:12 2009 +0530"
      },
      "message": "headers_check fix: linux/ip6_tunnel.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  include/linux/ip6_tunnel.h:21: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "2df005b75ab910f789f099f81bb70b3aa37203a7",
      "tree": "983652d62968c4cbe0c74d534e82adb33c4ea37b",
      "parents": [
        "de8b0bcafabfb4400aa028282293ce7d52307433"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:42:47 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:57:43 2009 +0530"
      },
      "message": "headers_check fix: linux/inet_diag.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/inet_diag.h:16: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "de8b0bcafabfb4400aa028282293ce7d52307433",
      "tree": "680ae7ed43f447348d8c71776fa1ad58c7603f6d",
      "parents": [
        "65863dbc0833e06b905679f61450f05a68bae4c2"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:36:04 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:57:16 2009 +0530"
      },
      "message": "headers_check fix: linux/igmp.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/igmp.h:31: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "65863dbc0833e06b905679f61450f05a68bae4c2",
      "tree": "e671522069fac95b4b5cea295227d21b793c86c4",
      "parents": [
        "84ad40ebbaeb22fc665b1f307d32128c46e8d42d"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:34:36 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:56:48 2009 +0530"
      },
      "message": "headers_check fix: linux/if_tr.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_tr.h:37: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "84ad40ebbaeb22fc665b1f307d32128c46e8d42d",
      "tree": "65ad6aa658a91bdab98e7e6787403832f585f1a9",
      "parents": [
        "0fe5a8fe0c145a6ff8f3daacd32f1824d0c021a9"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:32:52 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:56:13 2009 +0530"
      },
      "message": "headers_check fix: linux/if_strip.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_strip.h:22: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "0fe5a8fe0c145a6ff8f3daacd32f1824d0c021a9",
      "tree": "43f00b14cded75e6a7f9644713657ccf4a826d72",
      "parents": [
        "85db53102dbf0816e9c5426c9322a64759e7166b"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:31:29 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:55:45 2009 +0530"
      },
      "message": "headers_check fix: linux/if_ppp.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_ppp.h:96: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "85db53102dbf0816e9c5426c9322a64759e7166b",
      "tree": "296defca6733c46bdc98b0c62a20c2e48d57d551",
      "parents": [
        "b06e936939931c5acb1ca5dfe1d02b4d2f7cb11f"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:29:20 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:54:53 2009 +0530"
      },
      "message": "headers_check fix: linux/if_link.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_link.h:9: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "b06e936939931c5acb1ca5dfe1d02b4d2f7cb11f",
      "tree": "efbdb2568dec242893a0ea869789bdd90dc72593",
      "parents": [
        "ba7161387e82fbbdc4b49533aa1345bb7befda13"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:27:59 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:53:40 2009 +0530"
      },
      "message": "headers_check fix: linux/if_hippi.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_hippi.h:82: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "ba7161387e82fbbdc4b49533aa1345bb7befda13",
      "tree": "643cde70c18f15be79fb6d76b8c1e0a2bbe61f89",
      "parents": [
        "1759cb994c3ff51e69268379da1cdd96048a8268"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:26:35 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:53:12 2009 +0530"
      },
      "message": "headers_check fix: linux/if_fc.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_fc.h:37: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "1759cb994c3ff51e69268379da1cdd96048a8268",
      "tree": "6234cbaab02216f335ccf8faa78208b3683b888d",
      "parents": [
        "680ee0bd2a9625965812c1209476168fd0704a00"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:25:00 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:52:41 2009 +0530"
      },
      "message": "headers_check fix: linux/if_addrlabel.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_addrlabel.h:15: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "680ee0bd2a9625965812c1209476168fd0704a00",
      "tree": "a115dadbf923c6bf95148bd15d867335cdcc193c",
      "parents": [
        "1cc49ae2e6d241e5cfc2c52e3329f5ef8dd42f18"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:21:01 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:52:16 2009 +0530"
      },
      "message": "headers_check fix: linux/if_addr.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/if_addr.h:8: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "1cc49ae2e6d241e5cfc2c52e3329f5ef8dd42f18",
      "tree": "195db562eec3b336318a8b5366d3adb4a377c93e",
      "parents": [
        "c244ae5b16dc31b5bea67e6d6e9d6ff654aee781"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:18:37 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:51:41 2009 +0530"
      },
      "message": "headers_check fix: linux/icmpv6.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/icmpv6.h:8: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "c244ae5b16dc31b5bea67e6d6e9d6ff654aee781",
      "tree": "9af70c9f5177016f83acf43ebacec6850d96504d",
      "parents": [
        "b08ead0527bcfdcab39a347b531701289485b484"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:17:06 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:51:17 2009 +0530"
      },
      "message": "headers_check fix: linux/hiddev.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/hiddev.h:40: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "b08ead0527bcfdcab39a347b531701289485b484",
      "tree": "055e7e2f0de2f6e76797b39172e4761371a9672b",
      "parents": [
        "237416fe05067237f0bcc6370d84c09b52fb776a"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:15:34 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:50:37 2009 +0530"
      },
      "message": "headers_check fix: linux/hid.h\n\nfix the following \u0027make headers_check\u0027 warnings:\n\n  usr/include/linux/hid.h:69: extern\u0027s make no sense in userspace\n  usr/include/linux/hid.h:76: extern\u0027s make no sense in userspace\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "237416fe05067237f0bcc6370d84c09b52fb776a",
      "tree": "cb9826d4e90ec5df79fa8f6bf19e99d3b6f30772",
      "parents": [
        "985f302cb42e18912c88a3d2f9d9008844045ee3"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:12:38 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:50:12 2009 +0530"
      },
      "message": "headers_check fix: linux/gfs2_ondisk.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/gfs2_ondisk.h:109: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "985f302cb42e18912c88a3d2f9d9008844045ee3",
      "tree": "f0eac88e7f78d9af3455fb2c2499cbc4396ae4ea",
      "parents": [
        "93c1c0e310b56acbd366a43b15260a1775481f24"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:10:52 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:49:39 2009 +0530"
      },
      "message": "headers_check fix: linux/genetlink.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/genetlink.h:12: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "93c1c0e310b56acbd366a43b15260a1775481f24",
      "tree": "eb03ef932d9075fc4c0320a1de1f0a10cedba898",
      "parents": [
        "f4aa1c30255278b7b50a1cd273c7b4a46f099a90"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:09:18 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:49:07 2009 +0530"
      },
      "message": "headers_check fix: linux/errqueue.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/errqueue.h:6: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "f4aa1c30255278b7b50a1cd273c7b4a46f099a90",
      "tree": "449d9ea329f2b335d464ae5168c86ea40a1fd50d",
      "parents": [
        "177a858ff8d71a8e7f8b0ef53ff49441e29c8fb1"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:05:50 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:48:33 2009 +0530"
      },
      "message": "headers_check fix: linux/elf.h\n\nfix the following \u0027make headers_check\u0027 warnings:\n\n  usr/include/linux/elf.h:379: extern\u0027s make no sense in userspace\n  usr/include/linux/elf.h:387: extern\u0027s make no sense in userspace\n  usr/include/linux/elf.h:401: extern\u0027s make no sense in userspace\n  usr/include/linux/elf.h:402: extern\u0027s make no sense in userspace\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "177a858ff8d71a8e7f8b0ef53ff49441e29c8fb1",
      "tree": "badc065b980456edd47a7b4bd68d28ea578d201f",
      "parents": [
        "bd71b5f734c66ad0134e308036b13d122907b8c6"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:04:44 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:47:59 2009 +0530"
      },
      "message": "headers_check fix: linux/elf-fdpic.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/elf-fdpic.h:62: extern\u0027s make no sense in userspace\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "bd71b5f734c66ad0134e308036b13d122907b8c6",
      "tree": "e526ccf8130d5f149f91172d2795c8862e58b892",
      "parents": [
        "4144147081b9d08e69055a780888fcbb7cfcbb8e"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 21:01:11 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:47:07 2009 +0530"
      },
      "message": "headers_check fix: linux/efs_fs_sb.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/efs_fs_sb.h:49: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "4144147081b9d08e69055a780888fcbb7cfcbb8e",
      "tree": "ce25bbfc578b839559ddcfa655642429fb602fc7",
      "parents": [
        "57d1780fab89d3736de0d24189129c17178448f0"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:54:27 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:46:40 2009 +0530"
      },
      "message": "headers_check fix: linux/edd.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/edd.h:70: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "57d1780fab89d3736de0d24189129c17178448f0",
      "tree": "3c90703cb8e6044987166332acf50a6931f5ae8b",
      "parents": [
        "37eb1f4c3320ed505fbe59a916635b2342c740e4"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:52:54 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:46:03 2009 +0530"
      },
      "message": "headers_check fix: linux/dn.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/dn.h:75: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "37eb1f4c3320ed505fbe59a916635b2342c740e4",
      "tree": "8c91fcec4b0a6c83b92e2eaf39ed243b1eb7ecc5",
      "parents": [
        "59e4cf19ede2d2725c1b336707c1077afdd3cf85"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:51:30 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:45:32 2009 +0530"
      },
      "message": "headers_check fix: linux/dlm_plock.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/dlm_plock.h:25: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "59e4cf19ede2d2725c1b336707c1077afdd3cf85",
      "tree": "575f706ad4d5479756a7bbaa733a0e81cf8c0227",
      "parents": [
        "960066a919f1db57817df6d02e72b01542f1deed"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:43:31 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:44:41 2009 +0530"
      },
      "message": "headers_check fix: linux/cgroupstats.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/cgroupstats.h:31: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "960066a919f1db57817df6d02e72b01542f1deed",
      "tree": "d307f37a7f94cedbb8c931ccbfe0903ee38d0129",
      "parents": [
        "9fa91d99bfdd9582e43b6b9ab97678c51373c4ae"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:41:51 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:44:08 2009 +0530"
      },
      "message": "headers_check fix: linux/cdrom.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/cdrom.h:155: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "9fa91d99bfdd9582e43b6b9ab97678c51373c4ae",
      "tree": "53466c4815c97c745526eabc479ad463ac129ac5",
      "parents": [
        "4502b80e44f1fc9af33f66053c6c99ae9dba32a6"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:39:30 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:41:27 2009 +0530"
      },
      "message": "headers_check fix: linux/capability.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/capability.h:73: extern\u0027s make no sense in userspace\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "4502b80e44f1fc9af33f66053c6c99ae9dba32a6",
      "tree": "70f90c84f98576980a0ebf62936ad4f67ac039f4",
      "parents": [
        "1da9ebd5abb2e960c4ca4d49f7587e6c76b16ac0"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:36:52 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:40:35 2009 +0530"
      },
      "message": "headers_check fix: linux/blktrace_api.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/blktrace_api.h:96: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "1da9ebd5abb2e960c4ca4d49f7587e6c76b16ac0",
      "tree": "6e8c60f5b880627498d465044d07f779e962f28c",
      "parents": [
        "5d461bfebe4be9ae8d25d4570d4eaa415ca76f0f"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:34:15 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:40:06 2009 +0530"
      },
      "message": "headers_check fix: linux/bfs_fs.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/bfs_fs.h:24: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "5d461bfebe4be9ae8d25d4570d4eaa415ca76f0f",
      "tree": "fea1439f55e7fdd1e7ac24f57402096b93c34ad6",
      "parents": [
        "f757f603f7d52254120cbfcd967f67f663264c64"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:31:19 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:39:42 2009 +0530"
      },
      "message": "headers_check fix: linux/auto_fs4.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/auto_fs4.h:132: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "f757f603f7d52254120cbfcd967f67f663264c64",
      "tree": "cdb649a7061345eb2f90a3104e733a81b97d0a43",
      "parents": [
        "85c09569e563cbb9376f10da20ada42107dfef98"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:29:11 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:39:08 2009 +0530"
      },
      "message": "headers_check fix: linux/atmbr2684.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/atmbr2684.h:88: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "85c09569e563cbb9376f10da20ada42107dfef98",
      "tree": "2e3e98cb0de703057b18469737cd530155b6f618",
      "parents": [
        "bd247b348aaa9f28a53a64df06c69d6f40ff2280"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:26:25 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:38:37 2009 +0530"
      },
      "message": "headers_check fix: linux/atalk.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/atalk.h:15: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "bd247b348aaa9f28a53a64df06c69d6f40ff2280",
      "tree": "d5512a378b2a09ee17e3655e3c637ec02ce0b412",
      "parents": [
        "4c866d444078d931579c50c9ce3133709390287b"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:20:10 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:38:03 2009 +0530"
      },
      "message": "headers_check fix: linux/aio_abi.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/aio_abi.h:58: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "4c866d444078d931579c50c9ce3133709390287b",
      "tree": "a3c313ab0da003929c4dd023c21501dbca4b60ee",
      "parents": [
        "d8151585690d824ac5b60a94ef86f8bfd61478fa"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:16:33 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:37:37 2009 +0530"
      },
      "message": "headers_check fix: usb/gadgetfs.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/usb/gadgetfs.h:21: include of \u003clinux/types.h\u003e is preferred over \u003casm/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "d8151585690d824ac5b60a94ef86f8bfd61478fa",
      "tree": "e794679046f446a5f42de75e0b9999eb8a251b28",
      "parents": [
        "30f410a6d372f067df3d02e3db328720bf421c81"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:15:47 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:37:05 2009 +0530"
      },
      "message": "headers_check fix: usb/cdc.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/usb/cdc.h:50: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "30f410a6d372f067df3d02e3db328720bf421c81",
      "tree": "ad799a61224eaaea6301d3accd410aa3188cd28b",
      "parents": [
        "ac836c6f1b17f674e35a7e2784541bb8ab0bce38"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:14:36 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:36:36 2009 +0530"
      },
      "message": "headers_check fix: tc_ematch/tc_em_text.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/tc_ematch/tc_em_text.h:11: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "ac836c6f1b17f674e35a7e2784541bb8ab0bce38",
      "tree": "817c33c27e76d576cd8f5830794ca600758158ef",
      "parents": [
        "9976007a13e67b973f94c8d472ed615ac4cf8078"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:13:41 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:36:12 2009 +0530"
      },
      "message": "headers_check fix: tc_ematch/tc_em_nbyte.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/tc_ematch/tc_em_nbyte.h:8: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "9976007a13e67b973f94c8d472ed615ac4cf8078",
      "tree": "c86c1788da2a5f63b32c09ec1681e938c7033709",
      "parents": [
        "ba3a51e3b899c1bd34c18f84a1c6f7e5f99be850"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:12:59 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:35:46 2009 +0530"
      },
      "message": "headers_check fix: tc_ematch/tc_em_meta.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/tc_ematch/tc_em_meta.h:18: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "ba3a51e3b899c1bd34c18f84a1c6f7e5f99be850",
      "tree": "b375bdfb047b33bc4212aa6ebca8dada54be3a41",
      "parents": [
        "5dbbf3bcae2f6b5dee1c33b3eeced00bcb6c4f71"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:12:01 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:35:22 2009 +0530"
      },
      "message": "headers_check fix: tc_ematch/tc_em_cmp.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/tc_ematch/tc_em_cmp.h:8: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "5dbbf3bcae2f6b5dee1c33b3eeced00bcb6c4f71",
      "tree": "a283e3bec7aaac7c3ade00c80ff976330d5ba41e",
      "parents": [
        "9c536d275823b8a6281894f4f8c2687f60578253"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:11:22 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:34:34 2009 +0530"
      },
      "message": "headers_check fix: tc_act/tc_pedit.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/tc_act/tc_pedit.h:19: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "9c536d275823b8a6281894f4f8c2687f60578253",
      "tree": "fd3ef17cac9303d8c833a42139193bfaeddd6c61",
      "parents": [
        "2d594c0c8aa46beb21be1c5c2b7141f89d206313"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:10:44 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:34:04 2009 +0530"
      },
      "message": "headers_check fix: tc_act/tc_mirred.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/tc_act/tc_mirred.h:16: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "2d594c0c8aa46beb21be1c5c2b7141f89d206313",
      "tree": "3fea3e8011e31f4af912c1bb19262241726a2685",
      "parents": [
        "550e978aa52e2ac3c493e8a0b36b368ade6dd2b4"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:10:05 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:33:38 2009 +0530"
      },
      "message": "headers_check fix: tc_act/tc_gact.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/tc_act/tc_gact.h:19: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "550e978aa52e2ac3c493e8a0b36b368ade6dd2b4",
      "tree": "2c274b3d0f1ca2649fe5589ff340abfd37b43cdf",
      "parents": [
        "bcf74582af3feca80ec96cc21d0a26c938d1863e"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:07:35 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:33:12 2009 +0530"
      },
      "message": "headers_check fix: spi/spidev.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/spi/spidev.h:83: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "bcf74582af3feca80ec96cc21d0a26c938d1863e",
      "tree": "5649b38f3f26a3eff1ead14cf00e908aa8030306",
      "parents": [
        "03cf1e0c3b4ee4ef51dc7eb197a4d098ad4873af"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:06:44 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:32:45 2009 +0530"
      },
      "message": "headers_check fix: raid/md_p.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/raid/md_p.h:85: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "03cf1e0c3b4ee4ef51dc7eb197a4d098ad4873af",
      "tree": "9cd4dc8f105e9174e627552dfc84445d4692297a",
      "parents": [
        "9e87b1e53f3c72c1196dc22cb359b5d6188a3729"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:05:27 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 23:30:42 2009 +0530"
      },
      "message": "headers_check fix: nfsd/syscall.h\n\nfix the following \u0027make headers_check\u0027 warnings:\n\n  usr/include/linux/nfsd/syscall.h:12: include of \u003clinux/types.h\u003e is preferred over \u003casm/types.h\u003e\n  usr/include/linux/nfsd/syscall.h:104: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "c01a25e7cf6dcb0fa69c155706d5dd1e76e53796",
      "tree": "3db1252892b9ec594b813b5996b2041df8e47dd3",
      "parents": [
        "ae704e9f92f87b12c5938b07245792857c7c9c14",
        "b9ec63f78b425c0e16cc95605b5d4ff2dc228b97"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Jan 30 08:54:29 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Jan 30 08:54:29 2009 -0800"
      },
      "message": "Merge branch \u0027for_linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4\n\n* \u0027for_linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4:\n  ext4: Remove bogus BUG() check in ext4_bmap()\n  ext4: Fix building with EXT4FS_DEBUG\n  ext4: Initialize the new group descriptor when resizing the filesystem\n  ext4: Fix ext4_free_blocks() w/o a journal when files have indirect blocks\n  jbd2: On a __journal_expect() assertion failure printk \"JBD2\", not \"EXT3-fs\"\n  ext3: Add sanity check to make_indexed_dir\n  ext4: Add sanity check to make_indexed_dir\n  ext4: only use i_size_high for regular files\n  ext4: fix wrong use of do_div\n"
    },
    {
      "commit": "9e87b1e53f3c72c1196dc22cb359b5d6188a3729",
      "tree": "52379cb02346b408c49a627369b9e939f05e5249",
      "parents": [
        "3187cedf158687432cdf152eeee205f7b149f4ef"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:04:03 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:04:03 2009 +0530"
      },
      "message": "headers_check fix: nfsd/nfsfh.h\n\nfix the following \u0027make headers_check\u0027 warnings:\n\n  usr/include/linux/nfsd/nfsfh.h:17: include of \u003clinux/types.h\u003e is preferred over \u003casm/types.h\u003e\n  usr/include/linux/nfsd/nfsfh.h:28: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "3187cedf158687432cdf152eeee205f7b149f4ef",
      "tree": "d575331a8a1a73ad767ed49fcb06f2c46c0b5a8c",
      "parents": [
        "9df27bab62e60d1f786abd0599af4a5e3192a784"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:03:06 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:03:06 2009 +0530"
      },
      "message": "headers_check fix: nfsd/export.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/nfsd/export.h:13: include of \u003clinux/types.h\u003e is preferred over \u003casm/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "9df27bab62e60d1f786abd0599af4a5e3192a784",
      "tree": "7f5a1e2b5f29fceb320f2562426093a5aa4df5ac",
      "parents": [
        "b852d36b86902abb272b0f2dd7a56dd2d17ea88c"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:00:47 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 20:00:47 2009 +0530"
      },
      "message": "headers_check fix: netfilter/xt_conntrack.h\n\nfix the following \u0027make headers_check\u0027 warning:\n\n  usr/include/linux/netfilter/xt_conntrack.h:40: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "b852d36b86902abb272b0f2dd7a56dd2d17ea88c",
      "tree": "69b70bcb7870e0f47ed9ac80fd7e0f8cfc6c2795",
      "parents": [
        "8996be9de98a9362a3192b866dd8ab9930e28ad9"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 19:59:53 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 19:59:53 2009 +0530"
      },
      "message": "headers_check fix: dvb/video.h\n\nfix the following \u0027make headers_check\u0027 warnings:\n\n  usr/include/linux/dvb/video.h:29: include of \u003clinux/types.h\u003e is preferred over \u003casm/types.h\u003e\n  usr/include/linux/dvb/video.h:102: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    },
    {
      "commit": "8996be9de98a9362a3192b866dd8ab9930e28ad9",
      "tree": "df7344e07f3612c350ea1e442f6cc1a3b0b540ee",
      "parents": [
        "de189f078ee4ae74944e6827dff184a3ef1fc89b"
      ],
      "author": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 19:58:00 2009 +0530"
      },
      "committer": {
        "name": "Jaswinder Singh Rajput",
        "email": "jaswinderrajput@gmail.com",
        "time": "Fri Jan 30 19:58:00 2009 +0530"
      },
      "message": "headers_check fix: dvb/net.h\n\nfix the following \u0027make headers_check\u0027 warnings:\n\n  usr/include/linux/dvb/net.h:27: include of \u003clinux/types.h\u003e is preferred over \u003casm/types.h\u003e\n  usr/include/linux/dvb/net.h:31: found __[us]{8,16,32,64} type without #include \u003clinux/types.h\u003e\n\nSigned-off-by: Jaswinder Singh Rajput \u003cjaswinderrajput@gmail.com\u003e\n"
    }
  ],
  "next": "de189f078ee4ae74944e6827dff184a3ef1fc89b"
}
