)]}'
{
  "log": [
    {
      "commit": "5398f9854f60d670e8ef1ea08c0e0310f253eeb1",
      "tree": "2730b29a35096dcffe924b5afaac72b1df518dc6",
      "parents": [
        "d7c8f21a8cad0228c7c5ce2bb6dbd95d1ee49d13"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:34:07 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:34:07 2008 +0100"
      },
      "message": "x86: remove flush_agp_mappings()\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "d7c8f21a8cad0228c7c5ce2bb6dbd95d1ee49d13",
      "tree": "d1e305bec62022a0bec82a3499a372c2c7c40583",
      "parents": [
        "d1028a154c65d7fadd1b2d0276c077014d401ec7"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Wed Jan 30 13:34:07 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:34:07 2008 +0100"
      },
      "message": "x86: cpa: move flush to cpa\n\nThe set_memory_* and set_pages_* family of API\u0027s currently requires the\ncallers to do a global tlb flush after the function call; forgetting this is\na very nasty deathtrap. This patch moves the global tlb flush into\neach of the callers\n\nSigned-off-by: Arjan van de Ven \u003carjan@linux.intel.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "6d238cc4dc8a36a3915c26202fe49f58a0683fb9",
      "tree": "f17d1b7d27ab48ba3b5f998a8a286c198b052ce2",
      "parents": [
        "75cbade8ea3127a84e3da7c2c15808e54f0df7e8"
      ],
      "author": {
        "name": "Arjan van de Ven",
        "email": "arjan@infradead.org",
        "time": "Wed Jan 30 13:34:06 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:34:06 2008 +0100"
      },
      "message": "x86: convert CPA users to the new set_page_ API\n\nThis patch converts various users of change_page_attr() to the new,\nmore intent driven set_page_*/set_memory_* API set.\n\nSigned-off-by: Arjan van de Ven \u003carjan@linux.intel.com\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "53391fa20cab6df6b476a5a0ad6be653c9de0c46",
      "tree": "9aa7cf97cd9c8f735f7281f0fee1a9f23b053b56",
      "parents": [
        "1ce357129a55a791318e23f5d7b8a9f1352858aa"
      ],
      "author": {
        "name": "Yi Yang",
        "email": "yi.y.yang@intel.com",
        "time": "Wed Jan 30 13:33:34 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:33:34 2008 +0100"
      },
      "message": "cpufreq: fix obvious condition statement error\n\nThe function __cpufreq_set_policy in file drivers/cpufreq/cpufreq.c\nhas a very obvious error:\n\n        if (policy-\u003emin \u003e data-\u003emin \u0026\u0026 policy-\u003emin \u003e policy-\u003emax) {\n                ret \u003d -EINVAL;\n                goto error_out;\n        }\n\nThis condtion statement is wrong because it returns -EINVAL only if\npolicy-\u003emin is greater than policy-\u003emax (in this case,\n\"policy-\u003emin \u003e data-\u003emin\" is true for ever.). In fact, it should\nreturn -EINVAL as well if policy-\u003emax is less than data-\u003emin.\n\nThe correct condition should be:\n\n\tif (policy-\u003emin \u003e data-\u003emax || policy-\u003emax \u003c data-\u003emin) {\n\nThe following test result testifies the above conclusion:\n\nBefore applying this patch:\n\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies\n2394000 1596000\n[root@yangyi-dev /]# echo 1596000 \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n1596000\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq\n1596000\n[root@yangyi-dev /]# echo \"2000000\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq\n-bash: echo: write error: Invalid argument\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq\n1596000\n[root@yangyi-dev /]# echo \"0\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n1596000\n[root@yangyi-dev /]# echo \"1595000\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n1596000\n[root@yangyi-dev /]#\n\nAfter applying this patch:\n\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies\n2394000 1596000\n[root@yangyi-dev /]# echo 1596000 \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n1596000\n[root@yangyi-dev /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq\n1596000\n[root@localhost /]# echo \"2000000\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq\n-bash: echo: write error: Invalid argument\n[root@localhost /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq\n1596000\n[root@localhost /]# echo \"0\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n-bash: echo: write error: Invalid argument\n[root@localhost /]# echo \"1595000\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n-bash: echo: write error: Invalid argument\n[root@localhost /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n1596000\n[root@localhost /]# echo \"1596000\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n[root@localhost /]# echo \"2394000\" \u003e /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n[root@localhost /]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq\n2394000\n[root@localhost /]\n\nSigned-off-by: Yi Yang \u003cyi.y.yang@intel.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "3212bff370c2f22e4987c6679ba485654cefb178",
      "tree": "189f2e35a7e3b3f5911ecd32b50c8772f2eef7f4",
      "parents": [
        "093af8d7f0ba3c6be1485973508584ef081e9f93"
      ],
      "author": {
        "name": "Yinghai Lu",
        "email": "Yinghai.Lu@Sun.COM",
        "time": "Wed Jan 30 13:33:32 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:33:32 2008 +0100"
      },
      "message": "x86: left over fix for leak of early_ioremp in dmi_scan\n\nSigned-off-by: Yinghai Lu \u003cyinghai@sun.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "f8f76481bc2803aea03ff213c7e1405b53f7e488",
      "tree": "5356ad1b63ed7b2e36c57102bbac3a1ce44427b9",
      "parents": [
        "1bdbdaacf774f2979ed4cb0c4a4316c9e578c897"
      ],
      "author": {
        "name": "Bernhard Walle",
        "email": "bwalle@suse.de",
        "time": "Wed Jan 30 13:33:31 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:33:31 2008 +0100"
      },
      "message": "rtc: use the IRQ callback interface in (old) RTC driver\n\nthe previous patch in the old RTC driver.  It also removes the direct\nrtc_interrupt() call from arch/x86/kernel/hpetc.c so that there\u0027s finally no\n(code) dependency to CONFIG_RTC in arch/x86/kernel/hpet.c.\n\nBecause of this, it\u0027s possible to compile the drivers/char/rtc.ko driver as\nmodule and still use the HPET emulation functionality.  This is also expressed\nin Kconfig.\n\nSigned-off-by: Bernhard Walle \u003cbwalle@suse.de\u003e\nCc: Alessandro Zummo \u003ca.zummo@towertech.it\u003e\nCc: David Brownell \u003cdavid-b@pacbell.net\u003e\nCc: Andi Kleen \u003cak@suse.de\u003e\nCc: john stultz \u003cjohnstul@us.ibm.com\u003e\nCc: Robert Picco \u003cRobert.Picco@hp.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "0d64484f7ea12ca04211b497e94634c3d27cf3fb",
      "tree": "ed1e7c545f36a498a86390abc5ffc01f17d6317a",
      "parents": [
        "306c142f99caef5a30a0d61a39a956c069941b63"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:33:09 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:33:09 2008 +0100"
      },
      "message": "x86: fix DMI ioremap leak\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "ddb25f9ac1c4b4f9ba0bdacd7850a921a0c6886c",
      "tree": "285a144b79d8d17a35c7cd22ab1adb2ef6bdd0e8",
      "parents": [
        "32c7553f824d0d76771404f0e11d6059f82e8de7"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "ak@suse.de",
        "time": "Wed Jan 30 13:32:41 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:32:41 2008 +0100"
      },
      "message": "x86: don\u0027t disable TSC in any C states on AMD Fam10h\n\nThe ACPI code currently disables TSC use in any C2 and C3\nstates. But the AMD Fam10h BKDG documents that the TSC\nwill never stop in any C states when the CONSTANT_TSC bit is\nset. Make this disabling conditional on CONSTANT_TSC\nnot set on AMD.\n\nI actually think this is true on Intel too for C2 states\non CPUs with p-state invariant TSC, but this needs\nfurther discussions with Len to really confirm :-)\n\nSo far it is only enabled on AMD.\n\nCc: lenb@kernel.org\n\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "39657b6546558469734eb960f7c0c9492111096f",
      "tree": "78bfe8fcd1323084d4a4000ae5121654e5749e0b",
      "parents": [
        "fb0328e2e6407d6f48a608aefa62b2be91989e7e"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@linux-foundation.org",
        "time": "Wed Jan 30 13:32:31 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:32:31 2008 +0100"
      },
      "message": "git-x86: drivers/pnp/pnpbios/bioscalls.c build fix\n\ndrivers/pnp/pnpbios/bioscalls.c:64: warning: (near initialization for \u0027bad_bios_desc.\u003canonymous\u003e\u0027)\n\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "bde6f5f59c2b2b48a7a849c129d5b48838fe77ee",
      "tree": "4fa3befdfa227db56770a0dc85b8fc18be232f70",
      "parents": [
        "7d409d6057c7244f8757ce15245f6df27271be0c"
      ],
      "author": {
        "name": "Venki Pallipadi",
        "email": "venkatesh.pallipadi@intel.com",
        "time": "Wed Jan 30 13:32:01 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:32:01 2008 +0100"
      },
      "message": "x86: voluntary leave_mm before entering ACPI C3\n\nAviod TLB flush IPIs during C3 states by voluntary leave_mm()\nbefore entering C3.\n\nThe performance impact of TLB flush on C3 should not be significant with\nrespect to C3 wakeup latency. Also, CPUs tend to flush TLB in hardware while in\nC3 anyways.\n\nOn a 8 logical CPU system, running make -j2, the number of tlbflush IPIs goes\ndown from 40 per second to ~ 0. Total number of interrupts during the run\nof this workload was ~1200 per second, which makes it ~3% savings in wakeups.\n\nThere was no measurable performance or power impact however.\n\n[ akpm@linux-foundation.org: symbol export fixes. ]\n\nSigned-off-by: Venkatesh Pallipadi \u003cvenkatesh.pallipadi@intel.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "79da4721117fcf188b4b007b775738a530f574da",
      "tree": "114fcff65bbed673c6ec809c71892829116eaa8f",
      "parents": [
        "aca46ba29298810b329518b96f97ace985027b59"
      ],
      "author": {
        "name": "Parag Warudkar",
        "email": "parag.warudkar@gmail.com",
        "time": "Wed Jan 30 13:31:59 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:59 2008 +0100"
      },
      "message": "x86: fix DMI out of memory problems\n\nPeople with HP Desktops (including me) encounter couple of DMI errors\nduring boot - dmi_save_oem_strings_devices: out of memory and\ndmi_string: out of memory.\n\nOn some HP desktops the DMI data include OEM strings (type 11) out of\nwhich only few are meaningful and most other are empty. DMI code\nreligiously creates copies of these 27 strings (65 bytes each in my\ncase) and goes OOM in dmi_string().\n\nIf DMI_MAX_DATA is bumped up a little then it goes and fails in\ndmi_save_oem_strings while allocating dmi_devices of sizeof(struct\ndmi_device) corresponding to these strings.\n\nOn x86_64 since we cannot use alloc_bootmem this early, the code uses a\nstatic array of 2048 bytes (DMI_MAX_DATA) for allocating the memory DMI\nneeds. It does not survive the creation of empty strings and devices.\n\nFix this by detecting and not newly allocating empty strings and instead\nusing a one statically defined dmi_empty_string.\n\nAlso do not create a new struct dmi_device for each empty string - use\none statically define dmi_device with .name\u003ddmi_empty_string and add\nthat to the dmi_devices list.\n\nOn x64 this should stop the OOM with same current size of DMI_MAX_DATA\nand on x86 this should save a good amount of (27*65 bytes +\n27*sizeof(struct dmi_device) bootmem.\n\nCompile and boot tested on both 32-bit and 64-bit x86.\n\nSigned-off-by: Parag Warudkar \u003cparag.warudkar@gmail.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "053de044411111da00272d1b4e174e7dd743f499",
      "tree": "be44ae9b0ed878df7b83daa39bb89e01f3fdbe73",
      "parents": [
        "73018a66e70fa631935192e5ed6ef8fa2d20b22d"
      ],
      "author": {
        "name": "Glauber de Oliveira Costa",
        "email": "gcosta@redhat.com",
        "time": "Wed Jan 30 13:31:27 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:27 2008 +0100"
      },
      "message": "x86: get rid of _MASK flags\n\nThere\u0027s no need for the *_MASK flags (TF_MASK, IF_MASK, etc), found in\nprocessor.h (both _32 and _64). They have a one-to-one mapping with the\nEFLAGS value. This patch removes the definitions, and use the already\nexistent X86_EFLAGS_ version when applicable.\n\n[ roland@redhat.com: KVM build fixes. ]\n\nSigned-off-by: Glauber de Oliveira Costa \u003cgcosta@redhat.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "41e191e85a122ad822deb7525a015410012e6c70",
      "tree": "242e5b4a24ffcc7f6b3cb63b96c2a397113af1dd",
      "parents": [
        "ded9aa0db815b4e1271001561e177755cb8b9468"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:24 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:24 2008 +0100"
      },
      "message": "x86: replace outb_p() with udelay(2) in drivers/input/mouse/pc110pad.c\n\nreplace outb_p() with udelay(2). This is a real ISA device so it likely\nneeds this particular delay.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "6b68f01baa810e9f63fbf39e9d5c3ef1d94a966f",
      "tree": "dc7f50673d72677d24dbe9ac8217b832f8d5cb02",
      "parents": [
        "6842ef0e85a9cc1295f3ef933a230f863b01eb0f"
      ],
      "author": {
        "name": "Glauber de Oliveira Costa",
        "email": "gcosta@redhat.com",
        "time": "Wed Jan 30 13:31:12 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:12 2008 +0100"
      },
      "message": "x86: unify struct desc_ptr\n\nThis patch unifies struct desc_ptr between i386 and x86_64.\nThey can be expressed in the exact same way in C code, only\nhaving to change the name of one of them. As Xgt_desc_struct\nis ugly and big, this is the one that goes away.\n\nThere\u0027s also a padding field in i386, but it is not really\nneeded in the C structure definition.\n\nSigned-off-by: Glauber de Oliveira Costa \u003cgcosta@redhat.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "5fd1fe9c582e00ca0a98f852cd693dc3caf607a0",
      "tree": "f7965a80e784b659568dbd41e9773e812e550880",
      "parents": [
        "6b4b05bd790389962e6fcfc862562e7fa239c9d2"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:09 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:09 2008 +0100"
      },
      "message": "x86: clean up drivers/char/rtc.c\n\ntons of style cleanup in drivers/char/rtc.c - no code changed:\n\n   text    data     bss     dec     hex filename\n   6400     384      32    6816    1aa0 rtc.o.before\n   6400     384      32    6816    1aa0 rtc.o.after\n\nsince we seem to have a number of open breakages in this code we might\nas well start with making the code more readable and maintainable.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "faca62273b602ab482fb7d3d940dbf41ef08b00e",
      "tree": "913fb1c565a2b719b00ae4b745c38cc9b0ebf279",
      "parents": [
        "25149b62d3e6a3e737af39bd4a0b4e97de0811b7"
      ],
      "author": {
        "name": "H. Peter Anvin",
        "email": "hpa@zytor.com",
        "time": "Wed Jan 30 13:31:02 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:31:02 2008 +0100"
      },
      "message": "x86: use generic register name in the thread and tss structures\n\nThis changes size-specific register names (eip/rip, esp/rsp, etc.) to\ngeneric names in the thread and tss structures.\n\nSigned-off-by: H. Peter Anvin \u003chpa@zytor.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "02456c708eab4515121e5e581422fa3be14368d1",
      "tree": "d10c48de08d0ab23f6876c76e98b70f134ac1b44",
      "parents": [
        "16da2f93054fc379522b93afc71d49751bd8be2b"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Wed Jan 30 13:30:27 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:30:27 2008 +0100"
      },
      "message": "x86: nuke a ton of dead hpet code\n\nNo users, just ballast\n\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "37a47db8d7f0f38dac5acf5a13abbc8f401707fa",
      "tree": "f3827e6b77a81680b2870f82a22bb86c4fefefee",
      "parents": [
        "e3f37a54f690d3e64995ea7ecea08c5ab3070faf"
      ],
      "author": {
        "name": "Balaji Rao",
        "email": "balajirrao@gmail.com",
        "time": "Wed Jan 30 13:30:03 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:30:03 2008 +0100"
      },
      "message": "x86: assign IRQs to HPET timers, fix\n\nLooks like IRQ 31 is assigned to timer 3, even without the patch!\nI wonder who wrote the number 31. But the manual says that it is\nzero by default.\n\nI think we should check whether the timer has been allocated an IRQ before\nproceeding to assign one to it.  Here is a patch that does this.\n\nSigned-off-by: Balaji Rao \u003cbalajirrao@gmail.com\u003e\nTested-by: Yinghai Lu \u003cyhlu.kernel@gmail.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "e3f37a54f690d3e64995ea7ecea08c5ab3070faf",
      "tree": "1d9d62d95b747ef47cdf994357bd9a41d02889a3",
      "parents": [
        "45fe4fe19120a22f7339f5bb110447170c25fca9"
      ],
      "author": {
        "name": "Balaji Rao",
        "email": "balajirrao@gmail.com",
        "time": "Wed Jan 30 13:30:03 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 30 13:30:03 2008 +0100"
      },
      "message": "x86: assign IRQs to HPET timers\n\nThe userspace API for the HPET (see Documentation/hpet.txt) did not work. The\nHPET_IE_ON ioctl was failing as there was no IRQ assigned to the timer\ndevice. This patch fixes it by allocating IRQs to timer blocks in the HPET.\n\narch/x86/kernel/hpet.c |   13 +++++--------\ndrivers/char/hpet.c    |   45 ++++++++++++++++++++++++++++++++++++++-------\ninclude/linux/hpet.h   |    2 +-\n3 files changed, 44 insertions(+), 16 deletions(-)\n\nSigned-off-by: Balaji Rao \u003cbalajirrao@gmail.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "5b10ca19ea4859d3884d10a3eb8495de92089792",
      "tree": "3b3ed5d5f28bbecef15266d0e0854e0b9b351a33",
      "parents": [
        "9e97198dbf318be7958b57900d05b37c7e09ad7c"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Jan 30 09:54:54 2008 +1100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Jan 30 09:54:54 2008 +1100"
      },
      "message": "Mostly revert \"e1000/e1000e: Move PCI-Express device IDs over to e1000e\"\n\nThe new e1000e driver is apparently not yet suitable for general use, so\nmark it experimental, and re-instate all the PCI-Express device IDs in\nthe old and stable e1000 driver so that people (namely me) can continue\nto use a driver that actually works.\n\nAuke \u0026 co have been appraised of the situation.\n\nCc: Auke Kok \u003cauke-jan.h.kok@intel.com\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: David Miller \u003cdavem@davemloft.net\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "e7d9dc9cfd9bcc9ca688fe7f94c0da7d0700bfe6",
      "tree": "04e1603796da2ba16f7b882562454ead33d3ad39",
      "parents": [
        "e68b903c6b2b88c60050675b056648468f33ab54"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Tue Jan 29 19:46:02 2008 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Tue Jan 29 21:55:18 2008 +0100"
      },
      "message": "cciss: fix bug in overriding -\u003edata_len before completion\n\nFor BLOCK_PC requests, we need that length for completing the request.\nAndrew Vasquez \u003candrew.vasquez@qlogic.com\u003e reported the following\noops\n\nHitting a consistent BUG() with recent Linus\u0027 linux-2.6.git:\n\n\t[   12.941428] ------------[ cut here ]------------\n\t[   12.944874] kernel BUG at drivers/block/cciss.c:1260!\n\t[   12.944874] invalid opcode: 0000 [1] SMP\n\t[   12.944874] CPU 0\n\t[   12.944874] Modules linked in:\n\t[   12.944874] Pid: 0, comm: swapper Not tainted 2.6.24 #43\n\t[   12.944874] RIP: 0010:[\u003cffffffff8039e43d\u003e]  [\u003cffffffff8039e43d\u003e] cciss_softirq_done+0xbc/0x1bf\n\t[   12.944874] RSP: 0018:ffffffff8063aed0  EFLAGS: 00010202\n\t[   12.944874] RAX: 0000000000000001 RBX: ffff8100cf800010 RCX: ffff81042f1253b0\n\t[   12.944874] RDX: ffff81042de398f0 RSI: ffff81042de398f0 RDI: 0000000000000001\n\t[   12.944874] RBP: ffff81042daa0000 R08: ffff81042f1253b0 R09: 0000000000000001\n\t[   12.944874] R10: 00000000000000fe R11: 0000000000000000 R12: 0000000000000002\n\t[   12.944874] R13: 0000000000000001 R14: ffff8100cf800000 R15: ffff81042de398f0\n\t[   12.944874] FS:  0000000000000000(0000) GS:ffffffff805bb000(0000) knlGS:0000000000000000\n\t[   12.944874] CS:  0010 DS: 0018 ES: 0018 CR0: 000000008005003b\n\t[   12.944874] CR2: 00002afed7eea340 CR3: 000000042dbba000 CR4: 00000000000006e0\n\t[   12.944874] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000\n\t[   12.944874] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400\n\t[   12.944874] Process swapper (pid: 0, threadinfo ffffffff805f4000, task ffffffff805624a0)\n\t[   12.944874] Stack:  0000000000000000 ffffffff8063af10 0000000000000001 ffffffff80632d60\n\t[   12.944874]  0000000000000000 000000000000000a ffffffff805bb900 ffffffff8032038f\n\t[   12.944874]  ffffffff8063af10 ffffffff8063af10 ffffffff805bb940 ffffffff802346b4\n\t[   12.944874] Call Trace:\n\t[   12.944874]  \u003cIRQ\u003e  [\u003cffffffff8032038f\u003e] blk_done_softirq+0x69/0x78\n\t[   12.944874]  [\u003cffffffff802346b4\u003e] __do_softirq+0x6f/0xd8\n\t[   12.944874]  [\u003cffffffff8020c45c\u003e] call_softirq+0x1c/0x30\n\t[   12.944874]  [\u003cffffffff8020e347\u003e] do_softirq+0x30/0x80\n\t[   12.944874]  [\u003cffffffff8020e409\u003e] do_IRQ+0x72/0xd9\n\t[   12.944874]  [\u003cffffffff8020a50a\u003e] mwait_idle+0x0/0x46\n\t[   12.944874]  [\u003cffffffff8020a3da\u003e] default_idle+0x0/0x3d\n\t[   12.944874]  [\u003cffffffff8020b7e1\u003e] ret_from_intr+0x0/0xa\n\t[   12.944874]  \u003cEOI\u003e  [\u003cffffffff8020a54c\u003e] mwait_idle+0x42/0x46\n\t[   12.944874]  [\u003cffffffff8020a481\u003e] cpu_idle+0x6a/0xae\n\t[   12.944874]\n\t[   12.944874]\n\t[   12.944874] Code: 0f 0b eb fe 48 8d 85 d8 c0 00 00 48 89 04 24 48 89 c7 e8 e5\n\t[   12.944874] RIP  [\u003cffffffff8039e43d\u003e] cciss_softirq_done+0xbc/0x1bf\n\t[   12.944874]  RSP \u003cffffffff8063aed0\u003e\n\t[   12.944903] ---[ end trace e9c631603f90d22f ]---\n\nwhich is caused by blk_end_request() returning \u0027not done\u0027 for a request,\nsince it gets asked to complete zero bytes.\n\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "9bf722598fcd51073974850ae026b44389430ecc",
      "tree": "c1fcb8ac5b1d75ce5c6b6530f874d9a796859cb7",
      "parents": [
        "0ba6c33bcddc64a54b5f1c25a696c4767dc76292"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Tue Jan 29 21:54:53 2008 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Tue Jan 29 21:54:53 2008 +0100"
      },
      "message": "xsysace: end request handling fix\n\nIn ace_fsm_dostate(), the variable \u0027i\u0027 was used only for passing\nsector size of the request to end_that_request_first().\nSo I removed it and changed the code to pass the size in bytes\ndirectly to __blk_end_request()\n\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "0ba6c33bcddc64a54b5f1c25a696c4767dc76292",
      "tree": "62e616f97a4762d8e75bf732e4827af2d15d52c5",
      "parents": [
        "21af0297c7e56024a5ccc4d8ad2a590f9ec371ba",
        "85040bcb4643cba578839e953f25e2d1965d83d0"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Jan 29 22:54:01 2008 +1100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Jan 29 22:54:01 2008 +1100"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.25\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.25: (1470 commits)\n  [IPV6] ADDRLABEL: Fix double free on label deletion.\n  [PPP]: Sparse warning fixes.\n  [IPV4] fib_trie: remove unneeded NULL check\n  [IPV4] fib_trie: More whitespace cleanup.\n  [NET_SCHED]: Use nla_policy for attribute validation in ematches\n  [NET_SCHED]: Use nla_policy for attribute validation in actions\n  [NET_SCHED]: Use nla_policy for attribute validation in classifiers\n  [NET_SCHED]: Use nla_policy for attribute validation in packet schedulers\n  [NET_SCHED]: sch_api: introduce constant for rate table size\n  [NET_SCHED]: Use typeful attribute parsing helpers\n  [NET_SCHED]: Use typeful attribute construction helpers\n  [NET_SCHED]: Use NLA_PUT_STRING for string dumping\n  [NET_SCHED]: Use nla_nest_start/nla_nest_end\n  [NET_SCHED]: Propagate nla_parse return value\n  [NET_SCHED]: act_api: use PTR_ERR in tcf_action_init/tcf_action_get\n  [NET_SCHED]: act_api: use nlmsg_parse\n  [NET_SCHED]: act_api: fix netlink API conversion bug\n  [NET_SCHED]: sch_netem: use nla_parse_nested_compat\n  [NET_SCHED]: sch_atm: fix format string warning\n  [NETNS]: Add namespace for ICMP replying code.\n  ...\n"
    },
    {
      "commit": "3c582b30bc2592081e9b23e253ca098fa7d57dc2",
      "tree": "258f0191bb66aee5de4fb2d19bf71d7c716bee87",
      "parents": [
        "ac97f75faae2a18648145bc6bbcdd326bac6a1c2"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@vyatta.com",
        "time": "Wed Jan 23 20:54:07 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:11:27 2008 -0800"
      },
      "message": "[PPP]: Sparse warning fixes.\n\nFix a bunch of warnings in PPP and related drivers. Mostly because\nsparse doesn\u0027t like it when the the function is only marked private in\nthe forward declaration.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@vyatta.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f206351a50ea86250fabea96b9af8d8f8fc02603",
      "tree": "014148d8b45db1995d98374ec3b30e635f243197",
      "parents": [
        "f1b050bf7a88910f9f00c9c8989c1bf5a67dd140"
      ],
      "author": {
        "name": "Denis V. Lunev",
        "email": "den@openvz.org",
        "time": "Tue Jan 22 22:07:34 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:11:07 2008 -0800"
      },
      "message": "[NETNS]: Add namespace parameter to ip_route_output_key.\n\nNeeded to propagate it down to the ip_route_output_flow.\n\nSigned-off-by: Denis V. Lunev \u003cden@openvz.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f1b050bf7a88910f9f00c9c8989c1bf5a67dd140",
      "tree": "37e8dce4268cb657a75e5074a38db48264f1e42f",
      "parents": [
        "611c183ebcb5af384df3a4ddb391034a1b6ac255"
      ],
      "author": {
        "name": "Denis V. Lunev",
        "email": "den@openvz.org",
        "time": "Tue Jan 22 22:07:10 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:11:06 2008 -0800"
      },
      "message": "[NETNS]: Add namespace parameter to ip_route_output_flow.\n\nNeeded to propagate it down to the __ip_route_output_key.\n\nSigned_off_by: Denis V. Lunev \u003cden@openvz.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1ab352768fc73838b062776ca5d1add3876a019f",
      "tree": "b30bd7744e30e90b6db01b71a5c8b86140538255",
      "parents": [
        "010278ec4cdf404aefc0bbd5e7406674fec95286"
      ],
      "author": {
        "name": "Denis V. Lunev",
        "email": "den@openvz.org",
        "time": "Tue Jan 22 22:04:30 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:11:04 2008 -0800"
      },
      "message": "[NETNS]: Add namespace parameter to ip_dev_find.\n\nin_dev_find() need a namespace to pass it to fib_get_table(), so add\nan argument.\n\nSigned-off-by: Denis V. Lunev \u003cden@openvz.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c0e1899bdbd5e997d2256fcc23fc4e3d2bc5f811",
      "tree": "2af37199a685e69095fae80c8628eff5891c4ff9",
      "parents": [
        "6d91e1d80822da1c3e790bfbe8df432360fd7f68"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "bruno@thinktube.com",
        "time": "Mon Jan 21 11:09:46 2008 +0900"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:54 2008 -0800"
      },
      "message": "ath5k: always extend rx timestamp with tsf\n\nalways extend the rx timestamp with the local TSF, since this information is\nalso needed for proper IBSS merging. this is done in the tasklet for now, maybe\nhas to be moved to the interrupt handler like in madwifi.\n\ndrivers/net/wireless/ath5k/base.c:      Changes-licensed-under: 3-Clause-BSD\n\nSigned-off-by: Bruno Randolf \u003cbruno@thinktube.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "6d91e1d80822da1c3e790bfbe8df432360fd7f68",
      "tree": "cabcf6c28d7e25a45d68419d65a2e748973a62f7",
      "parents": [
        "036cd1ec038f7e3a36740beaf2aa4a0d2e8ed2c1"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "bruno@thinktube.com",
        "time": "Sat Jan 19 18:18:41 2008 +0900"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:53 2008 -0800"
      },
      "message": "ath5k: configure backoff for IBSS beacon queue\n\nin \"11.1.2.2 Beacon generation in an IBSS\" the IEEE802.11 standard says, each\nSTA should... \"b) Calculate a random delay uniformly distributed in the range\nbetween zero and twice aCWmin × aSlotTime,\".\n\nconfigure cwmin and cwmax of the beacon queue in IBSS mode according to this.\nunfortunately beacon backoff does not work reliably yet, so i suspect we have a\nproblem somewhere else, since the same settings (and similar beacon timer\nconfiguration) work for madwifi.\n\ndrivers/net/wireless/ath5k/base.c:      Changes-licensed-under: 3-Clause-BSD\n\nSigned-off-by: Bruno Randolf \u003cbruno@thinktube.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "036cd1ec038f7e3a36740beaf2aa4a0d2e8ed2c1",
      "tree": "9a39d8523018a07d25ed672390d068402f52c65c",
      "parents": [
        "9804b98d57f9b3b02a8906b0b45f461ce0c08428"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "bruno@thinktube.com",
        "time": "Sat Jan 19 18:18:21 2008 +0900"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:52 2008 -0800"
      },
      "message": "ath5k: use SWBA to detect IBSS HW merges\n\nuse SWBA (software beacon alert) interrupts to keep track of the next beacon\ntime und check if a HW merge (automatic TSF update) has happened on every\nreceived beacon with the same BSSID.\n\nthis is necessary because the atheros hardware will silently update the local\nTSF in IBSS mode, but not its beacon timers. if the TSF is ahead of the beacon\ntimers no beacons are sent until the timers wrap around (typically after about\n1 minute).\n\nthis solution is not very nice, since we have to look into every beacon, but\nthere is apparently no other way to detect HW merges.\n\ndrivers/net/wireless/ath5k/base.c:      Changes-licensed-under: 3-Clause-BSD\ndrivers/net/wireless/ath5k/base.h:      Changes-licensed-under: 3-Clause-BSD\n\nSigned-off-by: Bruno Randolf \u003cbruno@thinktube.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9804b98d57f9b3b02a8906b0b45f461ce0c08428",
      "tree": "6221cc08c4e9a71f45296fc9862f6e137d0712be",
      "parents": [
        "e535c1ac7e431f85e9c8ead6dbc977a1e1906736"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "bruno@thinktube.com",
        "time": "Sat Jan 19 18:17:59 2008 +0900"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:51 2008 -0800"
      },
      "message": "ath5k: better beacon timer calculation\n\nupdate ath5k_beacon_update_timers() for better beacon timer calculation in a\nvariety of situations. most important is the possibility to call it with the\ntimestamp of a received beacon, when we detected that a HW merge has happened\nand we need to reconfigure the beacon timers based on that.\n\nwe call this from the mac80211 callback reset_tsf now instead of beacon_update,\nand there will be more use of it in the next patch.\n\ndrivers/net/wireless/ath5k/base.c:      Changes-licensed-under: 3-Clause-BSD\n\nSigned-off-by: Bruno Randolf \u003cbruno@thinktube.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e535c1ac7e431f85e9c8ead6dbc977a1e1906736",
      "tree": "04eb2e73445240cb7d3745c219255269f1ea0da4",
      "parents": [
        "1008e0f7b9dd211f918e93090f615e8064aca900"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "bruno@thinktube.com",
        "time": "Fri Jan 18 21:51:40 2008 +0900"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:50 2008 -0800"
      },
      "message": "ath5k: beacon interval is in TU\n\nthe beacon interval is passed by mac80211 in TU already, so we can directly use\nit without conversion. also update the comments about TU (1 TU is defined by\n802.11 as 1024usec).\n\ndrivers/net/wireless/ath5k/ath5k.h:     Changes-licensed-under: ISC\ndrivers/net/wireless/ath5k/base.c:      Changes-licensed-under: 3-Clause-BSD\ndrivers/net/wireless/ath5k/base.h:      Changes-licensed-under: 3-Clause-BSD\n\nSigned-off-by: Bruno Randolf \u003cbruno@thinktube.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "1008e0f7b9dd211f918e93090f615e8064aca900",
      "tree": "cc60fbfe5c27ec509acc84fd1999a63a32190574",
      "parents": [
        "1f7d87b0ecacefe4541c75901cbcf29efba42ca6"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "bruno@thinktube.com",
        "time": "Fri Jan 18 21:51:19 2008 +0900"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:50 2008 -0800"
      },
      "message": "ath5k: use 3 instead of 0x00000003\n\nreviewed beacon timer initialization with register traces from madwifi: what we\nare doing is correct :). one minor fix: use 3 instead of 0x00000003 - it\u0027s more\nreadable.\n\ndrivers/net/wireless/ath5k/hw.c:        Changes-licensed-under: ISC\n\nSigned-off-by: Bruno Randolf \u003cbruno@thinktube.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "1f7d87b0ecacefe4541c75901cbcf29efba42ca6",
      "tree": "74fc6e174a171b10b564161dd4eab3261ace4dee",
      "parents": [
        "4248d2f81159f62b7c7b83398fede653d449fd56"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Tue Jan 22 20:23:34 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:49 2008 -0800"
      },
      "message": "b43: Fix MAC control and microcode init\n\nThis zeros out all microcode related memory before loading\nthe microcode.\n\nThis also fixes initialization of the MAC control register.\nThe _only_ place where we overwrite the contents of the MAC control\nregister is at the beginning of b43_chip_init().\nAll other places must do read() -\u003e mask/set -\u003e write() to not\noverwrite existing bits.\n\nThis also adds a longer delay for waiting for the microcode\nto initialize itself. It seems that the current timeout is sufficient\non all available devices, but there\u0027s no real reason why we shouldn\u0027t\nwait for up to one second. Slow embedded devices might exist.\nBetter safe than sorry.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "247ae4492065ed73bf5f287e38cd4c54ce192b27",
      "tree": "0e5ecf0b032a40bb29fe1301c2b28be87d92701b",
      "parents": [
        "c65638a72c619e941bcb4006feded09fd358ad5f"
      ],
      "author": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 21 15:36:05 2008 -0500"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:48 2008 -0800"
      },
      "message": "ath5k: reset key cache after resume\n\nOtherwise it may be impossible to connected to an open network after a\nresume.\n\nThis is a modified version of an original patch by\nAlex Eskin \u003calexeskin@yahoo.com\u003e:\n\n\thttps://bugzilla.redhat.com/show_bug.cgi?id\u003d425950#c8\n\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "c65638a72c619e941bcb4006feded09fd358ad5f",
      "tree": "d6b25fa952fa55620986db083e4740d84f4ad5d3",
      "parents": [
        "61cb5dd6d1c81fbb5629f60db4e2a7faa7124b7a"
      ],
      "author": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 21 15:36:04 2008 -0500"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:47 2008 -0800"
      },
      "message": "ath5k: use AR5K_KEYTABLE_SIZE when initializing key table\n\n...instead of using AR5K_KEYCACHE_SIZE, which would seem to be a\ntypo/thinko...\n\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "61cb5dd6d1c81fbb5629f60db4e2a7faa7124b7a",
      "tree": "5f0d0c7f1e7830a8149c94012feb80c160cb0b6d",
      "parents": [
        "71ebb4aac87e4a1504a155084d658d0a92ac63fb"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Mon Jan 21 19:55:09 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:46 2008 -0800"
      },
      "message": "b43: Fix firmware caching\n\nWe must also store the ID string (filename) for the cached firmware blobs\nand verify that we really have the right firmware cached before using it.\nIf we don\u0027t have the right fw cached, we must free it and request the\ncorrect blobs.\n\nThis fixes bandswitch on A/B/G multi-PHY devices.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "95b66bad55b846e02e5b5c8b32ac4a659c28149b",
      "tree": "ec1f46c1cf212bc5de6a0450cdcc002481a8e032",
      "parents": [
        "c09c7237eadc65916305835ca1e3ee8a03f01159"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Fri Jan 18 01:09:25 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:44 2008 -0800"
      },
      "message": "b43: Add more N-PHY init code\n\nThis also adds lots of TODOs. Oh well. Lots of work. :)\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "bfe6a50156ab0c33729378fae7038bce3c6c5184",
      "tree": "4d29fdaa77eef7772eadab31033227e49e67c911",
      "parents": [
        "a8bdf29c6cd117644d27677962fe832b33036c77"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Jan 09 20:15:31 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:42 2008 -0800"
      },
      "message": "b43legacy: Remove the PHY spinlock\n\nThis fixes a sparse warning about weird locking.\nThe spinlock is not needed, so simply remove it.\nThis also adds some sanity checks to the PHY and radio locking\nto protect against recursive locking.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9d5c824399dea881779d78a6c147288bf2dccb6b",
      "tree": "8c76b20c3cf1d81a63973e97578cea6a8a82a354",
      "parents": [
        "b491edd5817f1618f4e06d67638739591a714bdb"
      ],
      "author": {
        "name": "Auke Kok",
        "email": "auke-jan.h.kok@intel.com",
        "time": "Thu Jan 24 02:22:38 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:33 2008 -0800"
      },
      "message": "igb: PCI-Express 82575 Gigabit Ethernet driver\n\nWe are pleased to announce a new Gigabit Ethernet product and its\ndriver to the linux community. This product is the Intel(R) 82575\nGigabit Ethernet adapter family. Physical adapters will be available\nto the public soon. These adapters come in 2- and 4-port versions\n(copper PHY) currently. Other variants will be available later.\n\nThe 82575 chipset supports significantly different features that\nwarrant a new driver. The descriptor format is (just like the\nixgbe driver) different. The device can use multiple MSI-X vectors\nand multiple queues for both send and receive. This allows us to\noptimize some of the driver code specifically as well compared to\nthe e1000-supported devices.\n\nThis version of the igb driver no lnger uses fake netdevices and\nincorporates napi_struct members for each ring to do the multi-\nqueue polling. multi-queue is enabled by default and the driver\nsupports NAPI mode only.\n\nAll the namespace collisions should be gone in this version too. The\nregister macro\u0027s have been condensed to improve readability.\n\nSigned-off-by: Auke Kok \u003cauke-jan.h.kok@intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@redhat.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b491edd5817f1618f4e06d67638739591a714bdb",
      "tree": "2e0aae92f7190b7b3f0de336229eb726b30a3264",
      "parents": [
        "f305f789bb96ee6e35e71f58324b72abb7bd0b13"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Sat Dec 22 19:44:51 2007 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:32 2008 -0800"
      },
      "message": "bnx2 annotations\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "f305f789bb96ee6e35e71f58324b72abb7bd0b13",
      "tree": "980647f9eff15b56ef120904d62c1cff1644eb40",
      "parents": [
        "66341fffd4e5e546906ebcfeb6f5cce8df802c17"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Sat Dec 22 19:44:00 2007 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:31 2008 -0800"
      },
      "message": "annotate netxen\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "66341fffd4e5e546906ebcfeb6f5cce8df802c17",
      "tree": "4101824e02b1ada17854e83c7aa60d82ae5ca78a",
      "parents": [
        "05e5c1165393a2d6044b01288f089d2e74a49d58"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Sat Dec 22 18:56:43 2007 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:31 2008 -0800"
      },
      "message": "annotate myri10ge\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "05e5c1165393a2d6044b01288f089d2e74a49d58",
      "tree": "bab583a44c814d4daf3cd2e617a1f3a52ee1c7a9",
      "parents": [
        "ac390c60a833192e87fb09ed8d67f5d1a84306c8"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Sat Dec 22 18:56:23 2007 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:30 2008 -0800"
      },
      "message": "annotate cxgb3\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "ac390c60a833192e87fb09ed8d67f5d1a84306c8",
      "tree": "ad8c6d74992816c08bfc3959f767b51f0aeada95",
      "parents": [
        "61cf46ad581ba43073d3bcb0be549eb60fbbf9f8"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Sat Dec 22 18:56:33 2007 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:29 2008 -0800"
      },
      "message": "annotate chelsio\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "583c28e5645c464b57b4f5d3d53113c06bb0ac5f",
      "tree": "636d9220936d4e62b703913581fc669956e74824",
      "parents": [
        "ecfdc8c5424079393a9b05e8a5aaf5c6873029f6"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Mon Jan 21 19:51:35 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:23 2008 -0800"
      },
      "message": "[BNX2]: Fix driver phy_flags name space.\n\nPrefix \"bp-\u003ephy_flags\" names with BNX2_PHY_FLAG_* for consistency.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f86e82fb547efe05457391df069cce7ab530b181",
      "tree": "31365a448cbf0327c329f9ea3393875f6f54f9e4",
      "parents": [
        "feebb33183cee0fdf8e8a9c4f0da3231f0cfa2bb"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 21 17:15:40 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:16 2008 -0800"
      },
      "message": "[BNX2]: Fix driver software flag namespace.\n\nPrefix \"bnx2-\u003eflags\" names with BNX2_* for consistency.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "feebb33183cee0fdf8e8a9c4f0da3231f0cfa2bb",
      "tree": "e7cf9972c257208729fab038d1a04bdbbbbd5aa9",
      "parents": [
        "b2fadeae1334008c1bb4d87bc507141cb7aaf0e8"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Mon Jan 21 17:07:29 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:16 2008 -0800"
      },
      "message": "[BNX2] Update version to 1.7.2.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b2fadeae1334008c1bb4d87bc507141cb7aaf0e8",
      "tree": "26fbaeefce8860a40e54852783280446c4c95847",
      "parents": [
        "1097f5e92107ca3950fabf5e1d724faa80c91e7f"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Mon Jan 21 17:07:06 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:15 2008 -0800"
      },
      "message": "[BNX2]: Add link-down workaround on 5706 serdes.\n\nIn some blade systems using the 5706 serdes, the hardware sometimes\ndoes not properly generate link down interrupts.  We add a workaround\nin the driver\u0027s timer to force a link-down when some PHY registers\nreport loss of SYNC.\n\nThe parallel detect logic is cleaned up slightly to better integrate\nthe workaround.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1097f5e92107ca3950fabf5e1d724faa80c91e7f",
      "tree": "7088f4b9ab0d0481d43e2fc3d6a998d44c006dc2",
      "parents": [
        "2dd201d7b735f252df1a915a3f2e6a71910a3d87"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Mon Jan 21 17:06:41 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:14 2008 -0800"
      },
      "message": "[BNX2]: Fix minor bug in bnx2_has_work().\n\nIt is more correct to get the status block from the bnx2_napi struct\ninstead of the bnx2 struct.  It happens that they are the same in this\ncase because we are using the first MSIX vector.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2dd201d7b735f252df1a915a3f2e6a71910a3d87",
      "tree": "09a3fa5be7947c52a30cf640c40b230eb6cc72d6",
      "parents": [
        "819d772b0ceddebb5b4907d5aa5505c99aec985b"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Mon Jan 21 17:06:09 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:13 2008 -0800"
      },
      "message": "[BNX2]: Disable jumbo rx paging on 5709 Ax.\n\nThe chip has problem running in this mode and needs to be disabled.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "819d772b0ceddebb5b4907d5aa5505c99aec985b",
      "tree": "97f605f99262d41249b99116424dfc3254269f51",
      "parents": [
        "73738001ac8fb1d006157e9ce89458a135c7571f"
      ],
      "author": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Thu Jan 17 16:57:10 2008 -0500"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:13 2008 -0800"
      },
      "message": "b43/nphy.c: include headers to avoid build breakage on some platforms\n\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "73738001ac8fb1d006157e9ce89458a135c7571f",
      "tree": "801a402475dded77050e734773a044db2a7a4a2f",
      "parents": [
        "d2594d07abdbf49f9bd3df7e02708716de0f59e9"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@linux-foundation.org",
        "time": "Wed Jan 16 02:58:24 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:12 2008 -0800"
      },
      "message": "drivers/net/wireless/rt2x00/rt2x00usb.c: fix uninitialized var warning\n\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d2594d07abdbf49f9bd3df7e02708716de0f59e9",
      "tree": "3fa5267625b6b6400e272616d8a4306b8ccd6ceb",
      "parents": [
        "222b01b7fef6e7ebea9e76ce08a783571569797b"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@linux-foundation.org",
        "time": "Wed Jan 16 02:56:33 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:11 2008 -0800"
      },
      "message": "drivers/net/wireless/iwlwifi/iwl-3945.c: fix printk warning\n\ndrivers/net/wireless/iwlwifi/iwl-3945.c: In function \u0027iwl3945_add_radiotap\u0027:\ndrivers/net/wireless/iwlwifi/iwl-3945.c:269: warning: format \u0027%d\u0027 expects type \u0027int\u0027, but argument 3 has type \u0027long unsigned int\u0027\n\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "222b01b7fef6e7ebea9e76ce08a783571569797b",
      "tree": "a95619da0e60695a39e52b0229625ad27cb4e5b2",
      "parents": [
        "66dcb6bdc57a799a16e8d2942b9ab38b8546eb3b"
      ],
      "author": {
        "name": "Stefano Brivio",
        "email": "stefano.brivio@polimi.it",
        "time": "Sun Jan 13 18:35:52 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:10 2008 -0800"
      },
      "message": "b43legacy: fix use-after-free rfkill bug\n\nFix rfkill code which caused a use-after-free bug. Thanks to David\nWoodhouse for spotting this out.\n\nCc: David Woodhouse \u003cdwmw2@infradead.org\u003e\nSigned-off-by: Stefano Brivio \u003cstefano.brivio@polimi.it\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "61d30020dc2c49d36d95f3efb8b5ed727e459087",
      "tree": "89b0907e51bfbb0b56c54ff055cb4116d5f9ab36",
      "parents": [
        "c9d1be36197bf638be68cec6685c68e462273b65"
      ],
      "author": {
        "name": "Holger Schurig",
        "email": "hs4233@mail.mn-solutions.de",
        "time": "Wed Jan 16 15:59:52 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:07 2008 -0800"
      },
      "message": "libertas: pepper main with debug statement\n\nlibertas: re-pepper debug statementThe recent fluff of updates\ndidn\u0027t put proper lbs_deb_enter/leave calls into the source code.\nAdd them where appropriate.\n\nAlso contains some whitespace changes.\n\nSigned-off-by: Holger Schurig \u003chs4233@mail.mn-solutions.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "c9d1be36197bf638be68cec6685c68e462273b65",
      "tree": "0f8e373649d0784c49e02ee6c57559f5116d3418",
      "parents": [
        "dac10a9f286c75cffa75c7ec8b05d566a6ece95e"
      ],
      "author": {
        "name": "Holger Schurig",
        "email": "hs4233@mail.mn-solutions.de",
        "time": "Wed Jan 16 15:57:44 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:06 2008 -0800"
      },
      "message": "libertas: don\u0027t blindly try mesh\n\nThe CF card only has a very old firmware (5.0.16p0). This firmware doesn\u0027t\nknow anything about mesh config. However, current code blindly calls\nmesh_config when the card is inserted. So check the firmware version before\nissuing this command.\n\nSigned-off-by: Holger Schurig \u003chs4233@mail.mn-solutions.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "dac10a9f286c75cffa75c7ec8b05d566a6ece95e",
      "tree": "6b05b6427ec90091f8059de653708eec4a493639",
      "parents": [
        "4365929d176b47a78d10aca0d1dee2afdfcbe4f2"
      ],
      "author": {
        "name": "Holger Schurig",
        "email": "hs4233@mail.mn-solutions.de",
        "time": "Wed Jan 16 15:55:22 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:05 2008 -0800"
      },
      "message": "libertas: always show firmware release\n\nAlways shows the firmware release.\n\nAlso converts the firmware release into something that is easily comparable.\n\nSigned-off-by: Holger Schurig \u003chs4233@mail.mn-solutions.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "4365929d176b47a78d10aca0d1dee2afdfcbe4f2",
      "tree": "04a02753b4633beb790068b85810a5c1b2ad0041",
      "parents": [
        "ae3e0fcf901e4b7df87aef7ab39093e142a8de8b"
      ],
      "author": {
        "name": "Holger Schurig",
        "email": "hs4233@mail.mn-solutions.de",
        "time": "Wed Jan 16 15:52:58 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:05 2008 -0800"
      },
      "message": "libertas: move cardspecific data to driver\n\nboot2_version is purely USB specific, so move it to struct if_usb_card.\n\nSigned-off-by: Holger Schurig \u003chs4233@mail.mn-solutions.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "ae3e0fcf901e4b7df87aef7ab39093e142a8de8b",
      "tree": "bcd8fce4819ad95181ec8694ae690ae6cad9f060",
      "parents": [
        "8ac919be0520b22d106b1d5f3e8f9b5c142089eb"
      ],
      "author": {
        "name": "Holger Schurig",
        "email": "hs4233@mail.mn-solutions.de",
        "time": "Wed Jan 16 15:48:44 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:04 2008 -0800"
      },
      "message": "libertas cs/sdio: fix \u0027NOHZ: local_softirq_pending 08\u0027 message\n\nnetif_rx should be called only from interrupt context. if_cs and if_sdio receive\npackets from other contexts, and thus should call netif_rx_ni.\n\nSigned-off-by: Marc Pignat \u003cmarc.pignat@hevs.ch\u003e\nAcked-by: Holger Schurig \u003chs4233@mail.mn-solutions.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "8ac919be0520b22d106b1d5f3e8f9b5c142089eb",
      "tree": "997f34701256e3f1e18396c21a74000a4f611d53",
      "parents": [
        "8a1b02452862dd30980ad0ef493eed687bc81474"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Jan 16 02:14:23 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:03 2008 -0800"
      },
      "message": "b43: Add lots of N-PHY lookup tables\n\nThis adds lots of N-PHY related lookup tables.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "8a1b02452862dd30980ad0ef493eed687bc81474",
      "tree": "e4be8fd1dc67b6af1370c0a8dc9e640d0d72a7ae",
      "parents": [
        "e7a2827cbbdb11717877c44cbbdf0fb1d14e890c"
      ],
      "author": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Mon Jan 14 17:46:25 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:03 2008 -0800"
      },
      "message": "iwlwifi: style fixes to usage of \u003c\u003c and \u003e\u003e operators\n\nThe \u003c\u003c and \u003e\u003e operators need space on each side.\n\nCc: Stefano Brivio \u003cstefano.brivio@polimi.it\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\nAcked-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e7a2827cbbdb11717877c44cbbdf0fb1d14e890c",
      "tree": "8b46334544099c57d630ac6613615e63f21d2cd6",
      "parents": [
        "71972664a4a2e149a1e2ae75ed90cf70ce5af6c2"
      ],
      "author": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Mon Jan 14 17:46:24 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:02 2008 -0800"
      },
      "message": "iwlwifi: remove reference to non-existent documentation\n\nThe external iwlwifi driver comes with a README file that is\nreferenced by the Kconfig. This README is not present in the\ndriver included in the kernel. Remove references to this\ndocumentation.\n\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\nAcked-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "71972664a4a2e149a1e2ae75ed90cf70ce5af6c2",
      "tree": "1d50f0a4a6f5ba3df9fc490985692816cf45f23a",
      "parents": [
        "fa254a68076bf7ae21747fe2cdb15db306938d78"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Mon Jan 14 17:46:23 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:01 2008 -0800"
      },
      "message": "iwlwifi: Update iwlwifi version stamp to 1.2.23\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "fa254a68076bf7ae21747fe2cdb15db306938d78",
      "tree": "689be73cb01da13f7b24cec302eaf9337dd8b1c0",
      "parents": [
        "c33104f0a782a7746e5d3b975288a4fb3b8293ed"
      ],
      "author": {
        "name": "Tomas Winkler",
        "email": "tomas.winkler@intel.com",
        "time": "Sun Jan 27 20:41:38 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:10:00 2008 -0800"
      },
      "message": "iwlwifi: 3954 renames iwl3945_rate_scale_priv to iwl3945_rs_sta\n\nThis patch renames iwl3945_rate_scale_priv to iwl3945_rs_sta as it\nbetter represents the purpose of this variable.\n\nSigned-off-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c33104f0a782a7746e5d3b975288a4fb3b8293ed",
      "tree": "c48dbe1f17e8fd8c46d0891e3a89ac010d576459",
      "parents": [
        "98c92211462bb78fe0e869b43e1662e549e35fed"
      ],
      "author": {
        "name": "Tomas Winkler",
        "email": "tomas.winkler@intel.com",
        "time": "Mon Jan 14 17:46:21 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:59 2008 -0800"
      },
      "message": "iwlwifi: 4965 unify rate scale variable names for station data\n\n1, This patch renames iwl4965_rate_scale_priv to iwl4965_lq_sta.\n   This type represents a station\u0027s link quality.\n2. The names of the variables of this type were rs_priv, lq_data, lq, crl\n   across the file. All are now unified under the name lq_sta.\n\nSigned-off-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "98c92211462bb78fe0e869b43e1662e549e35fed",
      "tree": "0cfed83c186d801cb06e9d3aac4c7a3014e302f8",
      "parents": [
        "e655b9f03f41c7a84fb74d6619abf844d7f2ab65"
      ],
      "author": {
        "name": "Tomas Winkler",
        "email": "tomas.winkler@intel.com",
        "time": "Mon Jan 14 17:46:20 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:58 2008 -0800"
      },
      "message": "iwlwifi: move uCode helper functions to iwl-helpers.h\n\nThis patch adds iwl_free_fw_desc ucode helper function.\nIt also moves ucode helper functions to iwl-helpers.h.\n\nSigned-off-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e655b9f03f41c7a84fb74d6619abf844d7f2ab65",
      "tree": "219be4a1e49e9d630874684b6996e9d0a73d166c",
      "parents": [
        "5a66926aa9230810704fd5a127966215fd58881e"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Thu Jan 24 02:19:38 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:58 2008 -0800"
      },
      "message": "iwlwifi: fix problem when rf_killswitch change during suspend/resume\n\nAfter we delay device initialization until interface up, there are more\nconditions for the hardware rf_kill switch states during suspend and\nresume. For example, before suspend we can have interface up or down,\nrf_kill enable or disable; before resume we can have rf_kill enable or\ndisable. So there are totally 2^3 \u003d 8 conditions to handle. This patch\naddressed this problem and makes sure every condition works correctly.\n\nThis patch also merges the device suspend and resume handlers with the\nmac_start and mac_stop code since they are basically doing the same\nthing.\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "5a66926aa9230810704fd5a127966215fd58881e",
      "tree": "347aa0458a71130357afcd89bb17a264cf728302",
      "parents": [
        "3058f02137359efb412975cf94a9fa7c25413387"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Mon Jan 14 17:46:18 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:57 2008 -0800"
      },
      "message": "iwlwifi: delay firmware loading from pci_probe to network interface open\n\nThis patch moves the firmware loading (read firmware from disk and load\nit into the device SRAM) from pci_probe time to the first network\ninterface open time. There are two reasons for doing this:\n\n1. To support kernel buildin iwlwifi drivers. Because kernel initializes\n   network devices subsystem before hard disk and SATA subsystem, it is\n   impossible to get the firmware image from hard disk in the PCI probe\n   handler. Thus delaying the firmware loading into the network\n   interface open time is the way to go. Note, we only read the firmware\n   image from hard disk the first time the interface is open. After this\n   is succeeded, we cache the firmware image into the host memory. This\n   is a performance gain when user open and close the interface multiple\n   times and is necessary for device suspend and resume.\n\n2. For better power saving. When the iwlwifi modules are loaded (or\n   buildin the kernel) but the wireless network interface is not being\n   used, it is a good practice the wireless device consumes as less\n   power as possible. Unloading the firmware from the wireless device\n   and unregister the driver\u0027s interrupt handler in the network\n   interface close handler provides users a way to achieve this. User\n   space network configuration tools (i.e NetworkManager) can also\n   contribute here when it detects a wired cable is connected and\n   close the wireless interface automatically.\n\nThis patch also includes the pci_save/restore_state() fixed by Ian Schram\nupon the first version.\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: Ian Schram \u003cischram@telenet.be\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "3058f02137359efb412975cf94a9fa7c25413387",
      "tree": "673e1c9a579dce85f09cae8af577af61f54d4ef6",
      "parents": [
        "87e4f7dfe56dbaa5470e047d991c077f8e479d21"
      ],
      "author": {
        "name": "Ben Cahill",
        "email": "ben.m.cahill@intel.com",
        "time": "Mon Jan 14 17:46:17 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:56 2008 -0800"
      },
      "message": "iwlwifi: document scan command\n\nDocument scan command.\n\nSigned-off-by: Ben Cahill \u003cben.m.cahill@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "87e4f7dfe56dbaa5470e047d991c077f8e479d21",
      "tree": "6530bc77e065ef1fa281c3f675406d56fe3e21cb",
      "parents": [
        "6a218f6f3b1679c3f12c487131f0be5b2841bfbe"
      ],
      "author": {
        "name": "Tomas Winkler",
        "email": "tomas.winkler@intel.com",
        "time": "Mon Jan 14 17:46:16 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:55 2008 -0800"
      },
      "message": "iwlwifi: remove iwl4965_tx_cmd\n\nThis patch removes iwl4965_tx_cmd function and splits its content to\niwl4965_hw_build_tx_cmd_rate, iwl4965_build_tx_cmd_basic,\nand iwl4965_tl_get_stats function. The latest one will be deprecated\nwhen traffic load will move to rate scale module.\n\nSigned-off-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "6a218f6f3b1679c3f12c487131f0be5b2841bfbe",
      "tree": "1955018fa158bb02ce99be2dd3a4335c3d62b0f2",
      "parents": [
        "440d42c30cb86eb1b6dbc0d84b9b52e2476fa5e3"
      ],
      "author": {
        "name": "Tomas Winkler",
        "email": "tomas.winkler@intel.com",
        "time": "Mon Jan 14 17:46:15 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:55 2008 -0800"
      },
      "message": "iwlwifi: move iwl4965_get_dma_hi_address function to iwl-helpers.h\n\nThis patch moves iwl4965_get_dma_hi_address function to iwl-headers.h\nas iwl_get_dma_hi_address. This function will be used in more chipsets\nthan only 4965.\n\nSigned-off-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "440d42c30cb86eb1b6dbc0d84b9b52e2476fa5e3",
      "tree": "8678be6bc05630e924f6f8394fc43c57338b6887",
      "parents": [
        "d15913140645d9c23e8b0a9a0bb307ca889688d3"
      ],
      "author": {
        "name": "Tomas Winkler",
        "email": "tomas.winkler@intel.com",
        "time": "Mon Jan 14 17:46:14 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:54 2008 -0800"
      },
      "message": "iwl4965: Remove redundant code in iwl4965_tx_cmd\n\nThis function removes redundant code in iwl4965_tx_cmd\nfunction, leftovers of previous design.\n\nSigned-off-by: Tomas Winkler \u003ctomas.winkler@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d15913140645d9c23e8b0a9a0bb307ca889688d3",
      "tree": "7bd05a3d5f082d4dc7adcb82d066cb56e35eb847",
      "parents": [
        "53a6e2342d73d509318836e320f70cd286acd69c"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Mon Jan 14 00:05:57 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:53 2008 -0800"
      },
      "message": "b43: Add NPHY channel switch code\n\nThis adds code and table data for channel switching on NPHYs.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "53a6e2342d73d509318836e320f70cd286acd69c",
      "tree": "835a25c8d48465840a8cdea8c363c58f567d921c",
      "parents": [
        "af4b7450788426a113057ce2d85c25b4f4e440d1"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Sun Jan 13 21:23:44 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:53 2008 -0800"
      },
      "message": "b43: Add NPHY radio init code\n\nThis adds some code to init the 2055 radio.\nThis patch adds two files \"tables_nphy.h\" and \"tables_nphy.c\"\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "af4b7450788426a113057ce2d85c25b4f4e440d1",
      "tree": "2e5f20f1a4917cc35d188986f3cdabbcdb0bbd69",
      "parents": [
        "60168f12b9d3fa1a81c774ecaffe8620a862323d"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Sun Jan 13 21:08:24 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:52 2008 -0800"
      },
      "message": "ssb: Add boardflags_hi field to the sprom data structure\n\nAdd boardflags-high.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "60168f12b9d3fa1a81c774ecaffe8620a862323d",
      "tree": "3e3866a84f97e6659a4804ec6566e82af1e630b2",
      "parents": [
        "60da481b98082ff5ffd233b18683c3ffe3ab618c"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Sun Jan 13 16:41:23 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:51 2008 -0800"
      },
      "message": "b43: Add Broadcom 2055 radio register definitions\n\nAdd the register definitions for the Broadcom 2055 N-radio.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "60da481b98082ff5ffd233b18683c3ffe3ab618c",
      "tree": "3660cdeef28b88f3fc6997b299ac5a3158654b20",
      "parents": [
        "eb189d8bc9824bcb2187ffdab27d77ab469264c3"
      ],
      "author": {
        "name": "Helge Deller",
        "email": "deller@gmx.de",
        "time": "Sun Jan 13 15:16:34 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:50 2008 -0800"
      },
      "message": "WAVELAN - compile-time check for struct sizes\n\nConvert optional struct size checks to non-optional compile-time checks.\nFurthermore BUILD_BUG_ON() which will be optimized away by the compiler.\n\nSigned-off-by: Helge Deller \u003cdeller@gmx.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "eb189d8bc9824bcb2187ffdab27d77ab469264c3",
      "tree": "612c6549f0d0261087b55b157dd5ca016386ddee",
      "parents": [
        "243dcfcc1d4b33aa610f1bf3ec610dafdf4d7ff7"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Mon Jan 28 14:47:41 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:50 2008 -0800"
      },
      "message": "b43: Add support for new firmware\n\nThis patch adds support for new firmware.\nOld firmware is still supported until July 2008.\n\nTo get new firmware, go to\nftp://ftp.linksys.com/opensourcecode/wrt150nv11/1.51.3/\nand download the tarball. We don\u0027t have a smaller tarball, yet.\nThat will be fixed later.\nYou can extract firmware out of the \"wl_ap.o\" file contained\nin this tarball using latest fwcutter. You must pass the option\n--unsupported to fwcutter.\nFwcutter-010 with official support for a new firmware image will\nbe released soon.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "243dcfcc1d4b33aa610f1bf3ec610dafdf4d7ff7",
      "tree": "77893fc70e26e4da1f68762dd9e68e11d59301fa",
      "parents": [
        "89539ebe2f2eb3a0d77b92884b092f2eb2575bd9"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Sun Jan 13 14:12:44 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:49 2008 -0800"
      },
      "message": "b43: Fix radio ID register reading\n\nThis fixes reading of the high 16 bits of the radio ID\non new devices. 2055 radios want lo16 to be read first.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "89539ebe2f2eb3a0d77b92884b092f2eb2575bd9",
      "tree": "efa1eb958569e87faa0111755a6cabb7d132420c",
      "parents": [
        "40561b8426c27f187e2ae496ed603e7c4e3ab818"
      ],
      "author": {
        "name": "Ivo van Doorn",
        "email": "ivdoorn@gmail.com",
        "time": "Thu Jan 10 22:40:13 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:48 2008 -0800"
      },
      "message": "rt2x00: Fix queue_idx initialization\n\nFor TX rings the queue_idx should start at\nIEEE80211_TX_QUEUE_DATA0 and for each followup\nring this index needs to be increased.\n\nFor the RX ring the queue_idx should be set\nto 0. We don\u0027t need to initialize the tx_params.\n\nSigned-off-by: Ivo van Doorn \u003cIvDoorn@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "40561b8426c27f187e2ae496ed603e7c4e3ab818",
      "tree": "8aa31c5aca687b58590dfe2ba5a5aae9d44b5217",
      "parents": [
        "dd0d43ea0bbd4c4554b13d4a5d282f9c4d1b5591"
      ],
      "author": {
        "name": "Ivo van Doorn",
        "email": "ivdoorn@gmail.com",
        "time": "Thu Jan 10 22:02:44 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:47 2008 -0800"
      },
      "message": "rt2x00: Data and desc pointer initialization\n\nrt2500usb and rt73usb data and desc pointer initialization\nwas incorrect because it was using uninitialized variables\nto determine the length.\n\nIn addition rt2500usb used skb_pull and removed the ieee80211\nfrom each received frame instead of using skb_trim to remove\nthe device descriptor from the frame.\n\nFinally this also fixes the descriptor override when 4 byte\naligning occured. We still need a completely valid descriptor\nwhen using the TX/RX dumping capabilities in debugfs.\n\nSigned-off-by: Ivo van Doorn \u003cIvDoorn@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "dd0d43ea0bbd4c4554b13d4a5d282f9c4d1b5591",
      "tree": "6a171d66037cc8e69da193a8692407e3e69aaa6b",
      "parents": [
        "47f76ca3a34cd6571a2de39da2926123ca39a4c1"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Mon Jan 07 12:55:14 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:47 2008 -0800"
      },
      "message": "b43: Add N-PHY related initvals firmware filenames.\n\nThis adds the initval filenames for the N-PHY firmware.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "47f76ca3a34cd6571a2de39da2926123ca39a4c1",
      "tree": "f9924200068ff173a23f811b3dcee565a3fccbea",
      "parents": [
        "280d0e16bcbf5893505a0d0897f3ca1ddc0764fa"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Thu Dec 27 22:15:11 2007 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:46 2008 -0800"
      },
      "message": "b43: Fix tim search buffer overrun\n\nUse the length of the variable section of the beacon instead of the\nwhole beacon length for bounds checking.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "280d0e16bcbf5893505a0d0897f3ca1ddc0764fa",
      "tree": "efa557090ba744de7736c1c6576bf4a67c11795c",
      "parents": [
        "d4df6f1a9edb80c99913548467397617ccee7855"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Dec 26 18:26:17 2007 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:45 2008 -0800"
      },
      "message": "b43: Put multicast frames on the mcast queue\n\nThis queues frames flagged as \"send after DTIM\" by mac80211\non the special multicast queue. The firmware will take care\nto send the packet after the DTIM.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d4df6f1a9edb80c99913548467397617ccee7855",
      "tree": "a1516d68078d95421ebe931cab94ccbb1dffcc67",
      "parents": [
        "e66fee6aa04b27b6b6f812af0e4123eded5bf8ac"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Dec 26 18:04:14 2007 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:44 2008 -0800"
      },
      "message": "b43: Fix template upload locking.\n\nThis fixes the template upload locking.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e66fee6aa04b27b6b6f812af0e4123eded5bf8ac",
      "tree": "d295309d66a657c76bd007384d13203480eb7d79",
      "parents": [
        "471b3efdfccc257591331724145f8ccf8b3217e1"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Dec 26 17:47:10 2007 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:43 2008 -0800"
      },
      "message": "b43: Fix upload of beacon packets to the hardware\n\nThis fixes uploading of the beacon data and writing of the\nTIM and DTIM offsets.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "471b3efdfccc257591331724145f8ccf8b3217e1",
      "tree": "c9e576442c7b62c8c667ae1046e560323f0821fd",
      "parents": [
        "2bc454b0b30b3645d114689b64321cb49be99923"
      ],
      "author": {
        "name": "Johannes Berg",
        "email": "johannes@sipsolutions.net",
        "time": "Fri Dec 28 14:32:58 2007 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:43 2008 -0800"
      },
      "message": "mac80211: add unified BSS configuration\n\nThis patch (based on Ron Rindjunsky\u0027s) creates a framework for\na unified way to pass BSS configuration to drivers that require\nthe information, e.g. for implementing power save mode.\n\nThis patch introduces new ieee80211_bss_conf structure that is\npassed to the driver via the new bss_info_changed() callback\nwhen the BSS configuration changes.\n\nThis new BSS configuration infrastructure adds the following\nnew features:\n * drivers are notified of their association AID\n * drivers are notified of association status\n\nand replaces the erp_ie_changed() callback. The patch also does\nthe relevant driver updates for the latter change.\n\nSigned-off-by: Ron Rindjunsky \u003cron.rindjunsky@intel.com\u003e\nSigned-off-by: Johannes Berg \u003cjohannes@sipsolutions.net\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "2bc454b0b30b3645d114689b64321cb49be99923",
      "tree": "a6c2bc87e02586f43a71dbb5f1808079df120dec",
      "parents": [
        "9ab461732a3cd8e7a7cf13cc46ed4c1ac7907824"
      ],
      "author": {
        "name": "Michael Wu",
        "email": "flamingice@sourmilk.net",
        "time": "Tue Dec 25 19:33:16 2007 -0500"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:42 2008 -0800"
      },
      "message": "mac80211: Fix rate reporting regression\n\nMattias Nissler\u0027s \"clean up rate selection\" patch incorrectly changes\nthe behavior of txrate setting in sta_info. This patch backs out parts\nof the rate selection consolidation in order to fix this issue for now.\n\nSigned-off-by: Michael Wu \u003cflamingice@sourmilk.net\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9ab461732a3cd8e7a7cf13cc46ed4c1ac7907824",
      "tree": "cf1245a670262c56abd94d9a1163b188d2752212",
      "parents": [
        "132127e5057be70112bb974b8a3aaa0f7b14847f"
      ],
      "author": {
        "name": "Ron Rindjunsky",
        "email": "ron.rindjunsky@intel.com",
        "time": "Tue Dec 25 17:00:38 2007 +0200"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:41 2008 -0800"
      },
      "message": "iwlwifi: A-MPDU Rx flow enabled\n\nThis patch enables the A-MPDU Rx flow. it contains several\nadjustments to new mac80211 A-MPDU Rx flow.\n\nSigned-off-by: Ron Rindjunsky \u003cron.rindjunsky@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "132127e5057be70112bb974b8a3aaa0f7b14847f",
      "tree": "8e5fc0ab1bb563db7d727b58849f59eedb8cef19",
      "parents": [
        "4fd6931ebe24640bec72b91ba612325843a5e3cc"
      ],
      "author": {
        "name": "Luis R. Rodriguez",
        "email": "mcgrof@gmail.com",
        "time": "Fri Jan 04 02:21:05 2008 -0500"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:40 2008 -0800"
      },
      "message": "ath5k: Fix frame duration oops\n\nThis patch fixes an oops which was introduced as a regression by\ncommit fd640775bd16e1df50c867cc547af0, on the patch titled,\n\"mac80211: dont use interface indices in drivers\".\n\nieee80211_generic_frame_duration() now relies on sdata-\u003eflags which\nitself gets set upon bringing the interface up. We check for the\nvirtual interface now before setting the rate duration registers.\n\nAfter the mode changes are introduced onto mac80211 we should revisit\nthese changes.\n\nThis patch was tested on the following cards:\n\n1) BG card:\n\nAtheros AR5213A chip found (MAC: 0x59, PHY: 0x43)\nRF2112A 2GHz radio found (0x46)\n\n2) ABG card:\n\nAtheros AR5213A chip found (MAC: 0x59,PHY: 0x43)\nRF5112A multiband radio found (0x36)\n\nSigned-off-by: Luis R. Rodriguez \u003cmcgrof@winlab.rutgers.edu\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "32bfd35d4b63bd63de4bb0d791ef049c3c868726",
      "tree": "c1c213a35a00bcbe71a2ecc6521e19dec66cf6eb",
      "parents": [
        "f653211197f3841f383fa9757ef8ce182c6cf627"
      ],
      "author": {
        "name": "Johannes Berg",
        "email": "johannes@sipsolutions.net",
        "time": "Wed Dec 19 01:31:26 2007 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:36 2008 -0800"
      },
      "message": "mac80211: dont use interface indices in drivers\n\nThis patch gets rid of the if_id stuff where possible in favour of\na new per-virtual-interface structure \"struct ieee80211_vif\". This\nstructure is located at the end of the per-interface structure and\ncontains a variable length driver-use data area.\n\nThis has two advantages:\n * removes the need to look up interfaces by if_id, this is better\n   for working with network namespaces and performance\n * allows drivers to store and retrieve per-interface data without\n   having to allocate own lists/hash tables\n\nSigned-off-by: Johannes Berg \u003cjohannes@sipsolutions.net\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f653211197f3841f383fa9757ef8ce182c6cf627",
      "tree": "ba56e1fa09924d1ffab4f825044175291786b58e",
      "parents": [
        "fa1c114fdaa605496045e56c42d0c8aa4c139e57"
      ],
      "author": {
        "name": "Michael Wu",
        "email": "flamingice@sourmilk.net",
        "time": "Sun Oct 14 14:43:16 2007 -0400"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:35 2008 -0800"
      },
      "message": "Add rtl8180 wireless driver\n\nThis patch adds a mac80211 based wireless driver for the rtl8180 and\nrtl8185 PCI wireless cards.  Also included are some rtl8187 changes\nrequired due to the relationship between that driver and this one.\n\nMichael Wu is primarily responsible for the initial driver and rtl8185\nsupport.  Andreas Merello provided the additional rtl8180 support.\n\nThanks to Jukka Ruohonen for the donating a rtl8185 card! It was very\nhelpful for the rtl8225z2 code.\n\nThe Signed-off-by information below is collected from the individual\npatches submitted to wireless-2.6 before merging this driver upstream.\n\nSigned-off-by: Andrea Merello \u003candreamrl@tiscali.it\u003e\nSigned-off-by: Johannes Berg \u003cjohannes@sipsolutions.net\u003e\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: Michael Wu \u003cflamingice@sourmilk.net\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "fa1c114fdaa605496045e56c42d0c8aa4c139e57",
      "tree": "df8345d8ef17cea23da3c0bbe388729b79920bfe",
      "parents": [
        "3543f8069d3cc932202e64095d1d3986a10d34ed"
      ],
      "author": {
        "name": "Jiri Slaby",
        "email": "jirislaby@gmail.com",
        "time": "Sun Aug 12 17:33:16 2007 +0200"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:35 2008 -0800"
      },
      "message": "[PATCH] Net: add ath5k wireless driver\n\nadd ath5k wireless driver\n\nPortions of this driver are covered by one or both of the ISC and\n3-clause BSD licenses.  Specific license information is cited at the top\nof each file.\n\nAcked-by and Signed-off-by information is collected from individual\npatches as collected in the wireless-2.6 tree prior to upstream\nsubmission.\n\nAcked-by: Matthew W. S. Bell  \u003cmentor@madwifi.org\u003e\nAcked-by: Michael Taylor \u003cmike.taylor@apprion.com\u003e\nAcked-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Bradley M. Kuhn \u003cbkuhn@softwarefreedom.org\u003e\nSigned-off-by: Bruno Randolf \u003cbruno@thinktube.com\u003e\nSigned-off-by: Dave Young \u003chidave.darkstar@gmail.com\u003e\nSigned-off-by: Francesco Gringoli \u003cfrancesco.gringoli@ing.unibs.it\u003e\nSigned-off-by: Jiri Slaby \u003cjirislaby@gmail.com\u003e\nSigned-off-by: Johannes Berg \u003cjohannes@sipsolutions.net\u003e\nSigned-off-by: Karen Sandler \u003ckaren@softwarefreedom.org\u003e\nSigned-off-by: Krzysztof Halasa \u003ckhc@pm.waw.pl\u003e\nSigned-off-by: Luis R. Rodriguez \u003cmcgrof@gmail.com\u003e\nSigned-off-by: Matt Norwood \u003cnorwood@softwarefreedom.org\u003e\nSigned-off-by: Nick Kossifidis \u003cmickflemm@gmail.com\u003e\nSigned-off-by: Richard Fontana \u003cfontana@softwarefreedom.org\u003e\nSigned-off-by: Stephen Hemminger \u003cshemminger@linux-foundation.org\u003e\nSigned-off-by: Ulrich Meis \u003cmeis@nets.rwth-aachen.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "3543f8069d3cc932202e64095d1d3986a10d34ed",
      "tree": "74c4baeb821e502da1e50216a4b10b5a6509f643",
      "parents": [
        "17f65f814fc6144e61b5d19f8e0627cd781486c2"
      ],
      "author": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Thu Jan 10 13:28:49 2008 -0500"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:34 2008 -0800"
      },
      "message": "b43: finish removal of pio support\n\nAs suggested in \"b43: Remove PIO support\"...\n\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "17f65f814fc6144e61b5d19f8e0627cd781486c2",
      "tree": "f5bff29b318daabf7de318771610a2bea1125229",
      "parents": [
        "f31800d8b79bc42e495070aa6e6425841b7bdcbf"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Wed Jan 09 22:16:58 2008 -0500"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:33 2008 -0800"
      },
      "message": "hostap_cs: don\u0027t match revisions in presense of the MAC chip name\n\nIf the third PCMCIA ID string specifies the MAC chip, the fourth ID\nstring doesn\u0027t need to be matched.  Even if it\u0027s different, it will be\ncompatible with the driver.\n\nThis ensures that other different revisions of the card will be\nsupported.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f31800d8b79bc42e495070aa6e6425841b7bdcbf",
      "tree": "65f26267ae5b6d3876079913330634392654af00",
      "parents": [
        "5250703e3144e50fbeceb4d1fc01ea2fd159fd4a"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Jan 09 19:08:49 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:32 2008 -0800"
      },
      "message": "b43: Remove the PHY spinlock\n\nThis fixes a sparse warning about weird locking.\nThe spinlock is not needed, so simply remove it.\nThis also adds some sanity checks to the PHY and radio locking\nto protect against recursive locking.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "5250703e3144e50fbeceb4d1fc01ea2fd159fd4a",
      "tree": "b3512b57ba5cfee3f838f87697f428931a098771",
      "parents": [
        "424047e6c684bef2872bd7af7d0e3961c6503981"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Jan 09 18:39:09 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:32 2008 -0800"
      },
      "message": "b43: Fix PHY register routing\n\nThis fixes the PHY routing bit handling.\nThis is needed for N-PHY.\nNo functional change to A-PHY and G-PHY code.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "424047e6c684bef2872bd7af7d0e3961c6503981",
      "tree": "9607f4bd1647bd7b453a117fb6a37eebae8634ab",
      "parents": [
        "9081728b5f08f8137973c70e172c47ccb0dd33c9"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Wed Jan 09 16:13:56 2008 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:31 2008 -0800"
      },
      "message": "b43: Add N-PHY register definitions\n\nThis patch adds all register definitions for the N-PHY.\nThis adds two new files: nphy.h and nphy.c\nNo functional changes to existing code.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9081728b5f08f8137973c70e172c47ccb0dd33c9",
      "tree": "0469a1659a20b13ac48ff02b423800e181271c0b",
      "parents": [
        "01c20986cb2c2aa9c66603e9be14be5ebae99aca"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mb@bu3sch.de",
        "time": "Sat Dec 29 17:24:23 2007 +0100"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 28 15:09:30 2008 -0800"
      },
      "message": "zd1211rw: fix alignment for QOS and WDS frames\n\nThis patch fixes RX packet alignment issues in the zd1211rw driver.\nThis is based on a patch by Johannes Berg.\n\nSigned-off-by: Michael Buesch \u003cmb@bu3sch.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    }
  ],
  "next": "01c20986cb2c2aa9c66603e9be14be5ebae99aca"
}
