| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Horst Hummel | ef1597d | 2006-03-24 03:15:23 -0800 | [diff] [blame] | 2 |  * File...........: linux/fs/partitions/ibm.c | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 |  * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com> | 
 | 4 |  *                  Volker Sameske <sameske@de.ibm.com> | 
 | 5 |  * Bugreports.to..: <Linux390@de.ibm.com> | 
 | 6 |  * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  */ | 
 | 8 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/buffer_head.h> | 
 | 10 | #include <linux/hdreg.h> | 
 | 11 | #include <linux/slab.h> | 
 | 12 | #include <asm/dasd.h> | 
 | 13 | #include <asm/ebcdic.h> | 
 | 14 | #include <asm/uaccess.h> | 
 | 15 | #include <asm/vtoc.h> | 
 | 16 |  | 
 | 17 | #include "check.h" | 
 | 18 | #include "ibm.h" | 
 | 19 |  | 
 | 20 | /* | 
| Horst Hummel | ef1597d | 2006-03-24 03:15:23 -0800 | [diff] [blame] | 21 |  * compute the block number from a | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 |  * cyl-cyl-head-head structure | 
 | 23 |  */ | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 24 | static sector_t | 
| Peter Oberparleiter | 4cd5b9f | 2005-11-07 00:59:09 -0800 | [diff] [blame] | 25 | cchh2blk (struct vtoc_cchh *ptr, struct hd_geometry *geo) { | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 26 |  | 
 | 27 | 	sector_t cyl; | 
 | 28 | 	__u16 head; | 
 | 29 |  | 
 | 30 | 	/*decode cylinder and heads for large volumes */ | 
 | 31 | 	cyl = ptr->hh & 0xFFF0; | 
 | 32 | 	cyl <<= 12; | 
 | 33 | 	cyl |= ptr->cc; | 
 | 34 | 	head = ptr->hh & 0x000F; | 
 | 35 | 	return cyl * geo->heads * geo->sectors + | 
 | 36 | 	       head * geo->sectors; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | } | 
 | 38 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* | 
| Horst Hummel | ef1597d | 2006-03-24 03:15:23 -0800 | [diff] [blame] | 40 |  * compute the block number from a | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 |  * cyl-cyl-head-head-block structure | 
 | 42 |  */ | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 43 | static sector_t | 
| Peter Oberparleiter | 4cd5b9f | 2005-11-07 00:59:09 -0800 | [diff] [blame] | 44 | cchhb2blk (struct vtoc_cchhb *ptr, struct hd_geometry *geo) { | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 45 |  | 
 | 46 | 	sector_t cyl; | 
 | 47 | 	__u16 head; | 
 | 48 |  | 
 | 49 | 	/*decode cylinder and heads for large volumes */ | 
 | 50 | 	cyl = ptr->hh & 0xFFF0; | 
 | 51 | 	cyl <<= 12; | 
 | 52 | 	cyl |= ptr->cc; | 
 | 53 | 	head = ptr->hh & 0x000F; | 
 | 54 | 	return	cyl * geo->heads * geo->sectors + | 
 | 55 | 		head * geo->sectors + | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | 		ptr->b; | 
 | 57 | } | 
 | 58 |  | 
 | 59 | /* | 
 | 60 |  */ | 
| Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 61 | int ibm_partition(struct parsed_partitions *state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { | 
| Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 63 | 	struct block_device *bdev = state->bdev; | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 64 | 	int blocksize, res; | 
 | 65 | 	loff_t i_size, offset, size, fmt_size; | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 66 | 	dasd_information2_t *info; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | 	struct hd_geometry *geo; | 
 | 68 | 	char type[5] = {0,}; | 
 | 69 | 	char name[7] = {0,}; | 
| Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 70 | 	union label_t { | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 71 | 		struct vtoc_volume_label_cdl vol; | 
 | 72 | 		struct vtoc_volume_label_ldl lnx; | 
| Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 73 | 		struct vtoc_cms_label cms; | 
 | 74 | 	} *label; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | 	unsigned char *data; | 
 | 76 | 	Sector sect; | 
| Peter Oberparleiter | cffab6b | 2010-07-19 09:22:35 +0200 | [diff] [blame] | 77 | 	sector_t labelsect; | 
| Alexey Dobriyan | 9c867fb | 2010-08-10 18:03:14 -0700 | [diff] [blame] | 78 | 	char tmp[64]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 |  | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 80 | 	res = 0; | 
| Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 81 | 	blocksize = bdev_logical_block_size(bdev); | 
| Horst Hummel | 90f0094 | 2006-03-07 21:55:39 -0800 | [diff] [blame] | 82 | 	if (blocksize <= 0) | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 83 | 		goto out_exit; | 
| Horst Hummel | 90f0094 | 2006-03-07 21:55:39 -0800 | [diff] [blame] | 84 | 	i_size = i_size_read(bdev->bd_inode); | 
 | 85 | 	if (i_size == 0) | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 86 | 		goto out_exit; | 
| Horst Hummel | 90f0094 | 2006-03-07 21:55:39 -0800 | [diff] [blame] | 87 |  | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 88 | 	info = kmalloc(sizeof(dasd_information2_t), GFP_KERNEL); | 
 | 89 | 	if (info == NULL) | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 90 | 		goto out_exit; | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 91 | 	geo = kmalloc(sizeof(struct hd_geometry), GFP_KERNEL); | 
 | 92 | 	if (geo == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | 		goto out_nogeo; | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 94 | 	label = kmalloc(sizeof(union label_t), GFP_KERNEL); | 
 | 95 | 	if (label == NULL) | 
| Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 96 | 		goto out_nolab; | 
| Horst Hummel | ef1597d | 2006-03-24 03:15:23 -0800 | [diff] [blame] | 97 |  | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 98 | 	if (ioctl_by_bdev(bdev, BIODASDINFO2, (unsigned long)info) != 0 || | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 	    ioctl_by_bdev(bdev, HDIO_GETGEO, (unsigned long)geo) != 0) | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 100 | 		goto out_freeall; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 |  | 
 | 102 | 	/* | 
| Peter Oberparleiter | cffab6b | 2010-07-19 09:22:35 +0200 | [diff] [blame] | 103 | 	 * Special case for FBA disks: label sector does not depend on | 
 | 104 | 	 * blocksize. | 
 | 105 | 	 */ | 
 | 106 | 	if ((info->cu_type == 0x6310 && info->dev_type == 0x9336) || | 
 | 107 | 	    (info->cu_type == 0x3880 && info->dev_type == 0x3370)) | 
 | 108 | 		labelsect = info->label_block; | 
 | 109 | 	else | 
 | 110 | 		labelsect = info->label_block * (blocksize >> 9); | 
 | 111 |  | 
 | 112 | 	/* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | 	 * Get volume label, extract name and type. | 
 | 114 | 	 */ | 
| Peter Oberparleiter | cffab6b | 2010-07-19 09:22:35 +0200 | [diff] [blame] | 115 | 	data = read_part_sector(state, labelsect, §); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | 	if (data == NULL) | 
 | 117 | 		goto out_readerr; | 
 | 118 |  | 
| Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 119 | 	memcpy(label, data, sizeof(union label_t)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | 	put_dev_sector(sect); | 
 | 121 |  | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 122 | 	if ((!info->FBA_layout) && (!strcmp(info->type, "ECKD"))) { | 
 | 123 | 		strncpy(type, label->vol.vollbl, 4); | 
 | 124 | 		strncpy(name, label->vol.volid, 6); | 
 | 125 | 	} else { | 
 | 126 | 		strncpy(type, label->lnx.vollbl, 4); | 
 | 127 | 		strncpy(name, label->lnx.volid, 6); | 
 | 128 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | 	EBCASC(type, 4); | 
 | 130 | 	EBCASC(name, 6); | 
 | 131 |  | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 132 | 	res = 1; | 
 | 133 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | 	/* | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 135 | 	 * Three different formats: LDL, CDL and unformated disk | 
 | 136 | 	 * | 
 | 137 | 	 * identified by info->format | 
 | 138 | 	 * | 
 | 139 | 	 * unformated disks we do not have to care about | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | 	 */ | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 141 | 	if (info->format == DASD_FORMAT_LDL) { | 
 | 142 | 		if (strncmp(type, "CMS1", 4) == 0) { | 
 | 143 | 			/* | 
 | 144 | 			 * VM style CMS1 labeled disk | 
 | 145 | 			 */ | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 146 | 			blocksize = label->cms.block_size; | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 147 | 			if (label->cms.disk_offset != 0) { | 
| Alexey Dobriyan | 9c867fb | 2010-08-10 18:03:14 -0700 | [diff] [blame] | 148 | 				snprintf(tmp, sizeof(tmp), "CMS1/%8s(MDSK):", name); | 
 | 149 | 				strlcat(state->pp_buf, tmp, PAGE_SIZE); | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 150 | 				/* disk is reserved minidisk */ | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 151 | 				offset = label->cms.disk_offset; | 
 | 152 | 				size = (label->cms.block_count - 1) | 
 | 153 | 					* (blocksize >> 9); | 
 | 154 | 			} else { | 
| Alexey Dobriyan | 9c867fb | 2010-08-10 18:03:14 -0700 | [diff] [blame] | 155 | 				snprintf(tmp, sizeof(tmp), "CMS1/%8s:", name); | 
 | 156 | 				strlcat(state->pp_buf, tmp, PAGE_SIZE); | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 157 | 				offset = (info->label_block + 1); | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 158 | 				size = label->cms.block_count | 
 | 159 | 					* (blocksize >> 9); | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 160 | 			} | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 161 | 			put_partition(state, 1, offset*(blocksize >> 9), | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 162 | 				      size-offset*(blocksize >> 9)); | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 163 | 		} else { | 
 | 164 | 			if (strncmp(type, "LNX1", 4) == 0) { | 
| Alexey Dobriyan | 9c867fb | 2010-08-10 18:03:14 -0700 | [diff] [blame] | 165 | 				snprintf(tmp, sizeof(tmp), "LNX1/%8s:", name); | 
 | 166 | 				strlcat(state->pp_buf, tmp, PAGE_SIZE); | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 167 | 				if (label->lnx.ldl_version == 0xf2) { | 
 | 168 | 					fmt_size = label->lnx.formatted_blocks | 
 | 169 | 						* (blocksize >> 9); | 
 | 170 | 				} else if (!strcmp(info->type, "ECKD")) { | 
 | 171 | 					/* formated w/o large volume support */ | 
 | 172 | 					fmt_size = geo->cylinders * geo->heads | 
 | 173 | 					      * geo->sectors * (blocksize >> 9); | 
 | 174 | 				} else { | 
 | 175 | 					/* old label and no usable disk geometry | 
 | 176 | 					 * (e.g. DIAG) */ | 
 | 177 | 					fmt_size = i_size >> 9; | 
 | 178 | 				} | 
 | 179 | 				size = i_size >> 9; | 
 | 180 | 				if (fmt_size < size) | 
 | 181 | 					size = fmt_size; | 
 | 182 | 				offset = (info->label_block + 1); | 
 | 183 | 			} else { | 
 | 184 | 				/* unlabeled disk */ | 
| Heiko Carstens | 2041f65 | 2010-08-13 10:06:43 +0200 | [diff] [blame] | 185 | 				strlcat(state->pp_buf, "(nonl)", PAGE_SIZE); | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 186 | 				size = i_size >> 9; | 
 | 187 | 				offset = (info->label_block + 1); | 
 | 188 | 			} | 
 | 189 | 			put_partition(state, 1, offset*(blocksize >> 9), | 
 | 190 | 				      size-offset*(blocksize >> 9)); | 
 | 191 | 		} | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 192 | 	} else if (info->format == DASD_FORMAT_CDL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | 		/* | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 194 | 		 * New style CDL formatted disk | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | 		 */ | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 196 | 		sector_t blk; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | 		int counter; | 
 | 198 |  | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 199 | 		/* | 
 | 200 | 		 * check if VOL1 label is available | 
 | 201 | 		 * if not, something is wrong, skipping partition detection | 
 | 202 | 		 */ | 
 | 203 | 		if (strncmp(type, "VOL1",  4) == 0) { | 
| Alexey Dobriyan | 9c867fb | 2010-08-10 18:03:14 -0700 | [diff] [blame] | 204 | 			snprintf(tmp, sizeof(tmp), "VOL1/%8s:", name); | 
 | 205 | 			strlcat(state->pp_buf, tmp, PAGE_SIZE); | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 206 | 			/* | 
 | 207 | 			 * get block number and read then go through format1 | 
 | 208 | 			 * labels | 
 | 209 | 			 */ | 
 | 210 | 			blk = cchhb2blk(&label->vol.vtoc, geo) + 1; | 
 | 211 | 			counter = 0; | 
| Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 212 | 			data = read_part_sector(state, blk * (blocksize/512), | 
 | 213 | 						§); | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 214 | 			while (data != NULL) { | 
 | 215 | 				struct vtoc_format1_label f1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 |  | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 217 | 				memcpy(&f1, data, | 
 | 218 | 				       sizeof(struct vtoc_format1_label)); | 
 | 219 | 				put_dev_sector(sect); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 |  | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 221 | 				/* skip FMT4 / FMT5 / FMT7 labels */ | 
 | 222 | 				if (f1.DS1FMTID == _ascebc['4'] | 
 | 223 | 				    || f1.DS1FMTID == _ascebc['5'] | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 224 | 				    || f1.DS1FMTID == _ascebc['7'] | 
 | 225 | 				    || f1.DS1FMTID == _ascebc['9']) { | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 226 | 					blk++; | 
| Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 227 | 					data = read_part_sector(state, | 
 | 228 | 						blk * (blocksize/512), §); | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 229 | 					continue; | 
 | 230 | 				} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 |  | 
| Stefan Weinhuber | b44b0ab3 | 2009-03-26 15:23:47 +0100 | [diff] [blame] | 232 | 				/* only FMT1 and 8 labels valid at this point */ | 
 | 233 | 				if (f1.DS1FMTID != _ascebc['1'] && | 
 | 234 | 				    f1.DS1FMTID != _ascebc['8']) | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 235 | 					break; | 
 | 236 |  | 
 | 237 | 				/* OK, we got valid partition data */ | 
 | 238 | 				offset = cchh2blk(&f1.DS1EXT1.llimit, geo); | 
 | 239 | 				size  = cchh2blk(&f1.DS1EXT1.ulimit, geo) - | 
 | 240 | 					offset + geo->sectors; | 
 | 241 | 				if (counter >= state->limit) | 
 | 242 | 					break; | 
 | 243 | 				put_partition(state, counter + 1, | 
 | 244 | 					      offset * (blocksize >> 9), | 
 | 245 | 					      size * (blocksize >> 9)); | 
 | 246 | 				counter++; | 
 | 247 | 				blk++; | 
| Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 248 | 				data = read_part_sector(state, | 
 | 249 | 						blk * (blocksize/512), §); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | 			} | 
 | 251 |  | 
| Stefan Haberland | bf1a95a | 2007-07-10 11:24:11 +0200 | [diff] [blame] | 252 | 			if (!data) | 
 | 253 | 				/* Are we not supposed to report this ? */ | 
 | 254 | 				goto out_readerr; | 
 | 255 | 		} else | 
 | 256 | 			printk(KERN_WARNING "Warning, expected Label VOL1 not " | 
 | 257 | 			       "found, treating as CDL formated Disk"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | 	} | 
 | 260 |  | 
| Alexey Dobriyan | 9c867fb | 2010-08-10 18:03:14 -0700 | [diff] [blame] | 261 | 	strlcat(state->pp_buf, "\n", PAGE_SIZE); | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 262 | 	goto out_freeall; | 
 | 263 |  | 
| Horst Hummel | ef1597d | 2006-03-24 03:15:23 -0800 | [diff] [blame] | 264 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | out_readerr: | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 266 | 	res = -1; | 
 | 267 | out_freeall: | 
| Peter Oberparleiter | 56dc6a8 | 2006-01-06 00:19:09 -0800 | [diff] [blame] | 268 | 	kfree(label); | 
 | 269 | out_nolab: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | 	kfree(geo); | 
 | 271 | out_nogeo: | 
 | 272 | 	kfree(info); | 
| Suzuki K P | 57881dd | 2006-12-06 20:35:16 -0800 | [diff] [blame] | 273 | out_exit: | 
 | 274 | 	return res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | } |