mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 20:06:46 +00:00 
			
		
		
		
	 9c867fbe06
			
		
	
	
		9c867fbe06
		
	
	
	
	
		
			
			Fix this garbage happening quite often: ==> sda: scsi 3:0:0:0: CD-ROM TOSHIBA ==> sda1 sda2 sda3 sda4 <sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray ^^^ Uniform CD-ROM driver Revision: 3.20 sr 3:0:0:0: Attached scsi CD-ROM sr0 ==> sda5 sda6 sda7 > Make "sda: sda1 ..." lines actually lines. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *  fs/partitions/osf.c
 | |
|  *
 | |
|  *  Code extracted from drivers/block/genhd.c
 | |
|  *
 | |
|  *  Copyright (C) 1991-1998  Linus Torvalds
 | |
|  *  Re-organised Feb 1998 Russell King
 | |
|  */
 | |
| 
 | |
| #include "check.h"
 | |
| #include "osf.h"
 | |
| 
 | |
| int osf_partition(struct parsed_partitions *state)
 | |
| {
 | |
| 	int i;
 | |
| 	int slot = 1;
 | |
| 	Sector sect;
 | |
| 	unsigned char *data;
 | |
| 	struct disklabel {
 | |
| 		__le32 d_magic;
 | |
| 		__le16 d_type,d_subtype;
 | |
| 		u8 d_typename[16];
 | |
| 		u8 d_packname[16];
 | |
| 		__le32 d_secsize;
 | |
| 		__le32 d_nsectors;
 | |
| 		__le32 d_ntracks;
 | |
| 		__le32 d_ncylinders;
 | |
| 		__le32 d_secpercyl;
 | |
| 		__le32 d_secprtunit;
 | |
| 		__le16 d_sparespertrack;
 | |
| 		__le16 d_sparespercyl;
 | |
| 		__le32 d_acylinders;
 | |
| 		__le16 d_rpm, d_interleave, d_trackskew, d_cylskew;
 | |
| 		__le32 d_headswitch, d_trkseek, d_flags;
 | |
| 		__le32 d_drivedata[5];
 | |
| 		__le32 d_spare[5];
 | |
| 		__le32 d_magic2;
 | |
| 		__le16 d_checksum;
 | |
| 		__le16 d_npartitions;
 | |
| 		__le32 d_bbsize, d_sbsize;
 | |
| 		struct d_partition {
 | |
| 			__le32 p_size;
 | |
| 			__le32 p_offset;
 | |
| 			__le32 p_fsize;
 | |
| 			u8  p_fstype;
 | |
| 			u8  p_frag;
 | |
| 			__le16 p_cpg;
 | |
| 		} d_partitions[8];
 | |
| 	} * label;
 | |
| 	struct d_partition * partition;
 | |
| 
 | |
| 	data = read_part_sector(state, 0, §);
 | |
| 	if (!data)
 | |
| 		return -1;
 | |
| 
 | |
| 	label = (struct disklabel *) (data+64);
 | |
| 	partition = label->d_partitions;
 | |
| 	if (le32_to_cpu(label->d_magic) != DISKLABELMAGIC) {
 | |
| 		put_dev_sector(sect);
 | |
| 		return 0;
 | |
| 	}
 | |
| 	if (le32_to_cpu(label->d_magic2) != DISKLABELMAGIC) {
 | |
| 		put_dev_sector(sect);
 | |
| 		return 0;
 | |
| 	}
 | |
| 	for (i = 0 ; i < le16_to_cpu(label->d_npartitions); i++, partition++) {
 | |
| 		if (slot == state->limit)
 | |
| 		        break;
 | |
| 		if (le32_to_cpu(partition->p_size))
 | |
| 			put_partition(state, slot,
 | |
| 				le32_to_cpu(partition->p_offset),
 | |
| 				le32_to_cpu(partition->p_size));
 | |
| 		slot++;
 | |
| 	}
 | |
| 	strlcat(state->pp_buf, "\n", PAGE_SIZE);
 | |
| 	put_dev_sector(sect);
 | |
| 	return 1;
 | |
| }
 |