All of lore.kernel.org
 help / color / mirror / Atom feed
* overlayfs vs. fscrypt
@ 2019-03-13 12:31 ` Richard Weinberger
  0 siblings, 0 replies; 197+ messages in thread
From: Richard Weinberger @ 2019-03-13 12:31 UTC (permalink / raw)
  To: linux-fsdevel; +Cc: linux-fscrypt, linux-unionfs, linux-kernel

Hi!

overlayfs and fscrypt are not friends.
Currently it is not possible to use a fscrypt encrypted directory as upper 
directory with overlayfs.
The reason for that is, fscrypt implements ->d_revalidate().

>From fscrypt's point of view having ->d_revalidate() makes sense because it 
wants to hide/show encrypted filenames if someone loads or unlinks a key.

On the other hand, overlayfs makes sure that the upper directory cannot
change beneath it. Therefore it checks whether the upper directory is a remote 
filesystem by checking for ->d_revalidate() and refuses to mount if so.

In my little embedded Linux world it is common to use both UBIFS and 
overlayfs. Now with UBIFS being encrypted using fscrypt, overlayfs is a 
problem.
My current hack is not using fscrypt_d_ops in UBIFS. This works because on a 
typical embedded target you setup your crypto keys exactly once, right before 
you mount overlayfs in an initramfs.

But I'm sure this problem will hit sooner or later users of ext4 and f2fs too.
Therefore I'd like to discuss possible solutions.

So far I see two options:

1. Get rid of ->d_revalidate() in fscrypt.
Maybe we find a way to return a dentry via ->lookup() which is not cached at 
all and therefore no ->d_revalidate() is needed. If unreadable and encrypted
filename lookups are slow, so what?
AFAIU this approach is impossible in the current dcache design since it is not 
allowed to have more than one dentry to the same file.

2. Teach overlayfs to deal with a upper that has ->d_revalidate().
Given the complexity of overlayfs I'm not sure how feasible this is.
But I'm no overlayfs expert, maybe I miss something.

What else could we do?

Thanks,
//richard

^ permalink raw reply	[flat|nested] 197+ messages in thread
* [PATCH v5 00/22] RISC-V SBI v2.0 PMU improvements and Perf sampling in KVM guest
@ 2024-04-03  8:04 Atish Patra
  2024-04-03  8:04 ` [PATCH v5 04/22] drivers/perf: riscv: Use BIT macro for shifting operations Atish Patra
  0 siblings, 1 reply; 197+ messages in thread
From: Atish Patra @ 2024-04-03  8:04 UTC (permalink / raw)
  To: linux-kernel
  Cc: Atish Patra, Ajay Kaher, Alexandre Ghiti, Alexey Makhalov,
	Andrew Jones, Anup Patel, Conor Dooley, Juergen Gross, kvm-riscv,
	kvm, linux-kselftest, linux-riscv, Mark Rutland, Palmer Dabbelt,
	Paolo Bonzini, Paul Walmsley, Shuah Khan, virtualization,
	VMware PV-Drivers Reviewers, Will Deacon, x86

This series implements SBI PMU improvements done in SBI v2.0[1] i.e. PMU snapshot
and fw_read_hi() functions. 

SBI v2.0 introduced PMU snapshot feature which allows the SBI implementation
to provide counter information (i.e. values/overflow status) via a shared
memory between the SBI implementation and supervisor OS. This allows to minimize
the number of traps in when perf being used inside a kvm guest as it relies on
SBI PMU + trap/emulation of the counters. 

The current set of ratified RISC-V specification also doesn't allow scountovf
to be trap/emulated by the hypervisor. The SBI PMU snapshot bridges the gap
in ISA as well and enables perf sampling in the guest. However, LCOFI in the
guest only works via IRQ filtering in AIA specification. That's why, AIA
has to be enabled in the hardware (at least the Ssaia extension) in order to
use the sampling support in the perf. 

Here are the patch wise implementation details.

PATCH 1,4,7,8,9,10,11,15 : Generic cleanups/improvements.
PATCH 2,3,14 : FW_READ_HI function implementation
PATCH 5-6: Add PMU snapshot feature in sbi pmu driver
PATCH 12-13: KVM implementation for snapshot and sampling in kvm guests
PATCH 16-17: Generic improvements for kvm selftests 
PATCH 18-22: KVM selftests for SBI PMU extension

The series is based on v6.9-rc1 and is available at:

https://github.com/atishp04/linux/tree/kvm_pmu_snapshot_v5

The kvmtool patch is also available at:
https://github.com/atishp04/kvmtool/tree/sscofpmf

It also requires Ssaia ISA extension to be present in the hardware in order to
get perf sampling support in the guest. In Qemu virt machine, it can be done
by the following config.

```
-cpu rv64,sscofpmf=true,x-ssaia=true
```

There is no other dependencies on AIA apart from that. Thus, Ssaia must be disabled
for the guest if AIA patches are not available. Here is the example command.

```
./lkvm-static run -m 256 -c2 --console serial -p "console=ttyS0 earlycon" --disable-ssaia -k ./Image --debug 
```

The series has been tested only in Qemu.
Here is the snippet of the perf running inside a kvm guest.

===================================================
$ perf record -e cycles -e instructions perf bench sched messaging -g 5
...
$ Running 'sched/messaging' benchmark:
...
[   45.928723] perf_duration_warn: 2 callbacks suppressed
[   45.929000] perf: interrupt took too long (484426 > 483186), lowering kernel.perf_event_max_sample_rate to 250
$ 20 sender and receiver processes per group
$ 5 groups == 200 processes run

     Total time: 14.220 [sec]
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.117 MB perf.data (1942 samples) ]
$ perf report --stdio
$ To display the perf.data header info, please use --header/--header-only optio>
$
$
$ Total Lost Samples: 0
$
$ Samples: 943  of event 'cycles'
$ Event count (approx.): 5128976844
$
$ Overhead  Command          Shared Object                Symbol               >
$ ........  ...............  ...........................  .....................>
$
     7.59%  sched-messaging  [kernel.kallsyms]            [k] memcpy
     5.48%  sched-messaging  [kernel.kallsyms]            [k] percpu_counter_ad>
     5.24%  sched-messaging  [kernel.kallsyms]            [k] __sbi_rfence_v02_>
     4.00%  sched-messaging  [kernel.kallsyms]            [k] _raw_spin_unlock_>
     3.79%  sched-messaging  [kernel.kallsyms]            [k] set_pte_range
     3.72%  sched-messaging  [kernel.kallsyms]            [k] next_uptodate_fol>
     3.46%  sched-messaging  [kernel.kallsyms]            [k] filemap_map_pages
     3.31%  sched-messaging  [kernel.kallsyms]            [k] handle_mm_fault
     3.20%  sched-messaging  [kernel.kallsyms]            [k] finish_task_switc>
     3.16%  sched-messaging  [kernel.kallsyms]            [k] clear_page
     3.03%  sched-messaging  [kernel.kallsyms]            [k] mtree_range_walk
     2.42%  sched-messaging  [kernel.kallsyms]            [k] flush_icache_pte

===================================================

[1] https://github.com/riscv-non-isa/riscv-sbi-doc

Changes from v4->v5:
1. Moved sbi related definitions to its own header file from processor.h
2. Added few helper functions for selftests.
3. Improved firmware counter read and RV32 start/stop functions.
4. Converted all the shifting operations to use BIT macro
5. Addressed all other comments on v4.  

Changes from v3->v4:
1. Added selftests.
2. Fixed an issue to clear the interrupt pending bits.
3. Fixed the counter index in snapshot memory start function.

Changes from v2->v3:
1. Fixed a patchwork warning on patch6.
2. Fixed a comment formatting & nit fix in PATCH 3 & 5.
3. Moved the hvien update and sscofpmf enabling to PATCH 9 from PATCH 8.

Changes from v1->v2:
1. Fixed warning/errors from patchwork CI.
2. Rebased on top of kvm-next.
3. Added Acked-by tags.

Changes from RFC->v1:
1. Addressed all the comments on RFC series.
2. Removed PATCH2 and merged into later patches.
3. Added 2 more patches for minor fixes.
4. Fixed KVM boot issue without Ssaia and made sscofpmf in guest dependent on
   Ssaia in the host.

Atish Patra (22):
RISC-V: Fix the typo in Scountovf CSR name
RISC-V: Add FIRMWARE_READ_HI definition
drivers/perf: riscv: Read upper bits of a firmware counter
drivers/perf: riscv: Use BIT macro for shifting operations
RISC-V: Add SBI PMU snapshot definitions
drivers/perf: riscv: Implement SBI PMU snapshot function
drivers/perf: riscv: Fix counter mask iteration for RV32
RISC-V: KVM: Fix the initial sample period value
RISC-V: KVM: Rename the SBI_STA_SHMEM_DISABLE to a generic name
RISC-V: KVM: No need to update the counter value during reset
RISC-V: KVM: No need to exit to the user space if perf event failed
RISC-V: KVM: Implement SBI PMU Snapshot feature
RISC-V: KVM: Add perf sampling support for guests
RISC-V: KVM: Support 64 bit firmware counters on RV32
RISC-V: KVM: Improve firmware counter read function
KVM: riscv: selftests: Move sbi definitions to its own header file
KVM: riscv: selftests: Add helper functions for extension checks
KVM: riscv: selftests: Add Sscofpmf to get-reg-list test
KVM: riscv: selftests: Add SBI PMU extension definitions
KVM: riscv: selftests: Add SBI PMU selftest
KVM: riscv: selftests: Add a test for PMU snapshot functionality
KVM: riscv: selftests: Add a test for counter overflow

arch/riscv/include/asm/csr.h                  |   5 +-
arch/riscv/include/asm/kvm_vcpu_pmu.h         |  16 +-
arch/riscv/include/asm/sbi.h                  |  34 +-
arch/riscv/include/uapi/asm/kvm.h             |   1 +
arch/riscv/kernel/paravirt.c                  |   6 +-
arch/riscv/kvm/aia.c                          |   5 +
arch/riscv/kvm/vcpu.c                         |  15 +-
arch/riscv/kvm/vcpu_onereg.c                  |   5 +
arch/riscv/kvm/vcpu_pmu.c                     | 260 +++++++-
arch/riscv/kvm/vcpu_sbi_pmu.c                 |  17 +-
arch/riscv/kvm/vcpu_sbi_sta.c                 |   4 +-
drivers/perf/riscv_pmu.c                      |   1 +
drivers/perf/riscv_pmu_sbi.c                  | 264 +++++++-
include/linux/perf/riscv_pmu.h                |   6 +
tools/testing/selftests/kvm/Makefile          |   1 +
.../selftests/kvm/include/riscv/processor.h   |  49 +-
.../testing/selftests/kvm/include/riscv/sbi.h | 141 +++++
.../selftests/kvm/include/riscv/ucall.h       |   1 +
.../selftests/kvm/lib/riscv/processor.c       |  12 +
.../testing/selftests/kvm/riscv/arch_timer.c  |   2 +-
.../selftests/kvm/riscv/get-reg-list.c        |   4 +
.../selftests/kvm/riscv/sbi_pmu_test.c        | 581 ++++++++++++++++++
tools/testing/selftests/kvm/steal_time.c      |   4 +-
23 files changed, 1322 insertions(+), 112 deletions(-)
create mode 100644 tools/testing/selftests/kvm/include/riscv/sbi.h
create mode 100644 tools/testing/selftests/kvm/riscv/sbi_pmu_test.c

--
2.34.1


^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2024-02-14 20:51 Igor Andreev
  0 siblings, 0 replies; 197+ messages in thread
From: Igor Andreev @ 2024-02-14 20:51 UTC (permalink / raw)
  To: linux-sh



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2024-01-15  8:19 limin yin
  0 siblings, 0 replies; 197+ messages in thread
From: limin yin @ 2024-01-15  8:19 UTC (permalink / raw)
  To: bpf



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2023-12-13 17:30 Hank Barta
  0 siblings, 0 replies; 197+ messages in thread
From: Hank Barta @ 2023-12-13 17:30 UTC (permalink / raw)
  To: linux-gpio

unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2023-11-25 16:50 Emmanuel ALLAUD
  0 siblings, 0 replies; 197+ messages in thread
From: Emmanuel ALLAUD @ 2023-11-25 16:50 UTC (permalink / raw)
  To: linux-media



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2023-06-20  6:46 Yao Yongxian
  0 siblings, 0 replies; 197+ messages in thread
From: Yao Yongxian @ 2023-06-20  6:46 UTC (permalink / raw)
  To: xenomai


unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread
* [XEN][PATCH v6 00/19] dynamic node programming using overlay dtbo
@ 2023-05-02 23:36 Vikram Garhwal
  2023-05-02 23:36 ` [XEN][PATCH v6 08/19] xen/device-tree: Add device_tree_find_node_by_path() to find nodes in device tree Vikram Garhwal
  0 siblings, 1 reply; 197+ messages in thread
From: Vikram Garhwal @ 2023-05-02 23:36 UTC (permalink / raw)
  To: xen-devel
  Cc: sstabellini, vikram.garhwal, michal.orzel, Julien Grall,
	Bertrand Marquis, Volodymyr Babchuk, Andrew Cooper,
	George Dunlap, Jan Beulich, Wei Liu, Paul Durrant,
	Roger Pau Monné,
	Rahul Singh, Anthony PERARD, Juergen Gross

Hi,
This patch series is for introducing dynamic programming i.e. add/remove the
devices during run time. Using "xl dt_overlay" a device can be added/removed
with dtbo.

For adding a node using dynamic programming:
    1. flatten device tree overlay node will be added to a fdt
    2. Updated fdt will be unflattened to a new dt_host_new
    3. Extract the newly added node information from dt_host_new
    4. Add the added node under correct parent in original dt_host.
    3. Map/Permit interrupt and iomem region as required.

For removing a node:
    1. Find the node with given path.
    2. Check if the node is used by any of domus. Removes the node only when
        it's not used by any domain.
    3. Removes IRQ permissions and MMIO access.
    5. Find the node in dt_host and delete the device node entry from dt_host.
    6. Free the overlay_tracker entry which means free dt_host_new also(created
in adding node step).

The main purpose of this series to address first part of the dynamic programming
i.e. making Xen aware of new device tree node which means updating the dt_host
with overlay node information. Here we are adding/removing node from dt_host,
and checking/set IOMMU and IRQ permission but never mapping them to any domain.
Right now, mapping/Un-mapping will happen only when a new domU is
created/destroyed using "xl create".

To map IOREQ and IOMMU during runtime, there will be another small series after
this one where we will do the actual IOMMU and IRQ mapping to a running domain
and will call unmap_mmio_regions() to remove the mapping.

Change Log:
 v5 -> v6:
    Add separate patch for memory allocation failure in __unflatten_device_tree().
    Move __unflatten_device_tree() function type changes to single patch.
    Add error propagation for failures in unflatten_dt_node.
    Change CONFIG_OVERLAY_DTB status to "ARM: Tech Preview".
    xen/smmu: Add remove_device callback for smmu_iommu ops:
        Added check to see if device is currently used.
    common/device_tree: Add rwlock for dt_host:
        Addressed feedback from Henry to rearrange code.
    xen/arm: Implement device tree node removal functionalities:
        Changed file name to dash format.
        Addressed Michal's comments.
    Rectified formatting related errors pointed by Michal.

 v4 -> v5:
    Split patch 01/16 to two patches. One with function type changes and another
        with changes inside unflatten_device_tree().
    Change dt_overlay xl command to dt-overlay.
    Protect overlay functionality with CONFIG(arm).
    Fix rwlock issues.
    Move include "device_tree.h" to c file where arch_cpu_init() is called and
        forward declare dt_device_node. This was done to avoid circular deps b/w
        device_tree.h and rwlock.h
    Address Michal's comment on coding style.

 v3 -> v4:
    Add support for adding node's children.
    Add rwlock to dt_host functions.
    Corrected fdt size issue when applying overlay into it.
    Add memory allocation fail handling for unflatten_device_tree().
    Changed xl overlay to xl dt_overlay.
    Correct commit messages.
    Addressed code issue from v3 review.

 v2 -> v3:
    Moved overlay functionalities to dt_overlay.c file.
    Renamed XEN_SYSCTL_overlay to XEN_SYSCTL_dt_overlay.
    Add dt_* prefix to overlay_add/remove_nodes.
    Added dtdevs_lock to protect iommu_add_dt_device().
    For iommu, moved spin_lock to caller.
    Address code issue from v2 review.

 v1 -> v2:
    Add support for multiple node addition/removal using dtbo.
    Replaced fpga-add and fpga-remove with one hypercall overlay_op.
    Moved common domain_build.c function to device.c
    Add OVERLAY_DTB configuration.
    Renamed overlay_get_target() to fdt_overlay_get_target().
    Split remove_device patch into two patches.
    Moved overlay_add/remove code to sysctl and changed it from domctl to sysctl.
    Added all overlay code under CONFIG_OVERLAY_DTB
    Renamed all tool domains fpga function to overlay
    Addressed code issues from v1 review.

Regards,
Vikram

Vikram Garhwal (19):
  xen/arm/device: Remove __init from function type
  common/device_tree: handle memory allocation failure in
    __unflatten_device_tree()
  common/device_tree: change __unflatten_device_tree() type
  common/device_tree.c: unflatten_device_tree() propagate errors
  xen/arm: Add CONFIG_OVERLAY_DTB
  libfdt: Keep fdt functions after init for CONFIG_OVERLAY_DTB.
  libfdt: overlay: change overlay_get_target()
  xen/device-tree: Add device_tree_find_node_by_path() to find nodes in
    device tree
  xen/iommu: Move spin_lock from iommu_dt_device_is_assigned to caller
  xen/iommu: protect iommu_add_dt_device() with dtdevs_lock
  xen/iommu: Introduce iommu_remove_dt_device()
  xen/smmu: Add remove_device callback for smmu_iommu ops
  asm/smp.h: Fix circular dependency for device_tree.h and rwlock.h
  common/device_tree: Add rwlock for dt_host
  xen/arm: Implement device tree node removal functionalities
  xen/arm: Implement device tree node addition functionalities
  tools/libs/ctrl: Implement new xc interfaces for dt overlay
  tools/libs/light: Implement new libxl functions for device tree
    overlay ops
  tools/xl: Add new xl command overlay for device tree overlay support

 SUPPORT.md                              |   6 +
 tools/include/libxl.h                   |  11 +
 tools/include/xenctrl.h                 |   5 +
 tools/libs/ctrl/Makefile.common         |   1 +
 tools/libs/ctrl/xc_dt_overlay.c         |  48 ++
 tools/libs/light/Makefile               |   3 +
 tools/libs/light/libxl_dt_overlay.c     |  71 ++
 tools/xl/xl.h                           |   1 +
 tools/xl/xl_cmdtable.c                  |   6 +
 tools/xl/xl_vmcontrol.c                 |  52 ++
 xen/arch/arm/Kconfig                    |   5 +
 xen/arch/arm/device.c                   | 144 ++++
 xen/arch/arm/domain_build.c             | 142 ----
 xen/arch/arm/include/asm/domain_build.h |   2 -
 xen/arch/arm/include/asm/setup.h        |   6 +
 xen/arch/arm/include/asm/smp.h          |   3 +-
 xen/arch/arm/smpboot.c                  |   1 +
 xen/arch/arm/sysctl.c                   |  16 +-
 xen/common/Makefile                     |   1 +
 xen/common/device_tree.c                |  50 +-
 xen/common/dt-overlay.c                 | 929 ++++++++++++++++++++++++
 xen/common/libfdt/Makefile              |   4 +
 xen/common/libfdt/fdt_overlay.c         |  29 +-
 xen/common/libfdt/version.lds           |   1 +
 xen/drivers/passthrough/arm/smmu.c      |  58 ++
 xen/drivers/passthrough/device_tree.c   |  87 ++-
 xen/include/public/sysctl.h             |  23 +
 xen/include/xen/device_tree.h           |  28 +-
 xen/include/xen/dt-overlay.h            |  58 ++
 xen/include/xen/iommu.h                 |   3 +
 xen/include/xen/libfdt/libfdt.h         |  18 +
 31 files changed, 1623 insertions(+), 189 deletions(-)
 create mode 100644 tools/libs/ctrl/xc_dt_overlay.c
 create mode 100644 tools/libs/light/libxl_dt_overlay.c
 create mode 100644 xen/common/dt-overlay.c
 create mode 100644 xen/include/xen/dt-overlay.h

-- 
2.17.1



^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2023-03-11  3:39 Aviral Gupta
  0 siblings, 0 replies; 197+ messages in thread
From: Aviral Gupta @ 2023-03-11  3:39 UTC (permalink / raw)
  To: Linux-kernel-mentees


[-- Attachment #1.1: Type: text/plain, Size: 54 bytes --]

I don't  wish to receive  any  further  communication

[-- Attachment #1.2: Type: text/html, Size: 87 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2022-12-01  1:38 Chan Kim
  0 siblings, 0 replies; 197+ messages in thread
From: Chan Kim @ 2022-12-01  1:38 UTC (permalink / raw)
  To: u-boot

 


^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2022-10-13 10:14 Benjamin Demartin
  2022-10-31 16:21 ` unsubscribe Thomas Monjalon
  0 siblings, 1 reply; 197+ messages in thread
From: Benjamin Demartin @ 2022-10-13 10:14 UTC (permalink / raw)
  To: dev

[-- Attachment #1: Type: text/plain, Size: 58 bytes --]

Hello I would like to unsubscribe but I don’t know how


[-- Attachment #2: Type: text/html, Size: 1285 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2022-06-29 21:00 Alvin Šipraga
  2022-06-29 21:10 ` unsubscribe Alvin Šipraga
  0 siblings, 1 reply; 197+ messages in thread
From: Alvin Šipraga @ 2022-06-29 21:00 UTC (permalink / raw)
  To: iwd



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2021-11-02  6:37 Jacky Wang (王亮)-浪潮数据
  0 siblings, 0 replies; 197+ messages in thread
From: Jacky Wang (王亮)-浪潮数据 @ 2021-11-02  6:37 UTC (permalink / raw)
  To: nvdimm

[-- Attachment #1: Type: text/plain, Size: 19 bytes --]

unsubscribe nvdimm

[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 3627 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2021-09-30 21:48 Shoaib Rao
  2021-09-30 21:49 ` unsubscribe Shoaib Rao
  0 siblings, 1 reply; 197+ messages in thread
From: Shoaib Rao @ 2021-09-30 21:48 UTC (permalink / raw)
  To: MPTCP Upstream

unsubscribe


^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2020-12-29  8:54 Shawn Landden
  0 siblings, 0 replies; 197+ messages in thread
From: Shawn Landden @ 2020-12-29  8:54 UTC (permalink / raw)
  To: linuxppc-dev



-- 
Shawn Landden


^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2020-12-21  7:28 Shawn Landden
  0 siblings, 0 replies; 197+ messages in thread
From: Shawn Landden @ 2020-12-21  7:28 UTC (permalink / raw)
  To: linuxppc-dev



-- 
Shawn Landden


^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2020-10-07 15:34 Thompson, Kent
  0 siblings, 0 replies; 197+ messages in thread
From: Thompson, Kent @ 2020-10-07 15:34 UTC (permalink / raw)
  To: openbmc

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: Type: text/html, Size: 1447 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
[parent not found: <CAGHfRMD3FP0_dAEmOgnkgyodXodWq2YcjaiOzvBwG=J1nqq-8g@mail.gmail.com>]
* Unsubscribe
@ 2019-05-29 15:32 ID - David Torres
  0 siblings, 0 replies; 197+ messages in thread
From: ID - David Torres @ 2019-05-29 15:32 UTC (permalink / raw)
  To: meta-freescale Mailing List

[-- Attachment #1: Type: text/plain, Size: 478 bytes --]

Unsubscribe

De: meta-freescale-bounces@yoctoproject.org <meta-freescale-bounces@yoctoproject.org> En nombre de Vahid Gharaee
Enviado el: sábado, 25 de mayo de 2019 8:01
Para: meta-freescale Mailing List <meta-freescale@yoctoproject.org>
Asunto: [meta-freescale] qt5

Dear all,

How could I add qt5 support in fsl-community-bsp
I added the meta-qt5 but there is no image to bitbake the rootfs.
multimedia image does not include qt5.

Thank you in advanced
Vahid

[-- Attachment #2: Type: text/html, Size: 3088 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2019-03-07 14:15 Punky
  0 siblings, 0 replies; 197+ messages in thread
From: Punky @ 2019-03-07 14:15 UTC (permalink / raw)
  To: openembedded-devel

-- 
-- 

Regards,
Kim-man "Punky" Tse

* Open Source Embedded Solutions and Systems
  - Voyage Linux (http://linux.voyage.hk)
  - Voyage MPD   (http://linux.voyage.hk/voyage-mpd)
  - Voyage MuBox (http://mubox.voyage.hk)
* Voyage Store   (http://store.voyage.hk)


^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2019-03-07 14:13 Punky
  0 siblings, 0 replies; 197+ messages in thread
From: Punky @ 2019-03-07 14:13 UTC (permalink / raw)
  To: openembedded-devel

-- 
-- 

Regards,
Kim-man "Punky" Tse

* Open Source Embedded Solutions and Systems
  - Voyage Linux (http://linux.voyage.hk)
  - Voyage MPD   (http://linux.voyage.hk/voyage-mpd)
  - Voyage MuBox (http://mubox.voyage.hk)
* Voyage Store   (http://store.voyage.hk)


^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2018-05-14 21:14 Eric Brown
  0 siblings, 0 replies; 197+ messages in thread
From: Eric Brown @ 2018-05-14 21:14 UTC (permalink / raw)
  To: selinux

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #2: Type: text/html, Size: 23 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
[parent not found: <CGME20180128235454epcms1p6f3b7aa47ba9c5035f9b317421c09a46a@epcms1p6>]
* unsubscribe
@ 2017-06-20  7:57 Gary Thomas
  0 siblings, 0 replies; 197+ messages in thread
From: Gary Thomas @ 2017-06-20  7:57 UTC (permalink / raw)
  To: linuxppc-dev-request; +Cc: linuxppc-dev

Sadly, after >20 years

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2017-01-19 18:31 Brad Litterell
  0 siblings, 0 replies; 197+ messages in thread
From: Brad Litterell @ 2017-01-19 18:31 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 13 bytes --]

unsubscribe

[-- Attachment #2: Type: text/html, Size: 2509 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
[parent not found: <CGME20161205003536epcms1p4c6ce52ccda8bbc5da6eb99d3de8e12a3@epcms1p4>]
* unsubscribe
@ 2016-10-25 18:30 cybin
  0 siblings, 0 replies; 197+ messages in thread
From: cybin @ 2016-10-25 18:30 UTC (permalink / raw)
  To: PowerPC email list

unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2016-10-05 12:53 고영준
  0 siblings, 0 replies; 197+ messages in thread
From: 고영준 @ 2016-10-05 12:53 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe
 
?????ohojang?? ???
????? ??????
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20161005/31223606/attachment.html 

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2016-08-16  6:44 kuangjiou
  0 siblings, 0 replies; 197+ messages in thread
From: kuangjiou @ 2016-08-16  6:44 UTC (permalink / raw)
  To: Selinux

[-- Attachment #1: Type: text/plain, Size: 13 bytes --]

unsubscribe

[-- Attachment #2: Type: text/html, Size: 1920 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2016-04-18 23:21 cybin
  0 siblings, 0 replies; 197+ messages in thread
From: cybin @ 2016-04-18 23:21 UTC (permalink / raw)
  To: Linuxppc-dev



^ permalink raw reply	[flat|nested] 197+ messages in thread
[parent not found: <CAOLmke5wWrewgemRGCfgMY7vnqsnAQcZHDteVWkLHWOj_kOYbA@mail.gmail.com>]
* unsubscribe
@ 2014-08-11 13:19 Deepak Pandian
  0 siblings, 0 replies; 197+ messages in thread
From: Deepak Pandian @ 2014-08-11 13:19 UTC (permalink / raw)
  To: linuxppc-dev



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2014-02-01  6:27 animan9
  0 siblings, 0 replies; 197+ messages in thread
From: animan9 @ 2014-02-01  6:27 UTC (permalink / raw)
  To: alsa-devel

unsubscribe






Sent from Windows Mail

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2013-11-22 19:35 Pow, Christopher (SWCOE)
  2013-11-22 19:38 ` unsubscribe Denys Dmytriyenko
  0 siblings, 1 reply; 197+ messages in thread
From: Pow, Christopher (SWCOE) @ 2013-11-22 19:35 UTC (permalink / raw)
  To: meta-ti

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: Type: text/html, Size: 1618 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2013-10-02 15:58 Daniel Kranich
  0 siblings, 0 replies; 197+ messages in thread
From: Daniel Kranich @ 2013-10-02 15:58 UTC (permalink / raw)
  To: kernelnewbies



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2013-09-15 13:52 GMAIL
  0 siblings, 0 replies; 197+ messages in thread
From: GMAIL @ 2013-09-15 13:52 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe

 

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130915/385e6398/attachment.html 

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2013-09-11  8:43 GMAIL
  0 siblings, 0 replies; 197+ messages in thread
From: GMAIL @ 2013-09-11  8:43 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130911/dc13c3c6/attachment.html 

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Mysterious memory corruption bug
@ 2012-05-01 18:53 Bean
  2012-05-01 19:08 ` Vladimir 'φ-coder/phcoder' Serbinenko
  0 siblings, 1 reply; 197+ messages in thread
From: Bean @ 2012-05-01 18:53 UTC (permalink / raw)
  To: The development of GRUB 2

[-- Attachment #1: Type: text/plain, Size: 1475 bytes --]

Hi,

Thanks to Vladimir's memory patch, it's actually quite easy to
reproduce mysterious issue.

First, there are two memory leaks in ip.c.

It allocates the rsm but never frees it. free_rsm frees its content,
but not the pointer itself. You can see it in printmem at ip.c:473
      rsm = grub_malloc (sizeof (*rsm));

Another problem is at ip.c:594:
  return handle_dgram (ret, card, src_hwaddress,
			       hwaddress, proto, &source, &dest,
			       ttl);
here, ret is netbuff. grub_netbuff_alloc get a buffer for both data
and header (data go first), so when it frees the data pointer, the
header goes away as well. But here, the header is allocated separately
so that it's not free using , you can see it from printmem at ip.c:580
      ret = grub_malloc (sizeof (*ret));

Now here's the tricky part, when i fix both problem, it actually when
you call this: (memdisk size is 19,180, just in case it matters).

testspeed /memdisk

So there must be a memory corruption somewhere. (It will not halt if
you skip the the second leak, but you can see the remaining buffer in
printmem).

BTW, you should add a grub_free_fragment call in testspeed to free the
rsm cache, just to make the printmem output a little cleaner.

These are the modules used to generate grub.efi, just in case it's relevant.

/grub-mkimage -d grub-core -o grub.efi -O x86_64-efi chain boot test
fat ntfs part_msdos normal ls echo efinet tftp http efinet reboot
testspeed printmem

-- 
Best wishes
Bean

[-- Attachment #2: test.txt --]
[-- Type: text/plain, Size: 3085 bytes --]

=== modified file 'grub-core/net/ip.c'
--- grub-core/net/ip.c	2012-02-09 22:43:43 +0000
+++ grub-core/net/ip.c	2012-05-01 18:28:59 +0000
@@ -240,7 +240,7 @@
 	FOR_NET_NETWORK_LEVEL_INTERFACES (inf)
 	  if (inf->card == card
 	      && inf->address.type == GRUB_NET_NETWORK_LEVEL_PROTOCOL_DHCP_RECV
-	      && grub_net_hwaddr_cmp (&inf->hwaddress, hwaddress) == 0)
+	      && inf->hwaddress.type == GRUB_NET_LINK_LEVEL_PROTOCOL_ETHERNET)
 	    {
 	      if (udph->chksum)
 		{
@@ -257,18 +257,25 @@
 				    "Expected %x, got %x\n", 
 				    grub_be_to_cpu16 (expected),
 				    grub_be_to_cpu16 (chk));
-		      grub_netbuff_free (nb);
-		      return GRUB_ERR_NONE;
+		      break;
 		    }
 		  udph->chksum = chk;
 		}
 
 	      err = grub_netbuff_pull (nb, sizeof (*udph));
 	      if (err)
-		return err;
-	      grub_net_process_dhcp (nb, inf->card);
-	      grub_netbuff_free (nb);
-	      return GRUB_ERR_NONE;
+		{
+		  grub_netbuff_free (nb);
+		  return err;
+		}
+	      struct grub_net_bootp_packet *dhcp =
+		(struct grub_net_bootp_packet *) nb->data;
+	      if (grub_memcmp(inf->hwaddress.mac, &dhcp->mac_addr,
+			      sizeof(inf->hwaddress.mac)) == 0)
+		{
+		  grub_net_process_dhcp (nb, inf->card);
+		  break;
+		}
 	    }
 	grub_netbuff_free (nb);
 	return GRUB_ERR_NONE;
@@ -344,19 +351,34 @@
     }
   grub_free (rsm->asm_buffer);
   grub_priority_queue_destroy (rsm->pq);
+  grub_free (rsm);
 }
 
 static void
 free_old_fragments (void)
 {
-  struct reassemble *rsm, **prev;
+  struct reassemble *rsm, **prev, *tmp;
   grub_uint64_t limit_time = grub_get_time_ms () - 90000;
 
-  for (prev = &reassembles, rsm = *prev; rsm; prev = &rsm->next, rsm = *prev)
+  for (prev = &reassembles, rsm = *prev; rsm;
+       prev = &rsm->next, rsm = *prev, free_rsm (tmp))
     if (rsm->last_time < limit_time)
       {
 	*prev = rsm->next;
-	free_rsm (rsm);
+	tmp = rsm;	
+      }
+}
+
+void
+grub_free_fragments (void)
+{
+  struct reassemble *rsm, **prev, *tmp;
+
+  for (prev = &reassembles, rsm = *prev; rsm;
+       prev = &rsm->next, rsm = *prev, free_rsm (tmp))
+      {
+	*prev = rsm->next;
+	tmp = rsm;
       }
 }
 
@@ -570,9 +592,14 @@
       dest.type = GRUB_NET_NETWORK_LEVEL_PROTOCOL_IPV4;
       dest.ipv4 = dst;
 
-      return handle_dgram (ret, card, src_hwaddress,
-			   hwaddress, proto, &source, &dest,
-			   ttl);
+      {
+	grub_err_t result;	
+	result = handle_dgram (ret, card, src_hwaddress,
+			       hwaddress, proto, &source, &dest,
+			       ttl);
+	grub_free (ret);
+	return result;
+      }
     }
 }
 

=== modified file 'grub-core/net/tftp.c'
--- grub-core/net/tftp.c	2012-02-12 18:11:06 +0000
+++ grub-core/net/tftp.c	2012-05-01 17:22:35 +0000
@@ -320,9 +320,9 @@
   rrqlen += grub_strlen ("blksize") + 1;
   rrq += grub_strlen ("blksize") + 1;
 
-  grub_strcpy (rrq, "1024");
-  rrqlen += grub_strlen ("1024") + 1;
-  rrq += grub_strlen ("1024") + 1;
+  grub_strcpy (rrq, "4096");
+  rrqlen += grub_strlen ("4096") + 1;
+  rrq += grub_strlen ("4096") + 1;
 
   grub_strcpy (rrq, "tsize");
   rrqlen += grub_strlen ("tsize") + 1;


^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2011-11-14 17:26 Tietz Fabian (AA-DG/PAS-ESD2)
  0 siblings, 0 replies; 197+ messages in thread
From: Tietz Fabian (AA-DG/PAS-ESD2) @ 2011-11-14 17:26 UTC (permalink / raw)
  To: linuxppc-dev



unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2011-02-28  2:25 Tomasz Fujak
  0 siblings, 0 replies; 197+ messages in thread
From: Tomasz Fujak @ 2011-02-28  2:25 UTC (permalink / raw)
  To: linux-arm-kernel

An HTML attachment was scrubbed...
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110228/e9c6dffe/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 201102281125718_QKNMBDIF.gif
Type: image/gif
Size: 9524 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110228/e9c6dffe/attachment.gif>

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2011-01-06 17:42 marduk
  0 siblings, 0 replies; 197+ messages in thread
From: marduk @ 2011-01-06 17:42 UTC (permalink / raw)
  To: kernelnewbies

unsubscribe kernelnewbies

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20110106/4fcfedd9/attachment.html 

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2010-11-03  8:21 Roberto Mantovani
  0 siblings, 0 replies; 197+ messages in thread
From: Roberto Mantovani @ 2010-11-03  8:21 UTC (permalink / raw)
  To: linuxppc-dev



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2010-10-19  8:51 Roberto Mantovani
  0 siblings, 0 replies; 197+ messages in thread
From: Roberto Mantovani @ 2010-10-19  8:51 UTC (permalink / raw)
  To: Linuxppc-dev


-- 
Roberto Mantovani <rmantovani@automazionelogistica.it>
A&L srl - Automazione e Logistica www.automazionelogistica.it
Via Lidice, 20
40139 Bologna
Cap Sociale € 10.000 I.V.
C.F., P.IVA e registro imprese di Bologna N.02296311208

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2010-07-17 11:30 aiolos.cis90
  0 siblings, 0 replies; 197+ messages in thread
From: aiolos.cis90 @ 2010-07-17 11:30 UTC (permalink / raw)
  To: linuxppc-dev

unsubscribe 

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2010-06-23 14:33 Frederic LEGER
  0 siblings, 0 replies; 197+ messages in thread
From: Frederic LEGER @ 2010-06-23 14:33 UTC (permalink / raw)
  To: linuxppc-dev

unsubscribe
 

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-11-27 23:26 Gao Ya'nan
  2009-11-28 17:02 ` unsubscribe Thomas Rinder
  0 siblings, 1 reply; 197+ messages in thread
From: Gao Ya'nan @ 2009-11-27 23:26 UTC (permalink / raw)
  To: linuxppc-dev

unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-02-04 13:48 Bietry, Ray
  0 siblings, 0 replies; 197+ messages in thread
From: Bietry, Ray @ 2009-02-04 13:48 UTC (permalink / raw)
  To: linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 5 bytes --]

 


[-- Attachment #2: Type: text/html, Size: 1096 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-02-04 13:19 ravi.rao
  0 siblings, 0 replies; 197+ messages in thread
From: ravi.rao @ 2009-02-04 13:19 UTC (permalink / raw)
  To: linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 698 bytes --]

Ravishankar Govindarao
RFL Electronics Inc.
E-mail : Ravi.Rao@rflelect.com
Voice: 973.334.3100 Ext. 233
Fax: 973.334.3863
 
CONFIDENTIALITY NOTE
This e-mail, including any attachments, may contain confidential and/or 
legally privileged information.  The Information is intended only for the 
use of the individual or entity named on this e-mail .  If you are not the 
intended recipient, you are hereby notified that any disclosure, copying, 
distribution, or the taking of any action in reliance on the contents of 
this transmitted Information is strictly prohibited.  Further, if you are 
not the intended recipient, please notify us by return e-mail and delete 
the Information promptly.
 
 
 

[-- Attachment #2: Type: text/html, Size: 1352 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-02-04  8:11 Usha Rani Konudula
  0 siblings, 0 replies; 197+ messages in thread
From: Usha Rani Konudula @ 2009-02-04  8:11 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 5 bytes --]

 


[-- Attachment #2: Type: text/html, Size: 3952 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-24 21:46 Hai Zhu
  0 siblings, 0 replies; 197+ messages in thread
From: Hai Zhu @ 2009-01-24 21:46 UTC (permalink / raw)
  To: linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 20 bytes --]

unsubscribe


      

[-- Attachment #2: Type: text/html, Size: 136 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2009-01-13  5:02 shreeram
  0 siblings, 0 replies; 197+ messages in thread
From: shreeram @ 2009-01-13  5:02 UTC (permalink / raw)
  To: Linuxppc-dev


-- 

-_-
 .

Regards,
R.S.Shree Ram
GDA Technologies Ltd.

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-12  8:29 Kunkel, Ulrich
  0 siblings, 0 replies; 197+ messages in thread
From: Kunkel, Ulrich @ 2009-01-12  8:29 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 1560 bytes --]

I wish to unsubscribe from this list.

Best Regards,
 

Mit freundlichen Grüßen / Best regards

 

Ulrich Kunkel

Produktlinie Testing Abteilung T-GE

Hottinger Baldwin Messtechnik GmbH
Fax:            +49 6151-803524
E-Mail:         ulrich.kunkel@hbm.com <blocked::mailto:v@hbm.com> 
Internet:      www.hbm.com <blocked::http://www.hbm.com/>  

 

 

Die in dieser E-Mail enthaltene Information ist vertraulich und lediglich für den Empfänger bestimmt. Sollten Sie nicht der eigentliche Empfänger sein, informieren Sie mich bitte kurz und löschen diese E-Mail.

 

Hottinger Baldwin Messtechnik GmbH, Im Tiefen See 45, 64293 Darmstadt, Germany | www.hbm.com 

Registered as GmbH (German limited liability corporation) in the commercial register at the local court of Darmstadt, HRB 1147  
Company domiciled in Darmstadt | CEO: Andreas Huellhorst | Chairman of the board: James Charles Webster

Als Gesellschaft mit beschraenkter Haftung eingetragen im Handelsregister des Amtsgerichts Darmstadt unter HRB 1147 
Sitz der Gesellschaft: Darmstadt | Geschaeftsfuehrung: Andreas Huellhorst | Aufsichtsratsvorsitzender: James Charles Webster

The information in this email is confidential. It is intended solely for the addressee. If you are not the intended recipient, please let me know and delete this email.

Die in dieser E-Mail enthaltene Information ist vertraulich und lediglich für den Empfaenger bestimmt. Sollten Sie nicht der eigentliche Empfaenger sein, informieren Sie mich bitte kurz und loeschen diese E-Mail.


[-- Attachment #2: Type: text/html, Size: 4683 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-12  5:49 zhou.yutao
  2009-01-12  9:06 ` unsubscribe Geert Uytterhoeven
  0 siblings, 1 reply; 197+ messages in thread
From: zhou.yutao @ 2009-01-12  5:49 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 848 bytes --]

深圳中兴力维技术有限公司
地址:深圳市高新区科技南一路W1-A二楼
电话:0755-26525674-8509(办公室)


--------------------------------------------------------
ZTE Information Security Notice: The information contained in this mail is solely property of the sender's organization. This mail communication is confidential. Recipients named above are obligated to maintain secrecy and are not permitted to disclose the contents of this communication to others.
This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the originator of the message. Any views expressed in this message are those of the individual sender.
This message has been scanned for viruses and Spam by ZTE Anti-Spam system.

[-- Attachment #2: Type: text/html, Size: 1467 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-11 19:25 rsterling
  2009-01-12  4:39 ` unsubscribe sandeep malik
  2009-01-12 12:56 ` unsubscribe ravi.rao
  0 siblings, 2 replies; 197+ messages in thread
From: rsterling @ 2009-01-11 19:25 UTC (permalink / raw)
  To: Linuxppc-dev

unsubscribe

please

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2009-01-11 17:38 Nadav Sharabi
  2009-01-12  4:49 ` Unsubscribe Wei Jack
  0 siblings, 1 reply; 197+ messages in thread
From: Nadav Sharabi @ 2009-01-11 17:38 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 72 bytes --]

Hi,

I wish to unsubscribe from this list.

Best Regards,
Nadav Sharabi

[-- Attachment #2: Type: text/html, Size: 112 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-11 10:02 Ignacio Vara
  2009-01-11 16:13 ` unsubscribe List
  0 siblings, 1 reply; 197+ messages in thread
From: Ignacio Vara @ 2009-01-11 10:02 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 13 bytes --]

unsubscribe


[-- Attachment #2: Type: text/html, Size: 1552 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-08  2:45 Yedu Jathavedan
  0 siblings, 0 replies; 197+ messages in thread
From: Yedu Jathavedan @ 2009-01-08  2:45 UTC (permalink / raw)
  To: Linuxppc-dev

unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-07 17:21 rsterling
  0 siblings, 0 replies; 197+ messages in thread
From: rsterling @ 2009-01-07 17:21 UTC (permalink / raw)
  To: Linuxppc-dev

unsubscribe

---------------------------------------
Rick Sterling
Space Sciences Laboratory
University of California, Berkeley
510.642.6149
rsterling@ssl.berkeley.edu
---------------------------------------

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-07 17:12 Wei Jack
  0 siblings, 0 replies; 197+ messages in thread
From: Wei Jack @ 2009-01-07 17:12 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 159 bytes --]

unsubscribe
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

[-- Attachment #2: Type: text/html, Size: 341 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-07 16:00 neeraj garg
  0 siblings, 0 replies; 197+ messages in thread
From: neeraj garg @ 2009-01-07 16:00 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 12 bytes --]

unsubscribe

[-- Attachment #2: Type: text/html, Size: 12 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* mpc5200 ATA DMA
@ 2009-01-07  7:23 Peter Czanik
  2009-01-07  7:58 ` Unsubscribe Landau, Bracha
  0 siblings, 1 reply; 197+ messages in thread
From: Peter Czanik @ 2009-01-07  7:23 UTC (permalink / raw)
  To: linuxppc-dev

Hello,

I did a few tests this morning with the new DMA code on the EFIKA and
got the following results:

- libata.force=udma2

SCSI subsystem
initialized                                                                         

ata: MPC52xx IDE/ATA libata
driver                                                                 
scsi0 :
mpc52xx_ata                                                                                

ata1: PATA max PIO4 ata_regs 0xf0003a00 irq
135                                                    
ata1.00: ATA-6: ST980815A, 3.ALD, max
UDMA/100                                                     
ata1.00: 156301488 sectors, multi 0:
LBA48                                                         
ata1.00: FORCE: xfer_mask set to
udma2                                                             
ata1.00: configured for
UDMA/33                                                                    
scsi 0:0:0:0: Direct-Access     ATA      ST980815A        3.AL PQ: 0
ANSI: 5                       
Creating device nodes with
udev                                                                    
udevd version 128
started                                                                          

ppc-of-ohci f0001000.usb: OF
OHCI                                                                  
ppc-of-ohci f0001000.usb: new USB bus registered, assigned bus number
1                            
ppc-of-ohci f0001000.usb: irq 134, io mem
0xf0001000                                               
usb usb1: configuration #1 chosen from 1
choice                                                    
hub 1-0:1.0: USB hub
found                                                                         

hub 1-0:1.0: 2 ports
detected                                                                      

usb usb1: New USB device found, idVendor=1d6b,
idProduct=0001                                      
usb usb1: New USB device strings: Mfr=3, Product=2,
SerialNumber=1                                 
usb usb1: Product: OF
OHCI                                                                         

usb usb1: Manufacturer: Linux 2.6.27.7-99.1-genesi
ohci_hcd                                        
usb usb1: SerialNumber: PPC-OF
USB                                                                 
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
 sda:                                                                                              

                                                                                                   

After the udevadm settle timeout, the events queue
contains:                                       
                                                                                                   

304:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0                              

305:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0                  

306:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0          

427:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0            

                                                                                                   

                                                                                                   

Boot logging started on /dev/ttyPSC0(/dev/console) at Wed Jan  7
06:58:13 2009                     
<3>ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6
frozen                                
ata1.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096
in                                 
         res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4
(timeout)                               
ata1.00: status: { DRDY
}                                                                          
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1.00:
disabled                                                                                  

ata1: soft resetting
link                                                                          

ata1: EH
complete                                                                                  

sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
ldm_validate_partition_table(): Disk read
failed.                                                  
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
Dev sda: unable to read RDB block
0                                                                
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
Buffer I/O error on device sda, logical block 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 24
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 24
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
 unable to read partition table
sd 0:0:0:0: [sda] Attached SCSI disk
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
Waiting for device /dev/sda11 to appear:
..............................Could not find /dev/sda11.
Want me to fall back to /dev/sda11? (Y/n)

- libata.force=mwdma2 is just about the same:

scsi0 :
mpc52xx_ata                                                                                

ata1: PATA max PIO4 ata_regs 0xf0003a00 irq
135                                                    
ata1.00: ATA-6: ST980815A, 3.ALD, max
UDMA/100                                                     
ata1.00: 156301488 sectors, multi 0:
LBA48                                                         
ata1.00: FORCE: xfer_mask set to
mwdma2                                                            
ata1.00: configured for
MWDMA2                                                                     
scsi 0:0:0:0: Direct-Access     ATA      ST980815A        3.AL PQ: 0
ANSI: 5                       
Creating device nodes with
udev                                                                    
udevd version 128
started                                                                          

ppc-of-ohci f0001000.usb: OF
OHCI                                                                  
ppc-of-ohci f0001000.usb: new USB bus registered, assigned bus number
1                            
ppc-of-ohci f0001000.usb: irq 134, io mem
0xf0001000                                               
usb usb1: configuration #1 chosen from 1
choice                                                    
hub 1-0:1.0: USB hub
found                                                                         

hub 1-0:1.0: 2 ports
detected                                                                      

usb usb1: New USB device found, idVendor=1d6b,
idProduct=0001                                      
usb usb1: New USB device strings: Mfr=3, Product=2,
SerialNumber=1                                 
usb usb1: Product: OF
OHCI                                                                         

usb usb1: Manufacturer: Linux 2.6.27.7-99.1-genesi
ohci_hcd                                        
usb usb1: SerialNumber: PPC-OF
USB                                                                 
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
 sda:                                                                                              

                                                                                                   

After the udevadm settle timeout, the events queue
contains:                                       
                                                                                                   

304:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0                              

305:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0                  

306:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0          

427:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0            

                                                                                                   

                                                                                                   

Boot logging started on /dev/ttyPSC0(/dev/console) at Wed Jan  7
07:05:50 2009                     
<3>ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6
frozen                                
ata1.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096
in                                 
         res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4
(timeout)                               
ata1.00: status: { DRDY
}                                                                          
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1.00:
disabled                                                                                  

ata1: soft resetting
link                                                                          

ata1: EH
complete                                                                                  

sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
ldm_validate_partition_table(): Disk read
failed.                                                  
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
Dev sda: unable to read RDB block
0                                                                
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
Buffer I/O error on device sda, logical block 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 24
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 24
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
 unable to read partition table
sd 0:0:0:0: [sda] Attached SCSI disk
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
Waiting for device /dev/sda11 to appear:
..............................Could not find /dev/sda11.
Want me to fall back to /dev/sda11? (Y/n)

- just as libata.force=mwdma1

SCSI subsystem
initialized                                                                         

ata: MPC52xx IDE/ATA libata
driver                                                                 
scsi0 :
mpc52xx_ata                                                                                

ata1: PATA max PIO4 ata_regs 0xf0003a00 irq
135                                                    
ata1.00: ATA-6: ST980815A, 3.ALD, max
UDMA/100                                                     
ata1.00: 156301488 sectors, multi 0:
LBA48                                                         
ata1.00: FORCE: xfer_mask set to
mwdma1                                                            
ata1.00: configured for
MWDMA1                                                                     
scsi 0:0:0:0: Direct-Access     ATA      ST980815A        3.AL PQ: 0
ANSI: 5                       
Creating device nodes with
udev                                                                    
udevd version 128
started                                                                          

ppc-of-ohci f0001000.usb: OF
OHCI                                                                  
ppc-of-ohci f0001000.usb: new USB bus registered, assigned bus number
1                            
ppc-of-ohci f0001000.usb: irq 134, io mem
0xf0001000                                               
usb usb1: configuration #1 chosen from 1
choice                                                    
hub 1-0:1.0: USB hub
found                                                                         

hub 1-0:1.0: 2 ports
detected                                                                      

usb usb1: New USB device found, idVendor=1d6b,
idProduct=0001                                      
usb usb1: New USB device strings: Mfr=3, Product=2,
SerialNumber=1                                 
usb usb1: Product: OF
OHCI                                                                         

usb usb1: Manufacturer: Linux 2.6.27.7-99.1-genesi
ohci_hcd                                        
usb usb1: SerialNumber: PPC-OF
USB                                                                 
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
 sda:                                                                                              

                                                                                                   

After the udevadm settle timeout, the events queue
contains:                                       
                                                                                                   

304:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0                              

305:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0                  

306:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0          

427:
/devices/f0000000.builtin/f0003a00.ata/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0            

                                                                                                   

                                                                                                   

Boot logging started on /dev/ttyPSC0(/dev/console) at Wed Jan  7
07:09:38 2009                     
<3>ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6
frozen                                
ata1.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096
in                                 
         res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4
(timeout)                               
ata1.00: status: { DRDY
}                                                                          
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1: soft resetting
link                                                                          

ata1.00: revalidation failed
(errno=-2)                                                            
ata1.00:
disabled                                                                                  

ata1: soft resetting
link                                                                          

ata1: EH
complete                                                                                  

sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
ldm_validate_partition_table(): Disk read
failed.                                                  
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block
0                                                    
Dev sda: unable to read RDB block
0                                                                
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK                  
end_request: I/O error, dev sda, sector
0                                                          
Buffer I/O error on device sda, logical block 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
Buffer I/O error on device sda, logical block 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 24
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 24
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
 unable to read partition table
sd 0:0:0:0: [sda] Attached SCSI disk
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 0
Waiting for device /dev/sda11 to appear:
..............................Could not find /dev/sda11.
Want me to fall back to /dev/sda11? (Y/n)

- no kernel parameters: no trouble at all

SCSI subsystem
initialized                                                                         

ata: MPC52xx IDE/ATA libata
driver                                                                 
scsi0 :
mpc52xx_ata                                                                                

ata1: PATA max PIO4 ata_regs 0xf0003a00 irq
135                                                    
ata1.00: ATA-6: ST980815A, 3.ALD, max
UDMA/100                                                     
ata1.00: 156301488 sectors, multi 0:
LBA48                                                         
ata1.00: configured for
PIO4                                                                       
scsi 0:0:0:0: Direct-Access     ATA      ST980815A        3.AL PQ: 0
ANSI: 5                       
Creating device nodes with
udev                                                                    
udevd version 128
started                                                                          

ppc-of-ohci f0001000.usb: OF
OHCI                                                                  
ppc-of-ohci f0001000.usb: new USB bus registered, assigned bus number
1                            
ppc-of-ohci f0001000.usb: irq 134, io mem
0xf0001000                                               
usb usb1: configuration #1 chosen from 1
choice                                                    
hub 1-0:1.0: USB hub
found                                                                         

hub 1-0:1.0: 2 ports
detected                                                                      

usb usb1: New USB device found, idVendor=1d6b,
idProduct=0001                                      
usb usb1: New USB device strings: Mfr=3, Product=2,
SerialNumber=1                                 
usb usb1: Product: OF
OHCI                                                                         

usb usb1: Manufacturer: Linux 2.6.27.7-99.1-genesi
ohci_hcd                                        
usb usb1: SerialNumber: PPC-OF
USB                                                                 
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors:
(80.0GB/74.5GiB)                            
sd 0:0:0:0: [sda] Write Protect is
off                                                             
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't
support DPO or FUA            
 sda: RDSK (512) sda1 (LNX^@)(res 2 spb 1) sda2 (SWP^@)(res 2 spb 1)
sda3 (EXT^C)(res 2 spb 1) sda4)
sd 0:0:0:0: [sda] Attached SCSI
disk                                                               
Boot logging started on /dev/ttyPSC0(/dev/console) at Wed Jan  7
07:19:21 2009                     
Waiting for device /dev/sda11 to appear: 
ok                                                       
fsck 1.41.1
(01-Sep-2008)                                                                          

[/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a
/dev/sda11                                                 
/dev/sda11: clean, 100696/429088 files, 569041/1714938
blocks                                      
fsck succeeded. Mounting root device
read-write.                                                   
Mounting root
/dev/sda11                                                                           


Bye,
CzP

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-07  6:37 santhoshunnikrishnan
  2009-01-07  7:27 ` unsubscribe Rustagi, Vikas
  2009-01-07 15:32 ` unsubscribe Sungjoo Kim
  0 siblings, 2 replies; 197+ messages in thread
From: santhoshunnikrishnan @ 2009-01-07  6:37 UTC (permalink / raw)
  To: Linuxppc-dev


[-- Attachment #1.1: Type: text/plain, Size: 460 bytes --]

 
Please unsubscribe me, thanks!


The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments contained in it.

[-- Attachment #1.2: Type: text/html, Size: 808 bytes --]

[-- Attachment #2: ATT00043.txt --]
[-- Type: text/plain, Size: 146 bytes --]

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-07  2:23 pravin
  0 siblings, 0 replies; 197+ messages in thread
From: pravin @ 2009-01-07  2:23 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 0 bytes --]



[-- Attachment #2: Type: text/html, Size: 113 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-06 17:59 hb fei
  2009-01-07  1:55 ` unsubscribe Tao Xue
  0 siblings, 1 reply; 197+ messages in thread
From: hb fei @ 2009-01-06 17:59 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #2: Type: text/html, Size: 5 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2009-01-05 23:48 JeongIn Choi
  0 siblings, 0 replies; 197+ messages in thread
From: JeongIn Choi @ 2009-01-05 23:48 UTC (permalink / raw)
  Cc: Frank Lautenbach, Linuxppc-dev

[-- Attachment #1: Type: text/html, Size: 2493 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
[parent not found: <43FB4790A017E847A47C1D1FD108904E017B7C12@EXVBE011-1.exch011.int ermedia.net>]
* unsubscribe
@ 2009-01-05 21:58 Iain Shewring
  0 siblings, 0 replies; 197+ messages in thread
From: Iain Shewring @ 2009-01-05 21:58 UTC (permalink / raw)
  To: Linuxppc-dev



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-05 21:32 Jim Rose
  2009-01-05 21:49 ` unsubscribe Nate Jozwiak
  0 siblings, 1 reply; 197+ messages in thread
From: Jim Rose @ 2009-01-05 21:32 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: Type: text/html, Size: 1096 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-05 18:03 Leonid
  2009-01-05 19:06 ` unsubscribe Nitesh Guinde
  0 siblings, 1 reply; 197+ messages in thread
From: Leonid @ 2009-01-05 18:03 UTC (permalink / raw)
  To: Linuxppc-dev

Please unsubscribe me from this list.

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2009-01-05 13:09 P Jagadeesh Maiya
  0 siblings, 0 replies; 197+ messages in thread
From: P Jagadeesh Maiya @ 2009-01-05 13:09 UTC (permalink / raw)
  To: linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 0 bytes --]



[-- Attachment #2: Type: text/html, Size: 289 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* UNSUBSCRIBE
@ 2009-01-05  8:41 Arun Kumar
  0 siblings, 0 replies; 197+ messages in thread
From: Arun Kumar @ 2009-01-05  8:41 UTC (permalink / raw)
  To: linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 245 bytes --]

>
> kindly unsubscribe me from this mailing list.
>



-- 

Best Regards,
Arun


"      Not in imagined futures
               Or in remembered pasts
       But only here and only now
                   Will you find a peace that lasts        "

[-- Attachment #2: Type: text/html, Size: 668 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2009-01-05  4:32 Narendra KA
  2009-01-05  4:33 ` Unsubscribe Steve Iribarne (GMail)
  0 siblings, 1 reply; 197+ messages in thread
From: Narendra KA @ 2009-01-05  4:32 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 95 bytes --]

 Hi,

can you please unsubscribe me from this mailing list?
 
Thanks and Regards,
Narendra K.A

[-- Attachment #2: Type: text/html, Size: 448 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unsubscribe
@ 2009-01-04 12:22 Frank Lautenbach
  2009-01-04 13:55 ` Unsubscribe Leon Woestenberg
  0 siblings, 1 reply; 197+ messages in thread
From: Frank Lautenbach @ 2009-01-04 12:22 UTC (permalink / raw)
  To: Linuxppc-dev

Hi,

can you please unsubscribe me from this mailing list?

Thanks!


Greetings,

Frank

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2008-07-09 14:45 Ed Henderson
  0 siblings, 0 replies; 197+ messages in thread
From: Ed Henderson @ 2008-07-09 14:45 UTC (permalink / raw)
  To: Linuxppc-embedded

[-- Attachment #1: Type: text/plain, Size: 3 bytes --]

 


[-- Attachment #2: Type: text/html, Size: 1619 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2007-06-12  1:14 Alexander Baldeck
  0 siblings, 0 replies; 197+ messages in thread
From: Alexander Baldeck @ 2007-06-12  1:14 UTC (permalink / raw)
  To: linuxppc-dev



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2007-04-24 18:07 mike
  0 siblings, 0 replies; 197+ messages in thread
From: mike @ 2007-04-24 18:07 UTC (permalink / raw)
  To: linuxppc-dev



Michael J. Kelly
VP Engineering
Cogent Computer Systems, Inc.
17 Industrial Dr.
Smithfield, RI 02917
tel:401-223-3441 fax:401-223-3442
www.cogcomp.com
alternate email: mkelly6505@hotmail.com

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Re: Is get_property() correct?
@ 2006-10-28  9:08 Michael Ellerman
  2006-10-30  2:05 ` unsubscribe Usha Rani Konudula
  0 siblings, 1 reply; 197+ messages in thread
From: Michael Ellerman @ 2006-10-28  9:08 UTC (permalink / raw)
  To: Grant Likely; +Cc: linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 875 bytes --]

On Sat, 2006-10-28 at 01:38 -0600, Grant Likely wrote:
> On 10/28/06, Benjamin Herrenschmidt <benh@kernel.crashing.org> wrote:
> > On Sat, 2006-10-28 at 00:41 -0600, Grant Likely wrote:
> >
> > Well considering that we don't know the type of the property value, the
> > best we can do is return a pointer to it ...
> >
> > The comment might want an update, though it never stroke me as confusing
> > but heh :)
> 
> No, it's not confusing.  Both the comment and the code are correct.  I
> just forgot how to read code.  :(

But at least now we're all _sure_ they're correct, some good still
done :)

cheers

-- 
Michael Ellerman
OzLabs, IBM Australia Development Lab

wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)

We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 191 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2006-10-12  9:56 Usha Rani Konudula
  0 siblings, 0 replies; 197+ messages in thread
From: Usha Rani Konudula @ 2006-10-12  9:56 UTC (permalink / raw)
  To: linuxppc-dev list

unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2006-07-25  4:32 umesh k
  0 siblings, 0 replies; 197+ messages in thread
From: umesh k @ 2006-07-25  4:32 UTC (permalink / raw)
  To: Linuxppc-embedded

[-- Attachment #1: Type: text/plain, Size: 105 bytes --]

  
 				
---------------------------------
 Find out what India is talking about on Yahoo! Answers India.

[-- Attachment #2: Type: text/html, Size: 190 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2006-06-09  9:19 rohitash panda
  0 siblings, 0 replies; 197+ messages in thread
From: rohitash panda @ 2006-06-09  9:19 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 137 bytes --]

  


Ability is what you are capable of doing. 

Motivation determines what you do. 

Attitude determines how well you do it. 

[-- Attachment #2: Type: text/html, Size: 537 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2006-02-27  4:10 shrisha.prasad
  0 siblings, 0 replies; 197+ messages in thread
From: shrisha.prasad @ 2006-02-27  4:10 UTC (permalink / raw)
  To: Linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 0 bytes --]



[-- Attachment #2: Type: text/html, Size: 0 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2006-02-13 18:39 Moloko Vellocet
  0 siblings, 0 replies; 197+ messages in thread
From: Moloko Vellocet @ 2006-02-13 18:39 UTC (permalink / raw)
  To: linuxppc-embedded

[-- Attachment #1: Type: text/plain, Size: 13 bytes --]

unsubscribe

[-- Attachment #2: Type: text/html, Size: 13 bytes --]

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2005-11-05 10:13 Geert Janssens
  0 siblings, 0 replies; 197+ messages in thread
From: Geert Janssens @ 2005-11-05 10:13 UTC (permalink / raw)
  To: Linuxppc-dev



^ permalink raw reply	[flat|nested] 197+ messages in thread
[parent not found: <D3099360D13C2F4F8F3C12EADC7A346A023C5A7C@srsdmail.pv.com>]
[parent not found: <000c01c4c04a$4f707720$974ffea9@a2i4y5>]
* unsubscribe
@ 2003-06-30 13:30 Fabio Sirna
  0 siblings, 0 replies; 197+ messages in thread
From: Fabio Sirna @ 2003-06-30 13:30 UTC (permalink / raw)
  To: Acpi-devel





-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Encryption
@ 2003-03-22 23:22 Pierre Abbat
  2003-03-23  9:16 ` Snapshots a la NetApp? Heinz-Josef Claes
  0 siblings, 1 reply; 197+ messages in thread
From: Pierre Abbat @ 2003-03-22 23:22 UTC (permalink / raw)
  To: reiserfs-list

How is filesystem encryption going to work? Or has anyone figured that out 
yet?

phma
-- 
.i toljundi do .ibabo mi'afra tu'a do
.ibabo damba do .ibabo do jinga
.icu'u la ma'atman.

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2002-09-24  9:33 farnis=VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org
  0 siblings, 0 replies; 197+ messages in thread
From: farnis=VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org @ 2002-09-24  9:33 UTC (permalink / raw)
  To: Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f



--
Fabio

^ permalink raw reply	[flat|nested] 197+ messages in thread
* Unable to recover from CRC failiure
@ 2002-03-27 10:46 Joakim Tjernlund
  2002-03-27 17:00 ` unsubscribe Roy Sherrill
  0 siblings, 1 reply; 197+ messages in thread
From: Joakim Tjernlund @ 2002-03-27 10:46 UTC (permalink / raw)
  To: linux-mtd

Hi 

I got the following on one of our nodes:
-------------- Start log --------------
<snip>
JFFS2: Total scan time: 11.41 sec
Eep. Child "utmp" (ino #1853) of dir ino #130 doesn't exist!
VFS: Mounted root (jffs2 filesystem).
Freeing unused kernel memory: 52k init 4k openfirmware
jffs2_read_inode() on nonexistent ino 1853
INIT: version 2.78 booting
Fast boot, no file system check
none on /dev/shm type shm (rw)
Cleaning: /etc/network/ifstate.
Enabling packet forwarding: done.
Configuring network interfaces: done.
Cleaning: /tmp /var/lock /var/runfind: ./utmp: Input/output error
/etc/init.d/rcS: /var/run/utmp: Input/output error
Give root password for maintenance
(or type Control-D for normal startup):
bash-2.04# cd /var/run
bash-2.04# ls
exim  utmp
bash-2.04# ls -l
ls: utmp: Input/output error
total 0
drwxr-xr-x    1 root     root            0 May 24  2001 exim
bash-2.04# rm utmp
rm: cannot remove `utmp': Input/output error
bash-2.04# rm -f utmp
rm: cannot remove `utmp': Input/output error
bash-2.04# ls
exim  utmp
bash-2.04# ls -l
ls: utmp: Input/output error
total 0
drwxr-xr-x    1 root     root            0 May 24  2001 exim
bash-2.04# cd ..
bash-2.04# pwd
/var
bash-2.04# ls
cache  lib  local  lock  log  mail  opt  run  spool  tmp  ucd-snmp
bash-2.04# ls run
exim  utmp
bash-2.04# mv run slask
mv: cannot stat `run/utmp': Input/output error
bash-2.04# df
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/root                63744     44996     18748  71% /
bash-2.04#
-------------- End log -------------

I have no problem with getting a bad CRC on the JFFS2 FS at times, but that I am unable to get rid of
the offending file(utmp).

I am using the latest stable 2.4 branch.

Any ideas?

           Jocke
 

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 2000-07-25 10:21 Kasslatter Fritz
  0 siblings, 0 replies; 197+ messages in thread
From: Kasslatter Fritz @ 2000-07-25 10:21 UTC (permalink / raw)
  To: 'mtd@infradead.org'

unsubscribe

-------------------------------------------------------------------
> SIEMENS     	       Siemens AG Österreich PSE PRO CDA5
>                                       Software 
>                      	       A-1031 WIEN,   
>                                       Erdbergerlaende 26, Zi. C3266
>                                       Tel  +43 1 1707 37929
> D.I.                                Fax +43 1 1707 57911
> Fritz Kasslatter         mailto:fritz.kasslatter@siemens.at
>                                       PGP-Key on Request
> 


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 1999-07-06  8:37 Torbjorn Gannholm
  0 siblings, 0 replies; 197+ messages in thread
From: Torbjorn Gannholm @ 1999-07-06  8:37 UTC (permalink / raw)
  To: linux



^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 1999-06-11  0:58 Deni Connor
  0 siblings, 0 replies; 197+ messages in thread
From: Deni Connor @ 1999-06-11  0:58 UTC (permalink / raw)
  To: linux

unsubscribe

Senior Editor

<color><param>0000,0000,ffff</param>Network</color> World

Covering servers and storage


8815 Mountain Path Circle

Austin, Texas 78759

(512) 345-3850

Fax: (512) 345-3860

^ permalink raw reply	[flat|nested] 197+ messages in thread
* unsubscribe
@ 1999-04-02 12:37 Carbon Monoxide
  1999-04-02 13:06 ` unsubscribe Koundinya.K
  0 siblings, 1 reply; 197+ messages in thread
From: Carbon Monoxide @ 1999-04-02 12:37 UTC (permalink / raw)
  To: linux

unsubscribe

^ permalink raw reply	[flat|nested] 197+ messages in thread

end of thread, other threads:[~2024-04-03 15:57 UTC | newest]

Thread overview: 197+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-13 12:31 overlayfs vs. fscrypt Richard Weinberger
2019-03-13 12:31 ` Richard Weinberger
2019-03-13 12:36 ` Miklos Szeredi
2019-03-13 12:47   ` Richard Weinberger
2019-03-13 12:47     ` Richard Weinberger
2019-03-13 12:58     ` Miklos Szeredi
2019-03-13 13:00       ` Richard Weinberger
2019-03-13 13:00         ` Richard Weinberger
2019-03-13 13:24         ` Miklos Szeredi
2019-03-13 13:32           ` Richard Weinberger
2019-03-13 13:32             ` Richard Weinberger
2019-03-13 14:26             ` Amir Goldstein
2019-03-13 15:16               ` Theodore Ts'o
2019-03-13 15:30                 ` Richard Weinberger
2019-03-13 15:30                   ` Richard Weinberger
2019-03-13 15:36                 ` James Bottomley
2019-03-13 15:51                   ` Eric Biggers
2019-03-13 16:13                     ` James Bottomley
2019-03-13 16:24                       ` Richard Weinberger
2019-03-13 16:44                   ` Theodore Ts'o
2019-03-13 17:45                     ` James Bottomley
2019-03-13 18:58                       ` Theodore Ts'o
2019-03-13 19:17                         ` James Bottomley
2019-03-13 19:57                           ` Eric Biggers
2019-03-13 20:06                             ` James Bottomley
2019-03-13 20:25                               ` Eric Biggers
2019-03-13 21:04                                 ` James Bottomley
2019-03-13 22:13                                   ` Eric Biggers
2019-03-13 22:29                                     ` James Bottomley
2019-03-13 22:58                                       ` Eric Biggers
2019-03-13 16:06                 ` Al Viro
2019-03-13 16:44                   ` Eric Biggers
2019-03-13 19:19                     ` Al Viro
2019-03-13 19:43                       ` Eric Biggers
2019-03-13 15:30               ` Eric Biggers
2019-03-13 15:30                 ` Eric Biggers
2019-03-13 20:33               ` Richard Weinberger
2019-03-13 20:33                 ` Richard Weinberger
2019-03-13 22:26                 ` Eric Biggers
2019-03-13 22:26                   ` Eric Biggers
2019-03-13 22:42                   ` Richard Weinberger
2019-03-14  7:34                     ` Miklos Szeredi
2019-03-14 17:15                       ` [RFC] fscrypt_key_required mount option Richard Weinberger
2019-03-14 17:15                         ` Richard Weinberger
2019-03-14 17:15                         ` [PATCH 1/4] fscrypt: Implement FS_CFLG_OWN_D_OPS Richard Weinberger
2019-03-14 17:15                           ` Richard Weinberger
2019-03-14 17:15                         ` [PATCH 2/4] fscrypt: Export fscrypt_d_ops Richard Weinberger
2019-03-14 17:15                           ` Richard Weinberger
2019-03-14 17:15                         ` [PATCH 3/4] ubifs: Simplify fscrypt_get_encryption_info() error handling Richard Weinberger
2019-03-14 17:15                           ` Richard Weinberger
2019-03-14 17:15                         ` [PATCH 4/4] ubifs: Implement new mount option, fscrypt_key_required Richard Weinberger
2019-03-14 17:15                           ` Richard Weinberger
2019-03-14 17:49                           ` Eric Biggers
2019-03-14 17:49                             ` Eric Biggers
2019-03-14 20:54                             ` Richard Weinberger
2019-03-14 20:54                               ` Richard Weinberger
2019-03-14 23:07                               ` Theodore Ts'o
2019-03-14 23:07                                 ` Theodore Ts'o
2019-03-15  0:26                                 ` Unsubscribe Shane Volpe
2019-03-15  7:48                                 ` [PATCH 4/4] ubifs: Implement new mount option, fscrypt_key_required Richard Weinberger
2019-03-15  7:48                                   ` Richard Weinberger
2019-03-15 13:51                                   ` Theodore Ts'o
2019-03-15 13:51                                     ` Theodore Ts'o
2019-03-15 13:51                                     ` Theodore Ts'o
2019-03-15 13:59                                     ` Richard Weinberger
2019-03-15 13:59                                       ` Richard Weinberger
2019-03-14 23:15                           ` James Bottomley
2019-03-14 23:15                             ` James Bottomley
2019-03-14 23:42                             ` Theodore Ts'o
2019-03-14 23:42                               ` Theodore Ts'o
2019-03-14 23:55                               ` James Bottomley
2019-03-14 23:55                                 ` James Bottomley
2019-03-13 15:01           ` overlayfs vs. fscrypt Eric Biggers
2019-03-13 15:01             ` Eric Biggers
2019-03-13 16:11             ` Al Viro
2019-03-13 16:33               ` Eric Biggers
  -- strict thread matches above, loose matches on Subject: below --
2024-04-03  8:04 [PATCH v5 00/22] RISC-V SBI v2.0 PMU improvements and Perf sampling in KVM guest Atish Patra
2024-04-03  8:04 ` [PATCH v5 04/22] drivers/perf: riscv: Use BIT macro for shifting operations Atish Patra
2024-04-03 15:57   ` unsubscribe jonathan.oleson
2024-02-14 20:51 unsubscribe Igor Andreev
2024-01-15  8:19 unsubscribe limin yin
2023-12-13 17:30 unsubscribe Hank Barta
2023-11-25 16:50 unsubscribe Emmanuel ALLAUD
2023-06-20  6:46 unsubscribe Yao Yongxian
2023-05-02 23:36 [XEN][PATCH v6 00/19] dynamic node programming using overlay dtbo Vikram Garhwal
2023-05-02 23:36 ` [XEN][PATCH v6 08/19] xen/device-tree: Add device_tree_find_node_by_path() to find nodes in device tree Vikram Garhwal
2023-05-04  4:23   ` Henry Wang
2023-05-04  5:56     ` unsubscribe Terry Yang
2023-03-11  3:39 Unsubscribe Aviral Gupta
2022-12-01  1:38 unsubscribe Chan Kim
2022-10-13 10:14 unsubscribe Benjamin Demartin
2022-10-31 16:21 ` unsubscribe Thomas Monjalon
2022-06-29 21:00 unsubscribe Alvin Šipraga
2022-06-29 21:10 ` unsubscribe Alvin Šipraga
2021-11-02  6:37 unsubscribe Jacky Wang (王亮)-浪潮数据
2021-09-30 21:48 unsubscribe Shoaib Rao
2021-09-30 21:49 ` unsubscribe Shoaib Rao
2020-12-29  8:54 unsubscribe Shawn Landden
2020-12-21  7:28 unsubscribe Shawn Landden
2020-10-07 15:34 unsubscribe Thompson, Kent
     [not found] <CAGHfRMD3FP0_dAEmOgnkgyodXodWq2YcjaiOzvBwG=J1nqq-8g@mail.gmail.com>
2020-07-12 12:22 ` unsubscribe Philip Oakley
2019-05-29 15:32 Unsubscribe ID - David Torres
2019-03-07 14:15 unsubscribe Punky
2019-03-07 14:13 unsubscribe Punky
2018-05-14 21:14 Unsubscribe Eric Brown
     [not found] <CGME20180128235454epcms1p6f3b7aa47ba9c5035f9b317421c09a46a@epcms1p6>
2018-01-28 23:54 ` unsubscribe 조동석
2017-06-20  7:57 unsubscribe Gary Thomas
2017-01-19 18:31 unsubscribe Brad Litterell
     [not found] <CGME20161205003536epcms1p4c6ce52ccda8bbc5da6eb99d3de8e12a3@epcms1p4>
2016-12-05  0:35 ` unsubscribe 조동석
2016-10-25 18:30 unsubscribe cybin
2016-10-05 12:53 unsubscribe 고영준
2016-08-16  6:44 unsubscribe kuangjiou
2016-04-18 23:21 unsubscribe cybin
     [not found] <CAOLmke5wWrewgemRGCfgMY7vnqsnAQcZHDteVWkLHWOj_kOYbA@mail.gmail.com>
2015-03-21 10:39 ` unsubscribe ye tao
2014-08-11 13:19 unsubscribe Deepak Pandian
2014-02-01  6:27 unsubscribe animan9
2013-11-22 19:35 unsubscribe Pow, Christopher (SWCOE)
2013-11-22 19:38 ` unsubscribe Denys Dmytriyenko
2013-10-02 15:58 unsubscribe Daniel Kranich
2013-09-15 13:52 unsubscribe GMAIL
2013-09-11  8:43 unsubscribe GMAIL
2012-05-01 18:53 Mysterious memory corruption bug Bean
2012-05-01 19:08 ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 19:46   ` Bean
2012-05-01 19:52     ` Bean
2012-05-01 19:56       ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 20:02         ` Bean
2012-05-01 20:06           ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 20:09             ` Bean
2012-05-01 20:16               ` Vladimir 'φ-coder/phcoder' Serbinenko
2012-05-01 20:34                 ` Bean
2012-05-01 20:35                   ` unsubscribe Daniel Senderowicz
2012-05-01 20:43                     ` unsubscribe Gregg Levine
2011-11-14 17:26 unsubscribe Tietz Fabian (AA-DG/PAS-ESD2)
2011-02-28  2:25 Unsubscribe Tomasz Fujak
2011-01-06 17:42 unsubscribe marduk
2010-11-03  8:21 unsubscribe Roberto Mantovani
2010-10-19  8:51 unsubscribe Roberto Mantovani
2010-07-17 11:30 unsubscribe aiolos.cis90
2010-06-23 14:33 unsubscribe Frederic LEGER
2009-11-27 23:26 unsubscribe Gao Ya'nan
2009-11-28 17:02 ` unsubscribe Thomas Rinder
2009-02-04 13:48 unsubscribe Bietry, Ray
2009-02-04 13:19 unsubscribe ravi.rao
2009-02-04  8:11 unsubscribe Usha Rani Konudula
2009-01-24 21:46 unsubscribe Hai Zhu
2009-01-13  5:02 Unsubscribe shreeram
2009-01-12  8:29 unsubscribe Kunkel, Ulrich
2009-01-12  5:49 unsubscribe zhou.yutao
2009-01-12  9:06 ` unsubscribe Geert Uytterhoeven
2009-01-11 19:25 unsubscribe rsterling
2009-01-12  4:39 ` unsubscribe sandeep malik
2009-01-12 12:56 ` unsubscribe ravi.rao
2009-01-12 13:43   ` unsubscribe Rajasekaran Kaliyaperumal,  Chennai
2009-01-11 17:38 Unsubscribe Nadav Sharabi
2009-01-12  4:49 ` Unsubscribe Wei Jack
2009-01-11 10:02 unsubscribe Ignacio Vara
2009-01-11 16:13 ` unsubscribe List
2009-01-08  2:45 unsubscribe Yedu Jathavedan
2009-01-07 17:21 unsubscribe rsterling
2009-01-07 17:12 unsubscribe Wei Jack
2009-01-07 16:00 unsubscribe neeraj garg
2009-01-07  7:23 mpc5200 ATA DMA Peter Czanik
2009-01-07  7:58 ` Unsubscribe Landau, Bracha
2009-01-07  6:37 unsubscribe santhoshunnikrishnan
2009-01-07  7:27 ` unsubscribe Rustagi, Vikas
2009-01-07 15:32 ` unsubscribe Sungjoo Kim
2009-01-07  2:23 unsubscribe pravin
2009-01-06 17:59 unsubscribe hb fei
2009-01-07  1:55 ` unsubscribe Tao Xue
2009-01-07  6:32   ` unsubscribe AKS
2009-01-07  6:38     ` unsubscribe zhou.yutao
2009-01-07  7:42     ` unsubscribe Decherf, Patrick
2009-01-07  7:59       ` unsubscribe Liu Dave
2009-01-05 23:48 Unsubscribe JeongIn Choi
     [not found] <43FB4790A017E847A47C1D1FD108904E017B7C12@EXVBE011-1.exch011.int ermedia.net>
     [not found] ` <43FB4790A017E847A47C1D1FD108904E017B7C12@EXVBE011-1.exch011.in termedia.net>
2009-01-05 23:46   ` unsubscribe Ian Juang
2009-01-05 21:58 unsubscribe Iain Shewring
2009-01-05 21:32 unsubscribe Jim Rose
2009-01-05 21:49 ` unsubscribe Nate Jozwiak
2009-01-06  5:03   ` unsubscribe vikas.soni
2009-01-06 10:55     ` unsubscribe Paul Eaton
2009-01-05 18:03 unsubscribe Leonid
2009-01-05 19:06 ` unsubscribe Nitesh Guinde
2009-01-05 13:09 unsubscribe P Jagadeesh Maiya
2009-01-05  8:41 UNSUBSCRIBE Arun Kumar
2009-01-05  4:32 Unsubscribe Narendra KA
2009-01-05  4:33 ` Unsubscribe Steve Iribarne (GMail)
2009-01-06  7:39   ` Unsubscribe Tore Martin Hagen
2009-01-08  7:19     ` Unsubscribe Stephen Rothwell
2009-01-04 12:22 Unsubscribe Frank Lautenbach
2009-01-04 13:55 ` Unsubscribe Leon Woestenberg
2008-07-09 14:45 unsubscribe Ed Henderson
2007-06-12  1:14 unsubscribe Alexander Baldeck
2007-04-24 18:07 unsubscribe mike
2006-10-28  9:08 Is get_property() correct? Michael Ellerman
2006-10-30  2:05 ` unsubscribe Usha Rani Konudula
2006-10-12  9:56 unsubscribe Usha Rani Konudula
2006-07-25  4:32 unsubscribe umesh k
2006-06-09  9:19 unsubscribe rohitash panda
2006-02-27  4:10 unsubscribe shrisha.prasad
2006-02-13 18:39 unsubscribe Moloko Vellocet
2005-11-05 10:13 unsubscribe Geert Janssens
     [not found] <D3099360D13C2F4F8F3C12EADC7A346A023C5A7C@srsdmail.pv.com>
2005-01-05 21:55 ` UNSUBSCRIBE George Socker
     [not found] <000c01c4c04a$4f707720$974ffea9@a2i4y5>
2004-11-01 23:04 ` unsubscribe Jacob
2004-11-02  0:44   ` unsubscribe Lee Revell
2003-06-30 13:30 unsubscribe Fabio Sirna
2003-03-22 23:22 Encryption Pierre Abbat
2003-03-23  9:16 ` Snapshots a la NetApp? Heinz-Josef Claes
2003-03-24 20:49   ` Hans Reiser
2003-03-25  6:15     ` unsubscribe Voicu Liviu
2002-09-24  9:33 unsubscribe farnis=VGgt2q2+T+FeoWH0uzbU5w@public.gmane.org
2002-03-27 10:46 Unable to recover from CRC failiure Joakim Tjernlund
2002-03-27 17:00 ` unsubscribe Roy Sherrill
2000-07-25 10:21 unsubscribe Kasslatter Fritz
1999-07-06  8:37 unsubscribe Torbjorn Gannholm
1999-06-11  0:58 unsubscribe Deni Connor
1999-04-02 12:37 unsubscribe Carbon Monoxide
1999-04-02 13:06 ` unsubscribe Koundinya.K

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.