linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* (no subject)
@ 2002-09-11 18:27 Eddie Johnson
  2002-09-11 19:50 ` Alvin Oga
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Eddie Johnson @ 2002-09-11 18:27 UTC (permalink / raw)
  To: linux-raid; +Cc: ejohnson

I installed Suse Linux Professional 8 on a HP Netserver LC3 PII/450.  An
AHA-2940 UW Scsi host adapter with a AIC-78XX Scsi Protocol Chip/50 pin
high density scsi-2 control.  I have a raid (3 drives) off the host
adapter and a 80 gig scsi drive off the mother board. After launching
yast2 the first raid has the following device: LD0 raid 5 34730R:
device_name /dev/sda, vendor megaraid.  Disk two (80 gig drive) has LD1
raid 0 70006R: device name /dev/sdb vendor the same as above.  There was
no raidtab file so I created one with the following:

raiddev /dev/md0
raid-level 5
nr-raid-disks 1(little sketchy on this because it is three drives that
make up the raid)
nr-spare-disks 0
persistent superblock 1
parity-algorithm left-symmetric
chunk-size 2048
device /dev/sda
raid-disk 0 (sketchy here as well)

#Second drive
raiddev /dev/md1
raid-level 5
nr-raid-disks 1
nr-spare-disks 0
persistent-superblock 1
chunk-size 2048
device /dev/sdb
raid-disks 1 (sketchy as well)

Trying to follow the procedures and I type:
mkraid /dev/md0 and I get:

Handling md device /dev/md0
analyzing super-block
disk 0: /dev/sda, 35563520kb, raid superblock at 35563456kb

Second drive I get:

Handling md deviice /dev/md1
analyzing super-block
disk 0: /dev/sdb, 71686144kb, raid superblock at 71686080kb

I then type cat /proc/mdstat and get the following:

Personalities [RAID5]
read_ahead not set
md1: inactive sdb [0]
     71684096 blocks
md0: inactive sda [0]
     35561472 blocks
unused devices: <none>

If I read this correctly both are inactive when it should be stating
that they are active.  At this point I am baffled any suggestions or
possible directions would greatly be appreciated.


Thanks in advance,
Ed


^ permalink raw reply	[flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/7] uapi: export all headers under uapi directories
@ 2017-01-09 11:33 Arnd Bergmann
  2017-01-13 10:46 ` [PATCH v3 0/8] " Nicolas Dichtel
  0 siblings, 1 reply; 8+ messages in thread
From: Arnd Bergmann @ 2017-01-09 11:33 UTC (permalink / raw)
  To: linuxppc-dev, linux-kbuild
  Cc: linux-mips, alsa-devel, linux-ia64, linux-doc, airlied,
	linux-fbdev, dri-devel, linux-mtd, sparclinux, linux-arch,
	linux-s390, linux-am33-list, linux-c6x-dev, linux-rdma,
	linux-hexagon, linux-sh, coreteam, fcoe-devel, xen-devel,
	linux-snps-arc, linux-media, uclinux-h8-devel,
	adi-buildroot-devel, linux-raid, linux-m68k, openrisc,
	Nicolas Dichtel, linux-metag, linux-arm-kernel

On Friday, January 6, 2017 10:43:52 AM CET Nicolas Dichtel wrote:
> Here is the v2 of this series. The first 5 patches are just cleanup: some
> exported headers were still under a non-uapi directory.

Since this is meant as a cleanup, I commented on this to point out a cleaner
way to do the same.

> The patch 6 was spotted by code review: there is no in-tree user of this
> functionality.
> The last patch remove the use of header-y. Now all files under an uapi
> directory are exported.

Very nice!

> asm is a bit special, most of architectures export asm/<arch>/include/uapi/asm
> only, but there is two exceptions:
>  - cris which exports arch/cris/include/uapi/arch-v[10|32];

This is interesting, though not your problem. Maybe someone who understands
cris better can comment on this: How is the decision made about which of
the arch/user.h headers gets used? I couldn't find that in the sources,
but it appears to be based on kernel compile-time settings, which is
wrong for user space header files that should be independent of the kernel
config.

>  - tile which exports arch/tile/include/uapi/arch.
> Because I don't know if the output of 'make headers_install_all' can be changed,
> I introduce subdir-y in Kbuild file. The headers_install_all target copies all
> asm/<arch>/include/uapi/asm to usr/include/asm-<arch> but
> arch/cris/include/uapi/arch-v[10|32] and arch/tile/include/uapi/arch are not
> prefixed (they are put asis in usr/include/). If it's acceptable to modify the
> output of 'make headers_install_all' to export asm headers in
> usr/include/asm-<arch>/asm, then I could remove this new subdir-y and exports
> everything under arch/<arch>/include/uapi/.

I don't know if anyone still uses "make headers_install_all", I suspect
distros these days all use "make headers_install", so it probably
doesn't matter much.

In case of cris, it should be easy enough to move all the contents of the
uapi/arch-*/*.h headers into the respective uapi/asm/*.h headers, they
only seem to be referenced from there.

For tile, I suspect that would not work as the arch/*.h headers are
apparently defined as interfaces for both user space and kernel.

> Note also that exported files for asm are a mix of files listed by:
>  - include/uapi/asm-generic/Kbuild.asm;
>  - arch/x86/include/uapi/asm/Kbuild;
>  - arch/x86/include/asm/Kbuild.
> This complicates a lot the processing (arch/x86/include/asm/Kbuild is also
> used by scripts/Makefile.asm-generic).
> 
> This series has been tested with a 'make headers_install' on x86 and a
> 'make headers_install_all'. I've checked the result of both commands.
> 
> This patch is built against linus tree. I don't know if it should be
> made against antoher tree.

The series should probably get merged through the kbuild tree, but testing
it on mainline is fine here.

	Arnd

^ permalink raw reply	[flat|nested] 8+ messages in thread
* (no subject)
@ 2008-01-16 18:38 Jed Davidow
  0 siblings, 0 replies; 8+ messages in thread
From: Jed Davidow @ 2008-01-16 18:38 UTC (permalink / raw)
  To: linux-raid

unsubscribe linux-raid

^ permalink raw reply	[flat|nested] 8+ messages in thread
* (no subject)
@ 2003-06-04  7:14 Compte centre de calcul UCP
  0 siblings, 0 replies; 8+ messages in thread
From: Compte centre de calcul UCP @ 2003-06-04  7:14 UTC (permalink / raw)
  To: linux-raid

subscribe

-- 
Cordialement,
L'equipe du Service Informatique Recherche
Universite de Cergy-Pontoise
http://www.cdc.u-cergy.fr

^ permalink raw reply	[flat|nested] 8+ messages in thread
* (no subject)
@ 2002-08-21 18:48 Eddie Johnson
  0 siblings, 0 replies; 8+ messages in thread
From: Eddie Johnson @ 2002-08-21 18:48 UTC (permalink / raw)
  To: linux-raid

echo subscribe linux-raid | mail majordomo@vger.kernel.org


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

end of thread, other threads:[~2017-01-13 15:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-11 18:27 (no subject) Eddie Johnson
2002-09-11 19:50 ` Alvin Oga
2002-09-11 20:42 ` Neil Brown
2002-09-12  5:48 ` Luca Berra
  -- strict thread matches above, loose matches on Subject: below --
2017-01-09 11:33 [PATCH v2 0/7] uapi: export all headers under uapi directories Arnd Bergmann
2017-01-13 10:46 ` [PATCH v3 0/8] " Nicolas Dichtel
2017-01-13 10:46   ` [PATCH v3 4/8] x86: stop exporting msr-index.h to userland Nicolas Dichtel
2017-01-13 15:43     ` (no subject) David Howells
2008-01-16 18:38 Jed Davidow
2003-06-04  7:14 Compte centre de calcul UCP
2002-08-21 18:48 Eddie Johnson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).