linux-kernel mailing list

FromSubjectsort iconDate
Darren Jenkins\
[PATCH] crypto/tcrypt.c fix resource leak
G'day people, Coverity CID: 2306 & 2307 RESOURCE_LEAK In the second for loop in test_cipher(), data is allocated space with kzalloc() and is only ever freed in an error case. Looking at this loop, data is written to this memory but nothing seems to read from it. So here is a patch removing the allocation, I think this is the right fix. Only compile tested. Signed-off-by: Darren Jenkins <darrenrjenkins@gmailcom> diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index 6beabc5.....
Jul 7, 3:24 pm 2008
Steven Rostedt
[PATCH] sched_clock: fix calculation of other CPU
The algorithm to calculate the 'now' of another CPU is not correct. At each scheduler tick, each CPU records the last sched_clock and gtod (tick_raw and tick_gtod respectively). If the TSC is somewhat the same in speed between two clocks the algorithm would be: tick_gtod1 + (now1 - tick_raw1) = tick_gtod2 + (now2 - tick_raw2) To calculate now2 we would have: now2 = (tick_gtod1 - tick_gtod2) + (tick_raw2 - tick_raw1) + now1 Currently the algorithm is: now2 = (tick_gtod1 - tick_gtod2...
Jul 7, 7:49 pm 2008
Andi Kleen
[PATCH] [0/10] Use 64bit x86 machine check code for 32bit to...
This patchkit uses the 64bit machine check code which is better in many ways on 32bit x86 too. This is also the basis for some future machine check work. The 64bit machine check code is in many ways much better than the 32bit machine check code: it is more specification compliant, is cleaner, only has a single code base versus one per CPU, has better infrastructure for recovery, has a cleaner way to communicate with user space etc. etc. It requires testing especially on older systems (on new...
Jul 7, 7:10 pm 2008
H. Peter Anvin
Re: [PATCH] [0/10] Use 64bit x86 machine check code for 32bi...
Applied to -tip as x86/unify-mce. Thanks! -hpa --
Jul 7, 7:53 pm 2008
Andi Kleen
[PATCH] [10/10] MCE: Use 64bit machine check code on 32bit v2
The 64bit machine check code is in many ways much better than the 32bit machine check code: it is more specification compliant, is cleaner, only has a single code base versus one per CPU, has better infrastructure for recovery, has a cleaner way to communicate with user space etc. etc. Use the 64bit code for 32bit too. This is the second attempt to do this. There was one a couple of years ago to unify this code for 32bit and 64bit. Back then this ran into some trouble with K7s and was reve...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [9/10] Add missing includes in mce_intel_64.c
In some i386 configurations these are not implicitely included. Signed-off-by: Andi Kleen <ak@linux.intel.com> Index: linux/arch/x86/kernel/cpu/mcheck/mce_intel_64.c =================================================================== --- linux.orig/arch/x86/kernel/cpu/mcheck/mce_intel_64.c +++ linux/arch/x86/kernel/cpu/mcheck/mce_intel_64.c @@ -12,6 +12,8 @@ #include <asm/hw_irq.h> #include <asm/idle.h> #include <asm/therm_throt.h> +#include <asm/apic.h> +#i...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [8/10] MCE: Remove oops_begin() use in 64bit machine...
First 32bit doesn't have oops_begin, so it's a barrier of using this code on 32bit. On closer examination it turns out oops_begin is not a good idea in a machine check panic anyways. All oops_begin does it so check for recursive/parallel oopses and implement the "wait on oops" heuristic. But there's actually no good reason to lock machine checks against oopses or prevent them from recursion. Also "wait on oops" does not really make sense for a machine check too. So just remove it. Replace...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [7/10] MCE: Remove machine check handler idle notify...
i386 has no idle notifiers, but the 64bit machine check code uses them to wake up mcelog from a fatal machine check exception. For corrected machine checks found by the poller or threshold interrupts going through an idle notifier is not needed because the wake_up can is just done directly and doesn't need the idle notifier. It is only needed for logging exceptions. To be honest I never liked the idle notifier even though I signed off on it. On closer investigation the code actually turned ou...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [6/10] MCE: Provide exit_idle dummy functions for 32...
At some point i386 should probably gain true idle notifiers again, but not now. This is required for the 64bit thermal/threshold interrupt handlers. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- include/asm-x86/idle.h | 5 +++++ 1 file changed, 5 insertions(+) Index: linux/include/asm-x86/idle.h =================================================================== --- linux.orig/include/asm-x86/idle.h +++ linux/include/asm-x86/idle.h @@ -7,7 +7,12 @@ struct notifier_bloc...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [5/10] MCE: Rename mce_dont_init on 64bit to mce_dis...
This way they are the same between 32bit and 64bit and no special cases needed. The semantics were always the same. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 8 ++++---- include/asm-x86/mce.h | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) Index: linux/arch/x86/kernel/cpu/mcheck/mce_64.c =================================================================== --- linux.orig/arch/x86/kernel/cpu/mcheck/mce_64.c +++...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [4/10] MCE: Call 64bit machine check through a call ...
The 32bit mce code still needs that to interface to the WinChip and P5 machine check handlers. On 64bit it's not strictly needed, but also doesn't really hurt. This way avoids some special cases for 32bit. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 9 +++++++++ arch/x86/kernel/entry_64.S | 2 +- include/asm-x86/mce.h | 2 ++ 3 files changed, 12 insertions(+), 1 deletion(-) Index: linux/arch/x86/kernel/c...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [3/10] MCE: Port K7 bank 0 quirk to 64bit mce code
Various K7 have broken bank 0s. Don't enable it by default Port from the 32bit code. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 6 ++++++ 1 file changed, 6 insertions(+) Index: linux/arch/x86/kernel/cpu/mcheck/mce_64.c =================================================================== --- linux.orig/arch/x86/kernel/cpu/mcheck/mce_64.c +++ linux/arch/x86/kernel/cpu/mcheck/mce_64.c @@ -482,6 +482,12 @@ static void __cpuinit mce_cpu_q...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [1/10] MCE: Make 64bit mce code 32bit clean v2
Mostly replace unsigned long with u64s if they need to contain 64bit values. Also replace the simple_strtouls with strict_strtouls to shut up checkpatch warnings. v2: Do the strict_strtoull conversions correctly. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 12 ++++++------ include/asm-x86/mce.h | 24 ++++++++++++------------ 2 files changed, 18 insertions(+), 18 deletions(-) Index: linux/arch/x86/kernel/cpu/mcheck/mc...
Jul 7, 7:10 pm 2008
Andi Kleen
[PATCH] [2/10] MCE: Implement the PPro bank 0 quirk in the 6...
Quoting the comment: * SDM documents that on family 6 bank 0 should not be written * because it aliases to another special BIOS controlled * register. * But it's not aliased anymore on model 0x1a+ * Don't ignore bank 0 completely because there could be a valid * event later, merely don't write CTL0. This is mostly a port on the 32bit code, except that 32bit always didn't write it and didn't have the 0x1a heuristic. I checked with the CPU designers that the quirk is not required starting wit...
Jul 7, 7:10 pm 2008
Matt Helsley
[PATCH 3/4] Container Freezer: Implement freezer cgroup subs...
From: Cedric Le Goater <clg@fr.ibm.com> Subject: [PATCH 3/4] Container Freezer: Implement freezer cgroup subsystem This patch implements a new freezer subsystem in the control groups framework. It provides a way to stop and resume execution of all tasks in a cgroup by writing in the cgroup filesystem. This is the basic mechanism which should do the right thing for user space task in a simple scenario. It's important to note that freezing can be incomplete. In that case we return EBUSY. T...
Jul 7, 6:58 pm 2008
Matt Helsley
[PATCH 2/4] Container Freezer: Make refrigerator always avai...
From: Cedric Le Goater <clg@fr.ibm.com> Subject: [PATCH 2/4] Container Freezer: Make refrigerator always available Now that the TIF_FREEZE flag is available in all architectures, extract the refrigerator() and freeze_task() from kernel/power/process.c and make it available to all. The refrigerator() can now be used in a control group subsystem implementing a control group freezer. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Signed-off-by: Matt Helsley <matthltc@us.ibm.com&...
Jul 7, 6:58 pm 2008
Matt Helsley
[PATCH 1/4] Container Freezer: Add TIF_FREEZE flag to all ar...
From: Cedric Le Goater <clg@fr.ibm.com> Subject: [PATCH 1/4] Container Freezer: Add TIF_FREEZE flag to all architectures This patch is the first step in making the refrigerator() available to all architectures, even for those without power management. The purpose of such a change is to be able to use the refrigerator() in a new control group subsystem which will implement a control group freezer. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Signed-off-by: Matt Helsley <ma...
Jul 7, 6:58 pm 2008
Matt Helsley
[PATCH 4/4] Container Freezer: Skip frozen cgroups during po...
From: Cedric Le Goater <clg@fr.ibm.com> Subject: [PATCH 4/4] Container Freezer: Skip frozen cgroups during power management resume When a system is resumed after a suspend, it will also unfreeze frozen cgroups. This patchs modifies the resume sequence to skip the tasks which are part of a frozen control group. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Signed-off-by: Matt Helsley <matthltc@us.ibm.com> Tested-by: Matt Helsley <matthltc@us.ibm.com> --- kernel...
Jul 7, 6:58 pm 2008
Matt Helsley
[PATCH 0/4] Container Freezer: Reuse Suspend Freezer
This patchset reuses the container infrastructure and the swsusp freezer to freeze a group of tasks. The freezer subsystem in the container filesystem defines a file named freezer.state. Writing "FROZEN" to the state file will freeze all tasks in the cgroup. Subsequently writing "RUNNING" will unfreeze the tasks in the cgroup. Reading will return the current state. * Examples of usage : # mkdir /containers/freezer # mount -t cgroup -ofreezer,signal freezer /containers # mkdir /c...
Jul 7, 6:58 pm 2008
Matt Helsley
Re: [PATCH 0/4] Container Freezer: Reuse Suspend Freezer
FYI - This means these patches need Paul's patches introducing write_string(). I can certainly restore the old code for .read and .write, but I was anticipating write_string() making it into various trees first. If that's not necessarily the case please let me know. Cheers, -Matt --
Jul 7, 7:02 pm 2008
Bjorn Helgaas
[patch 1/2] x86 PCI: use dev_printk when possible
Convert printks to use dev_printk(). I converted DBG() to dev_dbg(). This DBG() is from arch/x86/pci/pci.h and requires source-code modification to enable, so dev_dbg() seems roughly equivalent. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: linux-mm/arch/x86/pci/irq.c =================================================================== --- linux-mm.orig/arch/x86/pci/irq.c 2008-07-07 14:09:00.000000000 -0600 +++ linux-mm/arch/x86/pci/irq.c 2008-07-07 16:40:35.000000000 -0600 ...
Jul 7, 6:43 pm 2008
Bjorn Helgaas
[patch 0/2] dev_printk() conversions, v3
These convert some printks to dev_printks. v3 changes: - refresh for newer tree (these were generated against 2.6.26-rc8-mm1) - doesn't include the ACPI and PCI changes already in linux-next - new patch replaces non-device-specific DBG() with pr_debug() and removes DBG() v2 changes: - print "PCI INT A" instead of "PCI INTA#" - in pci_request_region(), print "bar", not "bar + 1" Bjorn -- --
Jul 7, 6:43 pm 2008
Bjorn Helgaas
[patch 2/2] x86 PCI: replace DBG() with pr_debug()
The remaining uses of DBG() are not specific to a device, so I converted them to pr_debug() and removed DBG() from arch/x86/pci/pci.h. DBG() requires source-code modification to enable, so pr_debug(), which requires compilation with "DEBUG" defined, seems roughly equivalent. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: linux-mm/arch/x86/pci/irq.c =================================================================== --- linux-mm.orig/arch/x86/pci/irq.c 2008-07-07 16:40:35.00000...
Jul 7, 6:43 pm 2008
Jesse Barnes
[git pull] PCI fixes
Please pull my for-linus branch: git pull git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git for-linus Tony noticed that a PCI fix he sent me was applied by both a PCI pull and an x86 pull. Unfortunately, the patches in each tree weren't identical and the double application ended up removing some bfsort quirks for Dell machines. Specifically it looks like the one that came in through Ingo & Thomas, a1676072558854b95336c8f7db76b0504e909a0a, modified the end of the list, while the...
Jul 7, 6:34 pm 2008
Hans J. Koch
[PATCH] UIO: Change driver name of uio_pdrv
Hi Greg, I'm just about to use the generic UIO platform device driver in a project. I noticed the driver registers itself simply as "uio". We should choose a more unique name here. The oneliner below goes on top of the other UIO patches you've got in your queue right now. This is not in mainline yet. Thanks, Hans ------------------------- The generic UIO platform device driver should be given a unique driver ID and not just "uio". This is especially important since Magnus Damm announced a s...
Jul 7, 6:23 pm 2008
Mimi Zohar
LTP IMA path
This LTP patch tests the LIM/IMA functionality. Signed-off-by: Mimi Zohar <zohar@us.ibm.com> --- Index: ltp-base-20080531/testcases/kernel/security/integrity/ima/README =================================================================== --- /dev/null +++ ltp-base-20080531/testcases/kernel/security/integrity/ima/README @@ -0,0 +1,50 @@ +These testcases test the Integrity Measurement Architecture(IMA). + +Requirements +------------ +In order for all of the tests in the testsuite to complet...
Jul 7, 6:03 pm 2008
Bartlomiej Zolnierki...
[PATCH 7/10] ide-generic: remove broken PPC_PREP support
PPC_PREP has been depending on BROKEN for some time now. Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> --- include/asm-powerpc/ide.h | 18 ------------------ 1 file changed, 18 deletions(-) Index: b/include/asm-powerpc/ide.h =================================================================== --- a/include/asm-powerpc/ide.h +++ b/include/asm-powerpc/ide.h @@ -32,16 +32,6 @@ static __inline__ int ide_default_irq...
Jul 7, 5:55 pm 2008
Bartlomiej Zolnierki...
[PATCH 8/10] ide-generic: is no longer needed on ppc32
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> --- this patch depends on arch/ppc/ removal (already in linux-next) drivers/ide/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/drivers/ide/Kconfig =================================================================== --- a/drivers/ide/Kconfig +++ b/drivers/ide/Kconfig @@ -314,7 +314,7 @@ comment "IDE chipset support/bugfixes" config IDE_...
Jul 7, 5:56 pm 2008
Bartlomiej Zolnierki...
[PATCH 10/10] ide: remove <asm/ide.h> for some archs
* Remove &lt;linux/irq.h&gt; include from &lt;asm-ia64.h&gt; (&lt;linux/ide.h&gt; includes &lt;linux/interrupt.h&gt; which is enough). * Remove &lt;asm/ide.h&gt; for alpha/blackfin/h8300/ia64/m32r/sh/x86/xtensa (this leaves us with arm/frv/m68k/mips/mn10300/parisc/powerpc/sparc[64]). There should be no functional changes caused by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- include/asm-alpha/ide.h | 20 -------------------- include/asm-blackfin...
Jul 7, 5:58 pm 2008
Bartlomiej Zolnierki...
[PATCH 9/10] ide-generic: remove ide_default_{io_base,irq}()...
Replace ide_default_{io_base,irq}() inlines by legacy_{bases,irqs}[]. There should be no functional changes caused by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- drivers/ide/ide-generic.c | 30 +++++++++++++++++++-- include/asm-alpha/ide.h | 24 ----------------- include/asm-ia64/ide.h | 29 -------------------- include/asm-m32r/ide.h | 50 ------------------------------------ include/asm-mips/mach-g...
Jul 7, 5:57 pm 2008
Bartlomiej Zolnierki...
[PATCH 6/10] ide: define MAX_HWIFS in <linux/ide.h>
* Now that ide_hwif_t instances are allocated dynamically the difference between MAX_HWIFS == 2 and MAX_HWIFS == 10 is ~100 bytes (x86-32) so use MAX_HWIFS == 10 on all archs except these ones that use MAX_HWIFS == 1. * Define MAX_HWIFS in &lt;linux/ide.h&gt; instead of &lt;asm/ide.h&gt;. [ Please note that avr32/cris/v850 have no &lt;asm/ide.h&gt; and alpha/ia64/sh always define CONFIG_IDE_MAX_HWIFS. ] Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- this patch...
Jul 7, 5:54 pm 2008
Bartlomiej Zolnierki...
[PATCH 4/10] ide-generic: remove "no_pci_devices()" quirk fr...
Since the decision to probe for ISA ide2-6 is now left to the user "no_pci_devices()" quirk is no longer needed and may be removed. Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- include/asm-mips/mach-generic/ide.h | 18 ++++-------------- include/asm-x86/ide.h | 18 ++++-------------- 2 files changed, 8 insertions(+), 28 deletions(-) Index: b/include/asm-mips/mach-generic/ide.h =================================================================== --- a...
Jul 7, 5:53 pm 2008
Bartlomiej Zolnierki...
[PATCH 5/10] ide: remove <asm-cris/ide.h>
Remove &lt;asm-cris/arch-v{10,32}/ide.h&gt; and &lt;asm-cris/ide.h&gt;. This has been a broken code for some time now and needs rewrite to match IDE core code / host driver model anyway. Cc: Jesper Nilsson &lt;Jesper.Nilsson@axis.com&gt; Cc: Mikael Starvik &lt;mikael.starvik@axis.com&gt; Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- include/asm-cris/arch-v10/ide.h | 91 ---------------------------------------- include/asm-cris/arch-v32/ide.h | 56 ------------------...
Jul 7, 5:53 pm 2008
Bartlomiej Zolnierki...
[PATCH 3/10] ide-generic: minor fix for mips
Move ide_probe_legacy() call to ide_generic_init() so it fails early if necessary and returns the proper error value (nowadays ide_default_io_base() is used only by ide-generic). Cc: Ralf Baechle &lt;ralf@linux-mips.org&gt; Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- drivers/ide/ide-generic.c | 4 ++++ include/asm-mips/mach-generic/ide.h | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) Index: b/drivers/ide/ide-generic.c =====================...
Jul 7, 5:53 pm 2008
Bartlomiej Zolnierki...
[PATCH 1/10] ide: fix <asm-xtensa/ide.h>
* Add missing &lt;asm-generic/ide_iops.h&gt; include. While at it: * Remove needless ide_default_{irq,io_base}() inlines. Cc: Chris Zankel &lt;chris@zankel.net&gt; Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- include/asm-xtensa/ide.h | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) Index: b/include/asm-xtensa/ide.h =================================================================== --- a/include/asm-xtensa/ide.h +++ b/include/asm-xtensa/...
Jul 7, 5:52 pm 2008
Bartlomiej Zolnierki...
[PATCH 2/10] ide-generic: fix ide_default_io_base() for m32r
Fix ide_default_io_base() to match ide_default_irq(). Cc: Hirokazu Takata &lt;takata@linux-m32r.org&gt; Signed-off-by: Bartlomiej Zolnierkiewicz &lt;bzolnier@gmail.com&gt; --- include/asm-m32r/ide.h | 8 ++++++++ 1 file changed, 8 insertions(+) Index: b/include/asm-m32r/ide.h =================================================================== --- a/include/asm-m32r/ide.h +++ b/include/asm-m32r/ide.h @@ -52,12 +52,20 @@ static __inline__ int ide_default_irq(un static __inline__ unsigned l...
Jul 7, 5:52 pm 2008
Bartlomiej Zolnierki...
[PATCH 0/10] ide: scale down <asm/ide.h>
Hi, This time bunch of fixups/cleanups which allow us to remove &lt;asm/ide.h&gt; for: - alpha - blackfin - cris - h8300 - ia64 - m32r - sh - x86 - xtensa Archs that need more work for &lt;asm/ide.h&gt; removal: - arm - frv - m68k - mips - mn10300 - parisc - powerpc - sparc[64] ...so it looks like we are halfway down the road. diffstat: drivers/ide/Kconfig | 2 drivers/ide/ide-generic.c | 34 ++++++++++++- include/asm-alpha/ide.h ...
Jul 7, 5:52 pm 2008
Mimi Zohar
[PATCH 5/5] integrity: IMA as an integrity service provider
This is a re-release of Integrity Measurement Architecture(IMA) as an independent Linunx Integrity Module(LIM) service provider. This version addresses a number of issues discussed on LKML, including: - Added Documentation/ABI/testing/ima_policy which describes loading the IMA measurement policy. - Added policy support for magic numbers and removed them from skip_measurement(). - Added policy support for LSM obj_type. - Replaced using .i_mtime to detect when a file has been modified with ....
Jul 7, 5:57 pm 2008
Mimi Zohar
[PATCH 4/5] integrity: Linux Integrity Module(LIM)
This patch is a redesign of the integrity framework, which addresses a number of issues, including - generalizing the measurement API beyond just inode measurements. - separation of the measurement into distinct collection, appraisal, and commitment phases, for greater flexibility. Extended Verification Module(EVM) and the Integrity Measurement Architecture(IMA) were originally implemented as an LSM module. Based on discussions on the LSM mailing list, a decision was made that the LSM ho...
Jul 7, 5:57 pm 2008
Mimi Zohar
[PATCH 3/5] integrity: special fs magic
- Move special fs magic number definitions to magic.h - Add magic.h include Signed-off-by: Mimi Zohar &lt;zohar@us.ibm.com&gt; --- Index: linux-2.6.26-rc9-git1/mm/shmem.c =================================================================== --- linux-2.6.26-rc9-git1.orig/mm/shmem.c +++ linux-2.6.26-rc9-git1/mm/shmem.c @@ -50,14 +50,12 @@ #include &lt;linux/migrate.h&gt; #include &lt;linux/highmem.h&gt; #include &lt;linux/seq_file.h&gt; +#include &lt;linux/magic.h&gt; #include &lt;asm/uac...
Jul 7, 5:56 pm 2008
Mimi Zohar
[PATCH 2/5] integrity: TPM internel kernel interface
Resubmitting integrity-tpm-internal-kernel-interface.patch, which was previously Signed-off-by Kylene Hall. Updated per feedback. Adds the following support: - make internal kernel interface to transmit TPM commands global - adds reading a pcr value - adds extending a pcr value - adds lookup the tpm_chip for given chip number and type Signed-off-by: Debora Velarde &lt;debora@linux.vnet.ibm.com&gt; --- Index: linux-2.6.26-rc9-git1/drivers/char/tpm/tpm.c =======================================...
Jul 7, 5:56 pm 2008
Mimi Zohar
[PATCH 1/5] integrity: TPM cleanup
This patchset contains 5 patches. Patch 1/5 integrity: TPM cleanup (scripts/Lindent and other) Patch 2/5 integrity: TPM internal kernel interface Patch 3/5 integrity: special fs magic Patch 4/5 integrity: Linux Integrity Module(LIM) Patch 5/5 integrity: IMA as an integrity service provider Signed-off-by: Debora Velarde &lt;dvelarde@us.ibm.com&gt; Signed-off-by: Mimi Zohar &lt;zohar@us.ibm.com&gt; --- Index: linux-2.6.26-rc9-git1/drivers/char/tpm/tpm.c ======================================...
Jul 7, 5:56 pm 2008
Mimi Zohar
[PATCH 0/5] integrity
This patchset contains 5 patches. Patch 1/5 integrity: TPM cleanup (scripts/Lindent and other) Patch 2/5 integrity: TPM internal kernel interface Patch 3/5 integrity: special fs magic Patch 4/5 integrity: Linux Integrity Module(LIM) Patch 5/5 integrity: IMA as an integrity service provider Attached to this patchset thread is an IMA LTP patch, which tests adding file integrity measurements, replacing the default integrity measurement policy with an LSM constr...
Jul 7, 5:56 pm 2008
Andres Salomon
[PATCH 2/2] mmc: have mmc_align_data_size use ALIGN() macro
No sense manually doing the alignment dance, there's a macro for that. Once the optimal alignment stuff is added, this could probably turn into something like this (in core.h): static inline u32 mmc_align_data_size(struct mmc_card *card, u32 sz) { return ALIGN(sz, card-&gt;align_sz); } Signed-off-by: Andres Salomon &lt;dilinger@debian.org&gt; --- drivers/mmc/core/core.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/...
Jul 7, 5:26 pm 2008
Andres Salomon
[PATCH 1/2] mmc: OLPC: update vdd/powerup quirk comment
Hi Pierre, Here are patches for two minor things that I had noticed while poking around your -next branch. Thanks for cleaning up that merge mess! This comment update got lost in the great floo^Wmerge. As Pierre pointed out, no one knows what 'CaFe' is. Signed-off-by: Andres Salomon &lt;dilinger@debian.org&gt; --- drivers/mmc/host/sdhci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index cc11e63..267b...
Jul 7, 5:25 pm 2008
Stefan Bauer
rt2500pci: Failed to initialize hw. But works with ancient r...
Hi, I'm not able to load rt2500pci from 2.6.26-rc9 under Gentoo. This card currently works under Debian Etch with 2.6.18 kernel and rt2500-source 1.1.0+cvs20060620-3. lspci -vvvv Network controller: RaLink RT2500 802.11g Cardbus/mini-PCI (rev 01) Subsystem: RaLink Unknown device 2560 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow &gt;TAbort- &lt;TAbort- &lt;MAbort- &gt;SERR- &lt;PERR- Late...
Jul 7, 4:53 pm 2008
Stefan Bauer
Re: [Rt2400-devel] rt2500pci: Failed to initialize hw. But w...
Same problem with 2.6.24.7, I'll skip 2.6.25. Regards, Stefan --
Jul 7, 5:27 pm 2008
Ivo van Doorn
Re: [Rt2400-devel] rt2500pci: Failed to initialize hw. But w...
What happens when you compile ecb and arc4 into the kernel instead as seperate modules? Ivo --
Jul 7, 5:44 pm 2008
Stefan Bauer
Re: [Rt2400-devel] rt2500pci: Failed to initialize hw. But w...
Then it works. Thanks a lot. The new .config can be found here: &lt;http://www-user.tu-chemnitz.de/~stefb/rt2500pci/config_works&gt; But I think it's a bug, nevertheless. If there are any patches to test I'll give them a try. Regards, Stefan --
Jul 7, 6:01 pm 2008
Ivo van Doorn
Re: [Rt2400-devel] rt2500pci: Failed to initialize hw. But w...
Check if the arc4 and ecb modules are loaded before loading mac80211 &amp; rt2500pci. Ivo --
Jul 7, 5:08 pm 2008
previous daytodaynext day
July 6, 2008July 7, 2008July 8, 2008