Searched refs:bad (Results 1 - 200 of 2032) sorted by relevance

1234567891011

/linux-4.1.27/include/linux/ceph/
H A Ddecode.h55 #define ceph_decode_need(p, end, n, bad) \
58 goto bad; \
61 #define ceph_decode_64_safe(p, end, v, bad) \
63 ceph_decode_need(p, end, sizeof(u64), bad); \
66 #define ceph_decode_32_safe(p, end, v, bad) \
68 ceph_decode_need(p, end, sizeof(u32), bad); \
71 #define ceph_decode_16_safe(p, end, v, bad) \
73 ceph_decode_need(p, end, sizeof(u16), bad); \
76 #define ceph_decode_8_safe(p, end, v, bad) \
78 ceph_decode_need(p, end, sizeof(u8), bad); \
82 #define ceph_decode_copy_safe(p, end, pv, n, bad) \
84 ceph_decode_need(p, end, n, bad); \
112 ceph_decode_32_safe(&sp, end, len, bad); ceph_extract_encoded_string()
114 goto bad; ceph_extract_encoded_string()
130 bad: ceph_extract_encoded_string()
220 #define ceph_encode_need(p, end, n, bad) \
223 goto bad; \
226 #define ceph_encode_64_safe(p, end, v, bad) \
228 ceph_encode_need(p, end, sizeof(u64), bad); \
231 #define ceph_encode_32_safe(p, end, v, bad) \
233 ceph_encode_need(p, end, sizeof(u32), bad); \
236 #define ceph_encode_16_safe(p, end, v, bad) \
238 ceph_encode_need(p, end, sizeof(u16), bad); \
241 #define ceph_encode_8_safe(p, end, v, bad) \
243 ceph_encode_need(p, end, sizeof(u8), bad); \
247 #define ceph_encode_copy_safe(p, end, pv, n, bad) \
249 ceph_encode_need(p, end, n, bad); \
252 #define ceph_encode_string_safe(p, end, s, n, bad) \
254 ceph_encode_need(p, end, n, bad); \
H A Dmsgr.h87 #define CEPH_MSGR_TAG_BADPROTOVER 10 /* bad protocol version */
88 #define CEPH_MSGR_TAG_BADAUTHORIZER 11 /* bad authorizer */
/linux-4.1.27/arch/mips/include/asm/sn/
H A Dfru.h20 confidence_t km_confidence; /* confidence level that the memory is bad
24 /* confidence level that dimm[i] is bad
31 confidence_t kc_confidence; /* confidence level that cpu is bad */
32 confidence_t kc_icache; /* confidence level that instr. cache is bad */
33 confidence_t kc_dcache; /* confidence level that data cache is bad */
34 confidence_t kc_scache; /* confidence level that sec. cache is bad */
35 confidence_t kc_sysbus; /* confidence level that sysad/cmd/state bus is bad */
39 confidence_t kpb_belief; /* confidence level that the pci bus is bad */
41 /* confidence level that the pci dev is bad */
/linux-4.1.27/drivers/mtd/onenand/
H A Donenand_bbt.c27 * Check for a pattern at the given place. Used to search bad block
28 * tables and good / bad block identifiers. Same as check_pattern, but
47 * create_bbt - [GENERIC] Create a bad block table by scanning the device
50 * @param bd descriptor for the good/bad block search pattern
54 * Create a bad block table by scanning the device
55 * for the given good/bad block identify pattern
68 printk(KERN_INFO "Scanning device for bad blocks\n"); create_bbt()
98 /* If it is a initial bad block, just ignore it */ create_bbt()
106 "initial bad block\n", i >> 1); create_bbt()
125 * onenand_memory_bbt - [GENERIC] create a memory based bad block table
127 * @param bd descriptor for the good/bad block search pattern
130 * for manufacturer / software marked good / bad blocks
140 * onenand_isbad_bbt - [OneNAND Interface] Check if a block is bad
143 * @param allowbbt allow access to bad block table region
169 * onenand_scan_bbt - [OneNAND Interface] scan, find, read and maybe create bad block table(s)
171 * @param bd descriptor for the good/bad block search pattern
173 * The function checks, if a bad block table(s) is/are already
175 * marked good / bad blocks and writes the bad block table(s) to
178 * The bad block table memory is allocated here. It is freed
189 /* Allocate memory (2bit per block) and clear the memory bad block table */ onenand_scan_bbt()
194 /* Set the bad block position */ onenand_scan_bbt()
203 /* Scan the device to build a memory based bad block table */ onenand_scan_bbt()
214 * Define some generic bad / good block scan pattern which are used
215 * while scanning a device for factory marked good / bad blocks.
227 * onenand_default_bbt - [OneNAND Interface] Select a default bad block table for the device
230 * This function selects the default bad block table
/linux-4.1.27/fs/ceph/
H A Dmdsmap.c63 ceph_decode_16_safe(p, end, version, bad); ceph_mdsmap_decode()
66 goto bad; ceph_mdsmap_decode()
69 ceph_decode_need(p, end, 8*sizeof(u32) + sizeof(u64), bad); ceph_mdsmap_decode()
97 ceph_decode_need(p, end, sizeof(u64)*2 + 1 + sizeof(u32), bad); ceph_mdsmap_decode()
107 bad); ceph_mdsmap_decode()
116 ceph_decode_32_safe(p, end, namelen, bad); ceph_mdsmap_decode()
119 ceph_decode_32_safe(p, end, num_export_targets, bad); ceph_mdsmap_decode()
155 ceph_decode_32_safe(p, end, n, bad); ceph_mdsmap_decode()
160 ceph_decode_need(p, end, sizeof(u64)*(n+1), bad); ceph_mdsmap_decode()
171 bad: ceph_mdsmap_decode()
H A Dmds_client.c77 ceph_decode_32_safe(p, end, info->symlink_len, bad); parse_reply_info_in()
78 ceph_decode_need(p, end, info->symlink_len, bad); parse_reply_info_in()
84 sizeof(info->dir_layout), bad); parse_reply_info_in()
88 ceph_decode_32_safe(p, end, info->xattr_len, bad); parse_reply_info_in()
89 ceph_decode_need(p, end, info->xattr_len, bad); parse_reply_info_in()
94 ceph_decode_64_safe(p, end, info->inline_version, bad); parse_reply_info_in()
95 ceph_decode_32_safe(p, end, info->inline_len, bad); parse_reply_info_in()
96 ceph_decode_need(p, end, info->inline_len, bad); parse_reply_info_in()
103 bad: parse_reply_info_in()
123 goto bad; parse_reply_info_trace()
128 goto bad; parse_reply_info_trace()
130 ceph_decode_32_safe(p, end, info->dname_len, bad); parse_reply_info_trace()
131 ceph_decode_need(p, end, info->dname_len, bad); parse_reply_info_trace()
145 goto bad; parse_reply_info_trace()
148 bad: parse_reply_info_trace()
167 goto bad; parse_reply_info_dir()
171 goto bad; parse_reply_info_dir()
173 ceph_decode_need(p, end, sizeof(num) + 2, bad); parse_reply_info_dir()
188 goto bad; parse_reply_info_dir()
194 ceph_decode_need(p, end, sizeof(u32)*2, bad); parse_reply_info_dir()
196 ceph_decode_need(p, end, info->dir_dname_len[i], bad); parse_reply_info_dir()
214 goto bad; parse_reply_info_dir()
217 bad: parse_reply_info_dir()
232 goto bad; parse_reply_info_filelock()
238 goto bad; parse_reply_info_filelock()
241 bad: parse_reply_info_filelock()
262 goto bad; parse_reply_info_create()
265 bad: parse_reply_info_create()
303 ceph_decode_32_safe(&p, end, len, bad); parse_reply_info()
305 ceph_decode_need(&p, end, len, bad); parse_reply_info()
312 ceph_decode_32_safe(&p, end, len, bad); parse_reply_info()
314 ceph_decode_need(&p, end, len, bad); parse_reply_info()
321 ceph_decode_32_safe(&p, end, len, bad); parse_reply_info()
327 goto bad; parse_reply_info()
330 bad: parse_reply_info()
2526 ceph_decode_need(&p, end, 2*sizeof(u32), bad); handle_forward()
2559 bad: handle_forward()
2578 goto bad; handle_session()
2652 pr_err("mdsc_handle_session bad op %d mds%d\n", op, mds); handle_session()
2666 bad: handle_session()
3111 goto bad; handle_lease()
3118 goto bad; handle_lease()
3192 bad: handle_lease()
3641 ceph_decode_need(&p, end, sizeof(fsid)+2*sizeof(u32), bad); ceph_mdsc_handle_map()
3684 bad: ceph_mdsc_handle_map()
/linux-4.1.27/include/linux/mtd/
H A Dbbm.h35 * struct nand_bbt_descr - bad block table descriptor
48 * bad) block in the stored bbt
49 * @pattern: pattern to identify bad block table or factory marked good /
50 * bad blocks, can be NULL, if len = 0
52 * Descriptor for the bad block table marker and the descriptor for the
53 * pattern which identifies good and bad blocks. The assumption is made
69 /* Options for the bad block table descriptors */
77 /* The bad block table is in the last good block of the device */
98 /* Search good / bad pattern on the first and the second page */
100 /* Search good / bad pattern on the last page of the eraseblock */
103 * Use a flash based bad block table. By default, OOB identifier is saved in
104 * OOB area. This option is passed to the default bad block table function.
108 * Do not store flash based bad block table marker in the OOB area; store it
113 * Do not write new bad block markers to OOB; useful, e.g., when ECC covers
145 * @badblockpos: [INTERN] position of the bad block marker in the oob area
147 * @bbt: [INTERN] bad block table pointer
148 * @isbad_bbt: function to determine if a block is bad
149 * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for
150 * initial bad block scan
H A Dnftl.h32 #define BLOCK_RESERVED 0xfffc /* bios block or bad block */
H A Dnand.h552 * @block_bad: [REPLACEABLE] check if a block is bad, using OOB markers
553 * @block_markbad: [REPLACEABLE] mark a block bad
574 * @scan_bbt: [REPLACEABLE] function to scan bad block table
588 * @bbt_options: [INTERN] bad block specific options. All options used
591 * @badblockpos: [INTERN] position of the bad block marker in the oob
594 * bad block marker position; i.e., BBM == 11110111b is
595 * not bad when badblockbits == 7
627 * @bbt: [INTERN] bad block table pointer
628 * @bbt_td: [REPLACEABLE] bad block table descriptor for flash
630 * @bbt_md: [REPLACEABLE] bad block table mirror descriptor
631 * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for initial
632 * bad block scan.
/linux-4.1.27/net/ceph/
H A Dbuffer.c47 ceph_decode_need(p, end, sizeof(u32), bad); ceph_decode_buffer()
50 ceph_decode_need(p, end, len, bad); ceph_decode_buffer()
56 bad: ceph_decode_buffer()
H A Dosdmap.c59 ceph_decode_need(p, end, (1+b->h.size) * sizeof(u32), bad); crush_decode_uniform_bucket()
62 bad: crush_decode_uniform_bucket()
77 ceph_decode_need(p, end, 2 * b->h.size * sizeof(u32), bad); crush_decode_list_bucket()
83 bad: crush_decode_list_bucket()
92 ceph_decode_8_safe(p, end, b->num_nodes, bad); crush_decode_tree_bucket()
96 ceph_decode_need(p, end, b->num_nodes * sizeof(u32), bad); crush_decode_tree_bucket()
100 bad: crush_decode_tree_bucket()
115 ceph_decode_need(p, end, 2 * b->h.size * sizeof(u32), bad); crush_decode_straw_bucket()
121 bad: crush_decode_straw_bucket()
133 ceph_decode_need(p, end, b->h.size * sizeof(u32), bad); crush_decode_straw2_bucket()
137 bad: crush_decode_straw2_bucket()
144 ceph_decode_32_safe(p, end, len ,bad); skip_name_map()
148 ceph_decode_32_safe(p, end, strlen, bad); skip_name_map()
152 bad: skip_name_map()
178 ceph_decode_need(p, end, 4*sizeof(u32), bad); crush_decode()
183 goto bad; crush_decode()
202 ceph_decode_32_safe(p, end, alg, bad); crush_decode()
228 goto bad; crush_decode()
235 ceph_decode_need(p, end, 4*sizeof(u32), bad); crush_decode()
254 ceph_decode_need(p, end, b->size*sizeof(u32), bad); crush_decode()
263 goto bad; crush_decode()
269 goto bad; crush_decode()
275 goto bad; crush_decode()
281 goto bad; crush_decode()
287 goto bad; crush_decode()
298 ceph_decode_32_safe(p, end, yes, bad); crush_decode()
310 ceph_decode_32_safe(p, end, yes, bad); crush_decode()
315 goto bad; crush_decode()
324 ceph_decode_copy_safe(p, end, &r->mask, 4, bad); /* 4 u8's */ crush_decode()
325 ceph_decode_need(p, end, r->len*3*sizeof(u32), bad); crush_decode()
368 bad: crush_decode()
545 ceph_decode_need(p, end, 2 + 4, bad); decode_pool()
557 ceph_decode_need(p, end, len, bad); decode_pool()
616 bad: decode_pool()
626 ceph_decode_32_safe(p, end, num, bad); decode_pool_names()
629 ceph_decode_64_safe(p, end, pool, bad); decode_pool_names()
630 ceph_decode_32_safe(p, end, len, bad); decode_pool_names()
632 ceph_decode_need(p, end, len, bad); decode_pool_names()
647 bad: decode_pool_names()
1064 goto bad; osdmap_decode()
1077 goto bad; osdmap_decode()
1082 goto bad; osdmap_decode()
1094 goto bad; osdmap_decode()
1122 goto bad; osdmap_decode()
1128 goto bad; osdmap_decode()
1135 goto bad; osdmap_decode()
1148 goto bad; osdmap_decode()
1160 bad: osdmap_decode()
1217 goto bad; osdmap_apply_incremental()
1244 goto bad; osdmap_apply_incremental()
1260 goto bad; osdmap_apply_incremental()
1275 goto bad; osdmap_apply_incremental()
1280 goto bad; osdmap_apply_incremental()
1340 goto bad; osdmap_apply_incremental()
1346 goto bad; osdmap_apply_incremental()
1353 goto bad; osdmap_apply_incremental()
1364 bad: osdmap_apply_incremental()
H A Dpagevec.c103 int l, bad; ceph_copy_user_to_page_vector() local
107 bad = copy_from_user(page_address(pages[i]) + po, data, l); ceph_copy_user_to_page_vector()
108 if (bad == l) ceph_copy_user_to_page_vector()
110 data += l - bad; ceph_copy_user_to_page_vector()
111 left -= l - bad; ceph_copy_user_to_page_vector()
112 po += l - bad; ceph_copy_user_to_page_vector()
H A Dauth.c119 ceph_decode_need(&p, end, 1 + sizeof(u32), bad); ceph_auth_build_hello()
123 ceph_decode_need(&p, end, num * sizeof(u32), bad); ceph_auth_build_hello()
130 ceph_decode_need(&p, end, sizeof(u64), bad); ceph_auth_build_hello()
139 bad: ceph_auth_build_hello()
191 ceph_decode_need(&p, end, sizeof(u32) * 3 + sizeof(u64), bad); ceph_handle_auth_reply()
198 ceph_decode_need(&p, end, sizeof(u32), bad); ceph_handle_auth_reply()
203 goto bad; ceph_handle_auth_reply()
250 bad: ceph_handle_auth_reply()
H A Dauth_none.c80 goto bad; ceph_auth_none_create_authorizer()
98 bad: ceph_auth_none_create_authorizer()
H A Dauth_x.c161 ceph_decode_need(p, end, sizeof(u32) + 1, bad); process_one_ticket()
168 goto bad; process_one_ticket()
188 goto bad; process_one_ticket()
203 ceph_decode_8_safe(p, end, is_enc, bad); process_one_ticket()
220 ceph_decode_32_safe(ptp, tpend, dlen, bad); process_one_ticket()
222 ceph_decode_need(ptp, tpend, 1 + sizeof(u64), bad); process_one_ticket()
249 bad: process_one_ticket()
263 ceph_decode_8_safe(&p, end, reply_struct_v, bad); ceph_x_proc_ticket_reply()
267 ceph_decode_32_safe(&p, end, num, bad); ceph_x_proc_ticket_reply()
278 bad: ceph_x_proc_ticket_reply()
360 ceph_decode_need(p, end, 1 + sizeof(u64), bad); ceph_x_encode_ticket()
367 ceph_encode_32_safe(p, end, len, bad); ceph_x_encode_ticket()
368 ceph_encode_copy_safe(p, end, buf, len, bad); ceph_x_encode_ticket()
370 ceph_encode_32_safe(p, end, 0, bad); ceph_x_encode_ticket()
374 bad: ceph_x_encode_ticket()
H A Dcrypto.c39 ceph_decode_need(p, end, 2*sizeof(u16) + sizeof(key->created), bad); ceph_crypto_key_decode()
43 ceph_decode_need(p, end, key->len, bad); ceph_crypto_key_decode()
50 bad: ceph_crypto_key_decode()
333 pr_err("ceph_aes_decrypt got bad padding %d on src len %d\n", ceph_aes_decrypt()
335 return -EPERM; /* bad padding */ ceph_aes_decrypt()
401 pr_err("ceph_aes_decrypt got bad padding %d on src len %d\n", ceph_aes_decrypt2()
403 return -EPERM; /* bad padding */ ceph_aes_decrypt2()
H A Dmon_client.c49 ceph_decode_32_safe(&p, end, len, bad); ceph_monmap_decode()
50 ceph_decode_need(&p, end, len, bad); ceph_monmap_decode()
54 ceph_decode_16_safe(&p, end, version, bad); ceph_monmap_decode()
56 ceph_decode_need(&p, end, sizeof(fsid) + 2*sizeof(u32), bad); ceph_monmap_decode()
61 ceph_decode_need(&p, end, num_mon*sizeof(m->mon_inst[0]), bad); ceph_monmap_decode()
64 goto bad; ceph_monmap_decode()
82 bad: ceph_monmap_decode()
245 goto bad; handle_subscribe_ack()
260 bad: handle_subscribe_ack()
554 goto bad; handle_statfs_reply()
571 bad: handle_statfs_reply()
629 ceph_decode_need(&p, end, 2*sizeof(u64), bad); handle_get_version_reply()
632 goto bad; handle_get_version_reply()
648 bad: handle_get_version_reply()
/linux-4.1.27/drivers/mtd/tests/
H A Dmtd_test.c40 pr_info("block %d is bad\n", ebnum); is_block_bad()
48 int i, bad = 0; mtdtest_scan_for_bad_eraseblocks() local
53 pr_info("scanning for bad eraseblocks\n"); mtdtest_scan_for_bad_eraseblocks()
57 bad += 1; mtdtest_scan_for_bad_eraseblocks()
60 pr_info("scanned %d eraseblocks, %d are bad\n", i, bad); mtdtest_scan_for_bad_eraseblocks()
/linux-4.1.27/drivers/mtd/nand/
H A Dnand_bbt.c15 * When nand_scan_bbt is called, then it tries to find the bad block table
18 * marked good / bad blocks. This information is used to create a memory BBT.
19 * Once a new bad block is discovered then the "factory" information is updated
26 * If the tables are not versioned, then we "or" the bad block information.
29 * good / bad blocks and the bad block tables are created.
34 * The auto generated bad block table is located in the last good blocks
45 * 00b: block is factory marked bad
46 * 01b, 10b: block is marked bad due to wear
48 * The memory bad block table uses the following scheme:
50 * 01b: block is marked bad due to wear
52 * 11b: block is factory marked bad
54 * Multichip devices like DOC store the bad block info per floor.
112 * Check for a pattern at the given place. Used to search bad block tables and
113 * good / bad block identifiers.
132 * Check for a pattern at the given place. Used to search bad block tables and
133 * good / bad block identifiers. Same as check_pattern, but no optional empty
164 * read_bbt - [GENERIC] Read the bad block table starting from page
172 * Read the bad block table starting from page.
237 pr_info("nand_read_bbt: bad block at 0x%012llx\n", read_bbt()
240 /* Factory marked bad or worn out? */ read_bbt()
257 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
260 * @td: descriptor for the bad block table
264 * Read the bad block table for all chips starting at a given page. We assume
382 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
385 * @td: descriptor for the bad block table
386 * @md: descriptor for the bad block table mirror
388 * Read the bad block table(s) for all chips starting at a given page. We
447 * create_bbt - [GENERIC] Create a bad block table by scanning the device
450 * @bd: descriptor for the good/bad block search pattern
454 * Create a bad block table by scanning the device for the given good/bad block
465 pr_info("Scanning device for bad blocks\n"); create_bbt()
513 * search_bbt - [GENERIC] scan the device for a specific bad block table
516 * @td: descriptor for the bad block table
518 * Read the bad block table by searching for a given ident pattern. Search is
522 * the bad block information of this chip. This is necessary to provide support
590 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
593 * @td: descriptor for the bad block table
594 * @md: descriptor for the bad block table mirror
596 * Search and read the bad block table(s).
611 * write_bbt - [GENERIC] (Re)write the bad block table
614 * @td: descriptor for the bad block table
615 * @md: descriptor for the bad block table mirror
618 * (Re)write the bad block table.
642 /* Write bad block table per chip rather than per device? */ write_bbt()
670 * Automatic placement of the bad block table. Search direction write_bbt()
683 /* Check, if the block is bad */ write_bbt()
695 pr_err("No space left to write bad block table\n"); write_bbt()
728 pr_info("nand_bbt: error reading block for writing the bad block table\n"); write_bbt()
731 pr_warn("nand_bbt: ECC error while reading block for writing bad block table\n"); write_bbt()
811 pr_warn("nand_bbt: error while writing bad block table %d\n", res); write_bbt()
816 * nand_memory_bbt - [GENERIC] create a memory based bad block table
818 * @bd: descriptor for the good/bad block search pattern
821 * manufacturer / software marked good / bad blocks.
834 * @bd: descriptor for the good/bad block search pattern
895 /* Create the bad block table by scanning the device? */ check_create()
941 /* Write the bad block table to the device? */ check_create()
948 /* Write the mirror bad block table to the device? */ check_create()
959 * mark_bbt_regions - [GENERIC] mark the bad block table regions
961 * @td: bad block table descriptor
963 * The bad block table regions are marked as "bad" to prevent accidental
1019 * verify_bbt_descr - verify the bad block description
1023 * This functions performs a few sanity checks on the bad block description
1067 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
1069 * @bd: descriptor for the good/bad block search pattern
1071 * The function checks, if a bad block table(s) is/are already available. If
1072 * not it scans the device for manufacturer marked good / bad blocks and writes
1073 * the bad block table(s) to the selected place.
1075 * The bad block table memory is allocated here. It must be freed by calling
1088 * Allocate memory (2bit per block) and clear the memory bad block nand_scan_bbt()
1097 * memory based bad block table. nand_scan_bbt()
1124 /* Search the bad block table using a pattern in oob */ nand_scan_bbt()
1140 * nand_update_bbt - update bad block table(s)
1144 * The function updates the bad block table(s).
1178 /* Write the bad block table to the device? */ nand_update_bbt()
1184 /* Write the mirror bad block table to the device? */ nand_update_bbt()
1195 * Define some generic bad / good block scan pattern which are used
1196 * while scanning a device for factory marked good / bad blocks.
1274 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
1277 * This function selects the default bad block table support for the device and
1285 /* Is a flash based bad block table requested? */ nand_default_bbt()
1326 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
1329 * @allowbbt: allow access to bad block table region
1354 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1356 * @offs: offset of the bad block
1365 /* Mark bad block in memory */ nand_markbad_bbt()
1368 /* Update flash-based bad block table */ nand_markbad_bbt()
H A Dsm_common.c27 /* However it does preserve the bad block markers */
62 "sm_common: can't mark sector at %i as bad\n", sm_block_markbad()
/linux-4.1.27/fs/hpfs/
H A Dmap.c23 hpfs_error(s, "hpfs_map_bitmap called with bad parameter: %08x at %s", bmp_block, id); hpfs_map_bitmap()
148 hpfs_error(s, "bad magic on fnode %08lx", hpfs_map_fnode()
156 "bad number of nodes in fnode %08lx", hpfs_map_fnode()
163 "bad first_free pointer in fnode %08lx", hpfs_map_fnode()
171 "bad EA info in fnode %08lx: ea_offs == %04x ea_size_s == %04x", hpfs_map_fnode()
180 hpfs_error(s, "bad EA in fnode %08lx", hpfs_map_fnode()
201 hpfs_error(s, "bad magic on anode %08x", ano); hpfs_map_anode()
210 hpfs_error(s, "bad number of nodes in anode %08x", ano); hpfs_map_anode()
215 hpfs_error(s, "bad first_free pointer in anode %08x", ano); hpfs_map_anode()
246 hpfs_error(s, "bad magic on dnode %08x", secno); hpfs_map_dnode()
250 hpfs_error(s, "bad self pointer on dnode %08x self = %08x", secno, le32_to_cpu(dnode->self)); hpfs_map_dnode()
251 /* Check dirents - bad dirents would cause infinite hpfs_map_dnode()
260 hpfs_error(s, "bad dirent size in dnode %08x, dirent %03x, last %03x", secno, p, pp); hpfs_map_dnode()
271 hpfs_error(s, "bad down pointer in dnode %08x, dirent %03x, last %03x", secno, p, pp); hpfs_map_dnode()
H A Dhpfs.h87 __le32 n_badblocks; /* number of bad blocks */
90 __le32 badblocks; /* bad block list */
119 u8 bad_sector: 1; /* bad sector, corrupted disk (???) */
120 u8 bad_bitmap: 1; /* bad bitmap */
128 u8 bad_bitmap: 1; /* bad bitmap */
129 u8 bad_sector: 1; /* bad sector, corrupted disk (???) */
156 __le32 hotfix_map; /* info about remapped bad sectors */
173 /* The bad block list is 4 sectors long. The first word must be zero,
174 the remaining words give n_badblocks bad block numbers.
185 sectors. The from[] list contains the sector numbers of bad blocks
/linux-4.1.27/block/partitions/
H A Datari.h31 u32 bsl_st; /* start of bad sector list */
32 u32 bsl_cnt; /* length of bad sector list */
H A Dsgi.c48 /*printk("Dev %s SGI disklabel: bad magic %08x\n", sgi_partition()
59 printk(KERN_WARNING "Dev %s SGI disklabel: csum bad, label corrupted\n", sgi_partition()
H A Dsun.c70 /* printk(KERN_INFO "Dev %s Sun disklabel: bad magic %04x\n", sun_partition()
80 printk("Dev %s Sun disklabel: Csum bad, label corrupted\n", sun_partition()
/linux-4.1.27/arch/um/include/asm/
H A Dpgtable-2level.h29 printk("%s:%d: bad pte %p(%08lx).\n", __FILE__, __LINE__, &(e), \
32 printk("%s:%d: bad pgd %p(%08lx).\n", __FILE__, __LINE__, &(e), \
H A Dpgtable-3level.h47 printk("%s:%d: bad pte %p(%016lx).\n", __FILE__, __LINE__, &(e), \
50 printk("%s:%d: bad pmd %p(%016lx).\n", __FILE__, __LINE__, &(e), \
53 printk("%s:%d: bad pgd %p(%016lx).\n", __FILE__, __LINE__, &(e), \
/linux-4.1.27/arch/avr32/include/asm/
H A Dpgtable-2level.h23 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
25 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
/linux-4.1.27/arch/parisc/include/asm/
H A Drt_sigframe.h11 trampoline we left on the stack (we were bad and didn't
H A Drtc.h27 #define RTC_BATT_BAD 0x100 /* battery bad */
/linux-4.1.27/arch/m32r/include/asm/
H A Dpgtable-2level.h23 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
25 printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e))
27 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
31 * setup: the pgd is never bad, and a pmd always exists (as it's folded
/linux-4.1.27/drivers/mtd/ubi/
H A Dmisc.c97 * ubi_update_reserved - update bad eraseblock handling accounting data.
101 * bad eraseblock handling and the required level of PEBs that must be
116 ubi_msg(ubi, "reserved more %d PEBs for bad PEB handling", need); ubi_update_reserved()
120 * ubi_calculate_reserved - calculate how many PEBs must be reserved for bad
128 * for future bad eraseblock handling. ubi_calculate_reserved()
133 ubi_warn(ubi, "number of bad PEBs (%d) is above the expected limit (%d), not reserving any PEBs for bad PEB handling, will use available PEBs (if any)", ubi_calculate_reserved()
H A Dio.c119 * that this eraseblock may become bad soon (but do not have to);
230 * bad.
330 * %-EIO is returned, the physical eraseblock most probably went bad.
404 * torture_peb - test a supposedly bad physical eraseblock.
461 ubi_msg(ubi, "PEB %d passed torture test, do not mark it as bad", pnum); torture_peb()
471 ubi_err(ubi, "read problems on freshly erased PEB %d, must be bad", torture_peb()
566 * eraseblock is bad.
603 * ubi_io_is_bad - check if a physical eraseblock is bad.
607 * This function returns a positive number if the physical eraseblock is bad,
621 ubi_err(ubi, "error %d while checking if PEB %d is bad", ubi_io_is_bad()
624 dbg_io("PEB %d is bad", pnum); ubi_io_is_bad()
632 * ubi_io_mark_bad - mark a physical eraseblock as bad.
656 ubi_err(ubi, "cannot mark PEB %d bad, error %d", pnum, err); ubi_io_mark_bad()
681 goto bad; validate_ec_hdr()
685 ubi_err(ubi, "bad VID header offset %d, expected %d", validate_ec_hdr()
687 goto bad; validate_ec_hdr()
691 ubi_err(ubi, "bad data offset %d, expected %d", validate_ec_hdr()
693 goto bad; validate_ec_hdr()
697 ubi_err(ubi, "bad erase counter %lld", ec); validate_ec_hdr()
698 goto bad; validate_ec_hdr()
703 bad: validate_ec_hdr()
704 ubi_err(ubi, "bad EC header"); validate_ec_hdr()
725 * this eraseblock may become bad soon (but may be not);
785 ubi_warn(ubi, "bad magic number at PEB %d: %08x instead of %08x", ubi_io_read_ec_hdr()
789 dbg_bld("bad magic number at PEB %d: %08x instead of %08x", ubi_io_read_ec_hdr()
799 ubi_warn(ubi, "bad EC header CRC at PEB %d, calculated %#08x, read %#08x", ubi_io_read_ec_hdr()
803 dbg_bld("bad EC header CRC at PEB %d, calculated %#08x, read %#08x", ubi_io_read_ec_hdr()
839 * went bad.
892 ubi_err(ubi, "bad copy_flag"); validate_vid_hdr()
893 goto bad; validate_vid_hdr()
899 goto bad; validate_vid_hdr()
903 ubi_err(ubi, "bad vol_id"); validate_vid_hdr()
904 goto bad; validate_vid_hdr()
908 ubi_err(ubi, "bad compat"); validate_vid_hdr()
909 goto bad; validate_vid_hdr()
915 ubi_err(ubi, "bad compat"); validate_vid_hdr()
916 goto bad; validate_vid_hdr()
920 ubi_err(ubi, "bad vol_type"); validate_vid_hdr()
921 goto bad; validate_vid_hdr()
925 ubi_err(ubi, "bad data_pad"); validate_vid_hdr()
926 goto bad; validate_vid_hdr()
930 ubi_err(ubi, "bad data_size"); validate_vid_hdr()
931 goto bad; validate_vid_hdr()
943 goto bad; validate_vid_hdr()
947 goto bad; validate_vid_hdr()
951 ubi_err(ubi, "bad data_size"); validate_vid_hdr()
952 goto bad; validate_vid_hdr()
956 ubi_err(ubi, "bad data_size at last LEB"); validate_vid_hdr()
957 goto bad; validate_vid_hdr()
961 goto bad; validate_vid_hdr()
967 goto bad; validate_vid_hdr()
971 goto bad; validate_vid_hdr()
976 goto bad; validate_vid_hdr()
980 ubi_err(ubi, "bad used_ebs"); validate_vid_hdr()
981 goto bad; validate_vid_hdr()
987 bad: validate_vid_hdr()
988 ubi_err(ubi, "bad VID header"); validate_vid_hdr()
1044 ubi_warn(ubi, "bad magic number at PEB %d: %08x instead of %08x", ubi_io_read_vid_hdr()
1048 dbg_bld("bad magic number at PEB %d: %08x instead of %08x", ubi_io_read_vid_hdr()
1058 ubi_warn(ubi, "bad CRC at PEB %d, calculated %#08x, read %#08x", ubi_io_read_vid_hdr()
1062 dbg_bld("bad CRC at PEB %d, calculated %#08x, read %#08x", ubi_io_read_vid_hdr()
1092 * bad.
1127 * self_check_not_bad - ensure that a physical eraseblock is not bad.
1132 * it is bad and a negative error code if an error occurred.
1170 ubi_err(ubi, "bad magic %#08x, must be %#08x", self_check_ec_hdr()
1217 ubi_err(ubi, "bad CRC, calculated %#08x, read %#08x", self_check_peb_ec_hdr()
1253 ubi_err(ubi, "bad VID header magic %#08x at PEB %d, must be %#08x", self_check_vid_hdr()
1305 ubi_err(ubi, "bad VID header CRC at PEB %d, calculated %#08x, read %#08x", self_check_peb_vid_hdr()
H A Dvtbl.c47 * eraseblocks became bad for some reasons. Suppose we are attaching the
51 * eraseblocks went bad. So we cannot alarm the user properly.
188 ubi_err(ubi, "bad CRC at record %u: %#08x, not %#08x", vtbl_check()
198 goto bad; vtbl_check()
206 goto bad; vtbl_check()
211 goto bad; vtbl_check()
217 goto bad; vtbl_check()
222 ubi_err(ubi, "bad data_pad, has to be %d", n); vtbl_check()
224 goto bad; vtbl_check()
229 goto bad; vtbl_check()
234 goto bad; vtbl_check()
241 goto bad; vtbl_check()
246 goto bad; vtbl_check()
251 goto bad; vtbl_check()
256 goto bad; vtbl_check()
279 bad: vtbl_check()
345 * Probably this physical eraseblock went bad, try to pick create_vtbl()
672 goto bad; check_av()
676 goto bad; check_av()
680 goto bad; check_av()
684 goto bad; check_av()
688 goto bad; check_av()
692 bad: check_av()
693 ubi_err(vol->ubi, "bad attaching information, error %d", err); check_av()
H A Dattach.c212 goto bad; validate_vid_hdr()
222 goto bad; validate_vid_hdr()
227 goto bad; validate_vid_hdr()
232 goto bad; validate_vid_hdr()
238 bad: validate_vid_hdr()
382 ubi_err(ubi, "VID of PEB %d header is bad, but it was OK earlier, err %d", ubi_compare_lebs()
500 * sequence numbers. Otherwise the image is bad. ubi_add_to_av()
725 * so forth. We don't want to take care about bad eraseblocks here - ubi_early_get_peb()
827 /* Skip bad physical eraseblocks */ scan_peb()
910 ubi_err(ubi, "bad image sequence number %d in PEB %d, expected %d", scan_peb()
932 * with data integrity error, probably this is a bad scan_peb()
933 * PEB, bit it is not marked as bad yet. This may also scan_peb()
1102 * they may be bad PEBs which were not marked as bad yet. late_analysis()
1107 * 1. Flash is empty, but there are few bad PEBs, which are not late_analysis()
1108 * marked as bad so far, and which were read with error. We late_analysis()
1110 * the faulty PEBs will probably be marked as bad. late_analysis()
1527 ubi_err(ubi, "bad is_empty flag"); self_check_ai()
1540 ubi_err(ubi, "bad vol_id"); self_check_ai()
1552 ubi_err(ubi, "bad vol_type"); self_check_ai()
1557 ubi_err(ubi, "bad data_pad"); self_check_ai()
1574 ubi_err(ubi, "bad ai->min_ec (%d), %d found", self_check_ai()
1580 ubi_err(ubi, "bad ai->max_ec (%d), %d found", self_check_ai()
1593 ubi_err(ubi, "bad lnum or used_ebs"); self_check_ai()
1610 ubi_err(ubi, "bad leb_count, %d objects in the tree", self_check_ai()
1621 ubi_err(ubi, "bad highest_lnum"); self_check_ai()
1627 ubi_err(ubi, "bad ai->vols_found %d, should be %d", self_check_ai()
1654 ubi_err(ubi, "bad vol_type"); self_check_ai()
1659 ubi_err(ubi, "bad sqnum %llu", aeb->sqnum); self_check_ai()
1664 ubi_err(ubi, "bad vol_id %d", av->vol_id); self_check_ai()
1669 ubi_err(ubi, "bad compat %d", vidh->compat); self_check_ai()
1674 ubi_err(ubi, "bad lnum %d", aeb->lnum); self_check_ai()
1679 ubi_err(ubi, "bad used_ebs %d", av->used_ebs); self_check_ai()
1684 ubi_err(ubi, "bad data_pad %d", av->data_pad); self_check_ai()
1693 ubi_err(ubi, "bad highest_lnum %d", av->highest_lnum); self_check_ai()
1698 ubi_err(ubi, "bad last_data_size %d", self_check_ai()
1750 ubi_err(ubi, "bad attaching information about LEB %d", aeb->lnum); self_check_ai()
1756 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id); self_check_ai()
1761 ubi_err(ubi, "bad attaching information about volume %d", av->vol_id); self_check_ai()
H A Dfastmap.c482 ubi_err(ubi, "bad PEB in fastmap pool!"); scan_pool()
503 ubi_err(ubi, "bad image seq: 0x%x, expected: 0x%x", scan_pool()
629 ubi_err(ubi, "bad fastmap header magic: 0x%x, expected: 0x%x", ubi_attach_fastmap()
639 ubi_err(ubi, "bad fastmap pool magic: 0x%x, expected: 0x%x", ubi_attach_fastmap()
649 ubi_err(ubi, "bad fastmap pool magic: 0x%x, expected: 0x%x", ubi_attach_fastmap()
660 ubi_err(ubi, "bad pool size: %i", pool_size); ubi_attach_fastmap()
665 ubi_err(ubi, "bad WL pool size: %i", wl_pool_size); ubi_attach_fastmap()
672 ubi_err(ubi, "bad maximal pool size: %i", fm->max_pool_size); ubi_attach_fastmap()
678 ubi_err(ubi, "bad maximal WL pool size: %i", ubi_attach_fastmap()
738 ubi_err(ubi, "bad fastmap vol header magic: 0x%x, expected: 0x%x", ubi_attach_fastmap()
763 ubi_err(ubi, "bad fastmap EBA header magic: 0x%x, expected: 0x%x", ubi_attach_fastmap()
890 ubi_err(ubi, "bad super block magic: 0x%x, expected: 0x%x", ubi_scan_fastmap()
897 ubi_err(ubi, "bad fastmap version: %i, expected: %i", ubi_scan_fastmap()
913 ubi_err(ubi, "bad fastmap size: %zi, expected: %zi", ubi_scan_fastmap()
975 ubi_err(ubi, "bad fastmap anchor vol_id: 0x%x, expected: 0x%x", ubi_scan_fastmap()
983 ubi_err(ubi, "bad fastmap data vol_id: 0x%x, expected: 0x%x", ubi_scan_fastmap()
H A Dcdev.c609 goto bad; verify_mkvol_req()
613 goto bad; verify_mkvol_req()
616 goto bad; verify_mkvol_req()
619 goto bad; verify_mkvol_req()
623 goto bad; verify_mkvol_req()
626 goto bad; verify_mkvol_req()
630 goto bad; verify_mkvol_req()
633 goto bad; verify_mkvol_req()
637 goto bad; verify_mkvol_req()
642 goto bad; verify_mkvol_req()
646 bad: verify_mkvol_req()
647 ubi_err(ubi, "bad volume creation request"); verify_mkvol_req()
H A Dbuild.c53 /* Maximum value for the number of bad PEBs per 1024 PEBs */
67 * @max_beb_per1024: maximum expected number of bad PEBs per 1024 PEBs
606 * number of bad eraseblocks is a percentage of the get_bad_peb_limit()
607 * whole device and bad eraseblocks are not fairly get_bad_peb_limit()
609 * is that all the bad eraseblocks of the chip are in get_bad_peb_limit()
626 * @max_beb_per1024: maximum expected number of bad PEB per 1024 PEBs
706 ubi_err(ubi, "bad write buffer size %d for %d min. I/O unit", io_init()
753 ubi_err(ubi, "bad VID header (%d) or data offsets (%d)", io_init()
858 * @max_beb_per1024: maximum expected number of bad PEB per 1024 PEBs
1032 ubi_msg(ubi, "good PEBs: %d, bad PEBs: %d, corrupted PEBs: %d", ubi_attach_mtd_dev()
1040 ubi_msg(ubi, "available PEBs: %d, total reserved PEBs: %d, PEBs reserved for bad PEB handling: %d", ubi_attach_mtd_dev()
1470 pr_err("UBI error: bad value for max_beb_per1024 parameter: %s", ubi_mtd_param_parse()
1481 pr_err("UBI error: bad value for ubi_num parameter: %s", ubi_mtd_param_parse()
1497 "Optional \"max_beb_per1024\" parameter specifies the maximum expected bad eraseblock per 1024 eraseblocks. (default value ("
1503 "Example 3: mtd=/dev/mtd1,0,25 - attach MTD device /dev/mtd1 using default VID header offset and reserve 25*nand_size_in_blocks/1024 erase blocks for bad block handling.\n"
H A Dvmt.c728 ubi_err(ubi, "bad alignment"); self_check_volume()
740 ubi_err(ubi, "bad data_pad, has to be %lld", n); self_check_volume()
746 ubi_err(ubi, "bad vol_type"); self_check_volume()
762 ubi_err(ubi, "bad usable_leb_size, has to be %lld", n); self_check_volume()
774 ubi_err(ubi, "bad name_len %lld", n); self_check_volume()
785 ubi_err(ubi, "bad used_ebs"); self_check_volume()
789 ubi_err(ubi, "bad last_eb_bytes"); self_check_volume()
793 ubi_err(ubi, "bad used_bytes"); self_check_volume()
798 ubi_err(ubi, "bad used_ebs"); self_check_volume()
803 ubi_err(ubi, "bad last_eb_bytes"); self_check_volume()
808 ubi_err(ubi, "bad used_bytes"); self_check_volume()
/linux-4.1.27/drivers/md/persistent-data/
H A Ddm-space-map-disk.c257 goto bad; dm_sm_disk_create()
261 goto bad; dm_sm_disk_create()
265 goto bad; dm_sm_disk_create()
269 bad: dm_sm_disk_create()
291 goto bad; dm_sm_disk_open()
295 goto bad; dm_sm_disk_open()
299 bad: dm_sm_disk_open()
H A Ddm-transaction-manager.c419 goto bad; dm_tm_create_internal()
426 goto bad; dm_tm_create_internal()
432 bad: dm_tm_create_internal()
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Devergreen_cs.c1165 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1177 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1184 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1194 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1236 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1248 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1260 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1272 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1295 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1332 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1341 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1381 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1399 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1460 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1488 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1521 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg); evergreen_cs_check_reg()
1538 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg); evergreen_cs_check_reg()
1576 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1592 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1605 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1723 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1731 dev_warn(p->dev, "bad SET_CONFIG_REG " evergreen_cs_check_reg()
1737 dev_warn(p->dev, "bad SET_CONFIG_REG " evergreen_cs_check_reg()
1745 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1751 dev_warn(p->dev, "bad SET_CONTEXT_REG " evergreen_cs_check_reg()
1818 DRM_ERROR("bad SET PREDICATION\n"); evergreen_packet3_check()
1830 DRM_ERROR("bad SET PREDICATION operation %d\n", pred_op); evergreen_packet3_check()
1836 DRM_ERROR("bad SET PREDICATION\n"); evergreen_packet3_check()
1850 DRM_ERROR("bad CONTEXT_CONTROL\n"); evergreen_packet3_check()
1858 DRM_ERROR("bad INDEX_TYPE/NUM_INSTANCES/CLEAR_STATE\n"); evergreen_packet3_check()
1864 DRM_ERROR("bad PACKET3_DEALLOC_STATE\n"); evergreen_packet3_check()
1868 DRM_ERROR("bad INDEX_TYPE/NUM_INSTANCES/CLEAR_STATE\n"); evergreen_packet3_check()
1877 DRM_ERROR("bad INDEX_BASE\n"); evergreen_packet3_check()
1882 DRM_ERROR("bad INDEX_BASE\n"); evergreen_packet3_check()
1903 DRM_ERROR("bad INDEX_BUFFER_SIZE\n"); evergreen_packet3_check()
1912 DRM_ERROR("bad DRAW_INDEX\n"); evergreen_packet3_check()
1917 DRM_ERROR("bad DRAW_INDEX\n"); evergreen_packet3_check()
1940 DRM_ERROR("bad DRAW_INDEX_2\n"); evergreen_packet3_check()
1945 DRM_ERROR("bad DRAW_INDEX_2\n"); evergreen_packet3_check()
1965 DRM_ERROR("bad DRAW_INDEX_AUTO\n"); evergreen_packet3_check()
1976 DRM_ERROR("bad DRAW_INDEX_MULTI_AUTO\n"); evergreen_packet3_check()
1987 DRM_ERROR("bad DRAW_INDEX_IMMD\n"); evergreen_packet3_check()
1998 DRM_ERROR("bad DRAW_INDEX_OFFSET\n"); evergreen_packet3_check()
2009 DRM_ERROR("bad DRAW_INDEX_OFFSET_2\n"); evergreen_packet3_check()
2028 DRM_ERROR("bad SET_BASE\n"); evergreen_packet3_check()
2034 DRM_ERROR("bad SET_BASE\n"); evergreen_packet3_check()
2040 DRM_ERROR("bad SET_BASE\n"); evergreen_packet3_check()
2062 DRM_ERROR("bad DRAW_INDIRECT\n"); evergreen_packet3_check()
2081 DRM_ERROR("bad DISPATCH_DIRECT\n"); evergreen_packet3_check()
2092 DRM_ERROR("bad DISPATCH_INDIRECT\n"); evergreen_packet3_check()
2097 DRM_ERROR("bad DISPATCH_INDIRECT\n"); evergreen_packet3_check()
2109 DRM_ERROR("bad WAIT_REG_MEM\n"); evergreen_packet3_check()
2118 DRM_ERROR("bad WAIT_REG_MEM\n"); evergreen_packet3_check()
2138 DRM_ERROR("bad CP DMA\n"); evergreen_packet3_check()
2172 DRM_ERROR("bad CP DMA SRC\n"); evergreen_packet3_check()
2190 DRM_ERROR("bad CP DMA SRC_SEL\n"); evergreen_packet3_check()
2210 DRM_ERROR("bad CP DMA DST\n"); evergreen_packet3_check()
2228 DRM_ERROR("bad CP DMA DST_SEL\n"); evergreen_packet3_check()
2236 DRM_ERROR("bad SURFACE_SYNC\n"); evergreen_packet3_check()
2244 DRM_ERROR("bad SURFACE_SYNC\n"); evergreen_packet3_check()
2252 DRM_ERROR("bad EVENT_WRITE\n"); evergreen_packet3_check()
2260 DRM_ERROR("bad EVENT_WRITE\n"); evergreen_packet3_check()
2276 DRM_ERROR("bad EVENT_WRITE_EOP\n"); evergreen_packet3_check()
2281 DRM_ERROR("bad EVENT_WRITE_EOP\n"); evergreen_packet3_check()
2298 DRM_ERROR("bad EVENT_WRITE_EOS\n"); evergreen_packet3_check()
2303 DRM_ERROR("bad EVENT_WRITE_EOS\n"); evergreen_packet3_check()
2321 DRM_ERROR("bad PACKET3_SET_CONFIG_REG\n"); evergreen_packet3_check()
2337 DRM_ERROR("bad PACKET3_SET_CONTEXT_REG\n"); evergreen_packet3_check()
2349 DRM_ERROR("bad SET_RESOURCE\n"); evergreen_packet3_check()
2357 DRM_ERROR("bad SET_RESOURCE\n"); evergreen_packet3_check()
2370 DRM_ERROR("bad SET_RESOURCE (tex)\n"); evergreen_packet3_check()
2407 DRM_ERROR("bad SET_RESOURCE (tex)\n"); evergreen_packet3_check()
2426 DRM_ERROR("bad SET_RESOURCE (vtx)\n"); evergreen_packet3_check()
2446 DRM_ERROR("bad SET_RESOURCE\n"); evergreen_packet3_check()
2460 DRM_ERROR("bad SET_BOOL_CONST\n"); evergreen_packet3_check()
2470 DRM_ERROR("bad SET_LOOP_CONST\n"); evergreen_packet3_check()
2480 DRM_ERROR("bad SET_CTL_CONST\n"); evergreen_packet3_check()
2486 DRM_ERROR("bad SET_SAMPLER\n"); evergreen_packet3_check()
2494 DRM_ERROR("bad SET_SAMPLER\n"); evergreen_packet3_check()
2500 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE (invalid count)\n"); evergreen_packet3_check()
2508 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE (missing dst reloc)\n"); evergreen_packet3_check()
2514 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE dst bo too small: 0x%llx, 0x%lx\n", evergreen_packet3_check()
2527 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE (missing src reloc)\n"); evergreen_packet3_check()
2533 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE src bo too small: 0x%llx, 0x%lx\n", evergreen_packet3_check()
2547 DRM_ERROR("bad MEM_WRITE (invalid count)\n"); evergreen_packet3_check()
2552 DRM_ERROR("bad MEM_WRITE (missing reloc)\n"); evergreen_packet3_check()
2558 DRM_ERROR("bad MEM_WRITE (address not qwords aligned)\n"); evergreen_packet3_check()
2562 DRM_ERROR("bad MEM_WRITE bo too small: 0x%llx, 0x%lx\n", evergreen_packet3_check()
2573 DRM_ERROR("bad COPY_DW (invalid count)\n"); evergreen_packet3_check()
2581 DRM_ERROR("bad COPY_DW (missing src reloc)\n"); evergreen_packet3_check()
2587 DRM_ERROR("bad COPY_DW src bo too small: 0x%llx, 0x%lx\n", evergreen_packet3_check()
2605 DRM_ERROR("bad COPY_DW (missing dst reloc)\n"); evergreen_packet3_check()
2611 DRM_ERROR("bad COPY_DW dst bo too small: 0x%llx, 0x%lx\n", evergreen_packet3_check()
2781 DRM_ERROR("bad DMA_PACKET_WRITE\n"); evergreen_dma_cs_parse()
2803 DRM_ERROR("bad DMA_PACKET_WRITE [%6d] 0x%08x sub cmd is not 0 or 8\n", idx, header); evergreen_dma_cs_parse()
2815 DRM_ERROR("bad DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
2820 DRM_ERROR("bad DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
2925 DRM_ERROR("bad L2L, dw, broadcast DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
2960 DRM_ERROR("bad L2T, frame to fields DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
2965 DRM_ERROR("bad L2T, frame to fields DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
3022 DRM_ERROR("bad L2T, broadcast DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
3027 DRM_ERROR("bad L2T, broadcast DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
3109 DRM_ERROR("bad L2T, broadcast DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
3114 DRM_ERROR("bad L2T, broadcast DMA_PACKET_COPY\n"); evergreen_dma_cs_parse()
3145 DRM_ERROR("bad DMA_PACKET_COPY [%6d] 0x%08x invalid sub cmd\n", idx, header); evergreen_dma_cs_parse()
3152 DRM_ERROR("bad DMA_PACKET_CONSTANT_FILL\n"); evergreen_dma_cs_parse()
3319 DRM_ERROR("bad SET_BASE"); evergreen_vm_packet3_check()
3384 DRM_ERROR("bad PACKET3_SET_CONFIG_REG\n"); evergreen_vm_packet3_check()
3525 DRM_ERROR("bad DMA_PACKET_WRITE [%6d] 0x%08x sub cmd is not 0 or 8\n", idx, ib->ptr[idx]); evergreen_dma_ib_parse()
3576 DRM_ERROR("bad DMA_PACKET_COPY [%6d] 0x%08x invalid sub cmd\n", idx, ib->ptr[idx]); evergreen_dma_ib_parse()
H A Dr600_cs.c444 /* the initial DDX does bad things with the CB size occasionally */ r600_cs_track_validate_cb()
446 /* r600c,g also seem to flush at bad times in some apps resulting in r600_cs_track_validate_cb()
867 DRM_ERROR("vline WAIT_REG_MEM bad reg\n"); r600_cs_common_vline_parse()
872 DRM_ERROR("vline WAIT_REG_MEM bad bit mask\n"); r600_cs_common_vline_parse()
1019 dev_warn(p->dev, "bad SET_CONTEXT_REG " r600_cs_check_reg()
1037 dev_warn(p->dev, "bad SET_CONTEXT_REG " r600_cs_check_reg()
1079 dev_warn(p->dev, "bad SET_CONTEXT_REG " r600_cs_check_reg()
1138 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg); r600_cs_check_reg()
1210 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg); r600_cs_check_reg()
1241 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg); r600_cs_check_reg()
1276 dev_warn(p->dev, "bad SET_CONTEXT_REG " r600_cs_check_reg()
1291 dev_warn(p->dev, "bad SET_CONTEXT_REG " r600_cs_check_reg()
1304 dev_warn(p->dev, "bad SET_CONTEXT_REG " r600_cs_check_reg()
1374 dev_warn(p->dev, "bad SET_CONTEXT_REG " r600_cs_check_reg()
1383 dev_warn(p->dev, "bad SET_CONFIG_REG " r600_cs_check_reg()
1651 DRM_ERROR("bad SET PREDICATION\n"); r600_packet3_check()
1663 DRM_ERROR("bad SET PREDICATION operation %d\n", pred_op); r600_packet3_check()
1669 DRM_ERROR("bad SET PREDICATION\n"); r600_packet3_check()
1684 DRM_ERROR("bad START_3D\n"); r600_packet3_check()
1690 DRM_ERROR("bad CONTEXT_CONTROL\n"); r600_packet3_check()
1697 DRM_ERROR("bad INDEX_TYPE/NUM_INSTANCES\n"); r600_packet3_check()
1705 DRM_ERROR("bad DRAW_INDEX\n"); r600_packet3_check()
1710 DRM_ERROR("bad DRAW_INDEX\n"); r600_packet3_check()
1730 DRM_ERROR("bad DRAW_INDEX_AUTO\n"); r600_packet3_check()
1742 DRM_ERROR("bad DRAW_INDEX_IMMD\n"); r600_packet3_check()
1753 DRM_ERROR("bad WAIT_REG_MEM\n"); r600_packet3_check()
1762 DRM_ERROR("bad WAIT_REG_MEM\n"); r600_packet3_check()
1782 DRM_ERROR("bad CP DMA\n"); r600_packet3_check()
1799 DRM_ERROR("bad CP DMA SRC\n"); r600_packet3_check()
1829 DRM_ERROR("bad CP DMA DST\n"); r600_packet3_check()
1851 DRM_ERROR("bad SURFACE_SYNC\n"); r600_packet3_check()
1859 DRM_ERROR("bad SURFACE_SYNC\n"); r600_packet3_check()
1867 DRM_ERROR("bad EVENT_WRITE\n"); r600_packet3_check()
1875 DRM_ERROR("bad EVENT_WRITE\n"); r600_packet3_check()
1891 DRM_ERROR("bad EVENT_WRITE_EOP\n"); r600_packet3_check()
1896 DRM_ERROR("bad EVENT_WRITE\n"); r600_packet3_check()
1914 DRM_ERROR("bad PACKET3_SET_CONFIG_REG\n"); r600_packet3_check()
1930 DRM_ERROR("bad PACKET3_SET_CONTEXT_REG\n"); r600_packet3_check()
1942 DRM_ERROR("bad SET_RESOURCE\n"); r600_packet3_check()
1950 DRM_ERROR("bad SET_RESOURCE\n"); r600_packet3_check()
1962 DRM_ERROR("bad SET_RESOURCE\n"); r600_packet3_check()
1976 DRM_ERROR("bad SET_RESOURCE\n"); r600_packet3_check()
1997 DRM_ERROR("bad SET_RESOURCE\n"); r600_packet3_check()
2018 DRM_ERROR("bad SET_RESOURCE\n"); r600_packet3_check()
2030 DRM_ERROR("bad SET_ALU_CONST\n"); r600_packet3_check()
2041 DRM_ERROR("bad SET_BOOL_CONST\n"); r600_packet3_check()
2051 DRM_ERROR("bad SET_LOOP_CONST\n"); r600_packet3_check()
2061 DRM_ERROR("bad SET_CTL_CONST\n"); r600_packet3_check()
2067 DRM_ERROR("bad SET_SAMPLER\n"); r600_packet3_check()
2075 DRM_ERROR("bad SET_SAMPLER\n"); r600_packet3_check()
2086 DRM_ERROR("bad STRMOUT_BASE_UPDATE packet count\n"); r600_packet3_check()
2090 DRM_ERROR("bad STRMOUT_BASE_UPDATE index\n"); r600_packet3_check()
2098 DRM_ERROR("bad STRMOUT_BASE_UPDATE reloc\n"); r600_packet3_check()
2103 DRM_ERROR("bad STRMOUT_BASE_UPDATE, bo does not match\n"); r600_packet3_check()
2109 DRM_ERROR("bad STRMOUT_BASE_UPDATE, bo offset does not match: 0x%llx, 0x%x\n", r600_packet3_check()
2115 DRM_ERROR("bad STRMOUT_BASE_UPDATE bo too small: 0x%llx, 0x%lx\n", r600_packet3_check()
2124 DRM_ERROR("bad SURFACE_BASE_UPDATE\n"); r600_packet3_check()
2128 DRM_ERROR("bad SURFACE_BASE_UPDATE\n"); r600_packet3_check()
2134 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE (invalid count)\n"); r600_packet3_check()
2142 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE (missing dst reloc)\n"); r600_packet3_check()
2148 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE dst bo too small: 0x%llx, 0x%lx\n", r600_packet3_check()
2161 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE (missing src reloc)\n"); r600_packet3_check()
2167 DRM_ERROR("bad STRMOUT_BUFFER_UPDATE src bo too small: 0x%llx, 0x%lx\n", r600_packet3_check()
2181 DRM_ERROR("bad MEM_WRITE (invalid count)\n"); r600_packet3_check()
2186 DRM_ERROR("bad MEM_WRITE (missing reloc)\n"); r600_packet3_check()
2192 DRM_ERROR("bad MEM_WRITE (address not qwords aligned)\n"); r600_packet3_check()
2196 DRM_ERROR("bad MEM_WRITE bo too small: 0x%llx, 0x%lx\n", r600_packet3_check()
2207 DRM_ERROR("bad COPY_DW (invalid count)\n"); r600_packet3_check()
2215 DRM_ERROR("bad COPY_DW (missing src reloc)\n"); r600_packet3_check()
2221 DRM_ERROR("bad COPY_DW src bo too small: 0x%llx, 0x%lx\n", r600_packet3_check()
2239 DRM_ERROR("bad COPY_DW (missing dst reloc)\n"); r600_packet3_check()
2245 DRM_ERROR("bad COPY_DW dst bo too small: 0x%llx, 0x%lx\n", r600_packet3_check()
2499 DRM_ERROR("bad DMA_PACKET_WRITE\n"); r600_dma_cs_parse()
2525 DRM_ERROR("bad DMA_PACKET_COPY\n"); r600_dma_cs_parse()
2530 DRM_ERROR("bad DMA_PACKET_COPY\n"); r600_dma_cs_parse()
2601 DRM_ERROR("bad DMA_PACKET_WRITE\n"); r600_dma_cs_parse()
/linux-4.1.27/drivers/md/
H A Ddm-verity.c758 goto bad; verity_ctr()
764 goto bad; verity_ctr()
771 goto bad; verity_ctr()
778 goto bad; verity_ctr()
784 goto bad; verity_ctr()
793 goto bad; verity_ctr()
803 goto bad; verity_ctr()
812 goto bad; verity_ctr()
819 goto bad; verity_ctr()
827 goto bad; verity_ctr()
835 goto bad; verity_ctr()
843 goto bad; verity_ctr()
849 goto bad; verity_ctr()
858 goto bad; verity_ctr()
864 goto bad; verity_ctr()
873 goto bad; verity_ctr()
879 goto bad; verity_ctr()
893 goto bad; verity_ctr()
901 goto bad; verity_ctr()
911 goto bad; verity_ctr()
929 goto bad; verity_ctr()
941 goto bad; verity_ctr()
954 goto bad; verity_ctr()
960 goto bad; verity_ctr()
970 goto bad; verity_ctr()
978 goto bad; verity_ctr()
983 bad: verity_ctr()
H A Ddm-linear.c47 goto bad; linear_ctr()
53 goto bad; linear_ctr()
62 bad: linear_ctr()
H A Ddm-flakey.c188 goto bad; flakey_ctr()
194 goto bad; flakey_ctr()
198 goto bad; flakey_ctr()
202 goto bad; flakey_ctr()
207 goto bad; flakey_ctr()
212 goto bad; flakey_ctr()
216 goto bad; flakey_ctr()
225 bad: flakey_ctr()
H A Ddm-exception-store.c234 goto bad; dm_exception_store_create()
239 goto bad; dm_exception_store_create()
246 bad: dm_exception_store_create()
H A Ddm-delay.c148 goto bad; delay_ctr()
154 goto bad; delay_ctr()
160 goto bad; delay_ctr()
209 bad: delay_ctr()
H A Ddm-mpath.c576 goto bad; parse_path()
619 goto bad; parse_path()
629 goto bad; parse_path()
637 goto bad; parse_path()
642 bad: parse_path()
675 goto bad; parse_priority_group()
682 goto bad; parse_priority_group()
686 goto bad; parse_priority_group()
696 goto bad; parse_priority_group()
705 goto bad; parse_priority_group()
715 bad: parse_priority_group()
850 goto bad; multipath_ctr()
854 goto bad; multipath_ctr()
858 goto bad; multipath_ctr()
862 goto bad; multipath_ctr()
868 goto bad; multipath_ctr()
878 goto bad; multipath_ctr()
892 goto bad; multipath_ctr()
901 bad: multipath_ctr()
H A Ddm-crypt.c376 goto bad; crypt_iv_essiv_ctr()
383 goto bad; crypt_iv_essiv_ctr()
399 bad: crypt_iv_essiv_ctr()
1624 goto bad; crypt_ctr_cipher()
1670 goto bad; crypt_ctr_cipher()
1677 goto bad; crypt_ctr_cipher()
1685 goto bad; crypt_ctr_cipher()
1694 goto bad; crypt_ctr_cipher()
1699 bad: crypt_ctr_cipher()
1744 goto bad; crypt_ctr()
1768 goto bad; crypt_ctr()
1779 goto bad; crypt_ctr()
1785 goto bad; crypt_ctr()
1793 goto bad; crypt_ctr()
1799 goto bad; crypt_ctr()
1804 goto bad; crypt_ctr()
1818 goto bad; crypt_ctr()
1825 goto bad; crypt_ctr()
1839 goto bad; crypt_ctr()
1848 goto bad; crypt_ctr()
1858 goto bad; crypt_ctr()
1869 goto bad; crypt_ctr()
1878 bad: crypt_ctr()
/linux-4.1.27/sound/firewire/fireworks/
H A Dfireworks_command.c83 [EFR_STATUS_BAD] = "bad",
84 [EFR_STATUS_BAD_COMMAND] = "bad command",
86 [EFR_STATUS_BAD_QUAD_COUNT] = "bad quad count",
90 [EFR_STATUS_BAD_RATE] = "bad rate",
91 [EFR_STATUS_BAD_CLOCK] = "bad clock",
92 [EFR_STATUS_BAD_CHANNEL] = "bad channel",
93 [EFR_STATUS_BAD_PAN] = "bad pan",
95 [EFR_STATUS_BAD_MIRROR] = "bad mirror",
96 [EFR_STATUS_BAD_LED] = "bad LED",
97 [EFR_STATUS_BAD_PARAMETER] = "bad parameter",
/linux-4.1.27/security/selinux/ss/
H A Dpolicydb.c1118 goto bad; perm_read()
1122 goto bad; perm_read()
1129 goto bad; perm_read()
1133 goto bad; perm_read()
1136 bad: perm_read()
1152 goto bad; common_read()
1156 goto bad; common_read()
1163 goto bad; common_read()
1169 goto bad; common_read()
1174 goto bad; common_read()
1179 goto bad; common_read()
1181 bad: common_read()
1318 goto bad; class_read()
1322 goto bad; class_read()
1330 goto bad; class_read()
1338 goto bad; class_read()
1343 goto bad; class_read()
1349 goto bad; class_read()
1355 goto bad; class_read()
1360 goto bad; class_read()
1366 goto bad; class_read()
1371 goto bad; class_read()
1377 goto bad; class_read()
1387 goto bad; class_read()
1393 goto bad; class_read()
1396 bad: class_read()
1412 goto bad; role_read()
1419 goto bad; role_read()
1428 goto bad; role_read()
1432 goto bad; role_read()
1436 goto bad; role_read()
1443 goto bad; role_read()
1446 goto bad; role_read()
1451 goto bad; role_read()
1453 bad: role_read()
1469 goto bad; type_read()
1476 goto bad; type_read()
1495 goto bad; type_read()
1499 goto bad; type_read()
1501 bad: type_read()
1544 goto bad; user_read()
1551 goto bad; user_read()
1560 goto bad; user_read()
1564 goto bad; user_read()
1569 goto bad; user_read()
1572 goto bad; user_read()
1577 goto bad; user_read()
1579 bad: user_read()
1595 goto bad; sens_read()
1599 goto bad; sens_read()
1606 goto bad; sens_read()
1611 goto bad; sens_read()
1615 goto bad; sens_read()
1619 goto bad; sens_read()
1621 bad: sens_read()
1637 goto bad; cat_read()
1641 goto bad; cat_read()
1649 goto bad; cat_read()
1653 goto bad; cat_read()
1655 bad: cat_read()
2247 goto bad; policydb_read()
2254 goto bad; policydb_read()
2263 goto bad; policydb_read()
2271 goto bad; policydb_read()
2278 goto bad; policydb_read()
2287 goto bad; policydb_read()
2296 goto bad; policydb_read()
2305 goto bad; policydb_read()
2316 goto bad; policydb_read()
2325 goto bad; policydb_read()
2331 goto bad; policydb_read()
2339 goto bad; policydb_read()
2349 goto bad; policydb_read()
2355 goto bad; policydb_read()
2361 goto bad; policydb_read()
2370 goto bad; policydb_read()
2374 goto bad; policydb_read()
2379 goto bad; policydb_read()
2384 goto bad; policydb_read()
2391 goto bad; policydb_read()
2398 goto bad; policydb_read()
2407 goto bad; policydb_read()
2416 goto bad; policydb_read()
2422 goto bad; policydb_read()
2429 goto bad; policydb_read()
2436 goto bad; policydb_read()
2443 goto bad; policydb_read()
2449 goto bad; policydb_read()
2453 goto bad; policydb_read()
2459 goto bad; policydb_read()
2463 goto bad; policydb_read()
2467 goto bad; policydb_read()
2471 goto bad; policydb_read()
2478 goto bad; policydb_read()
2484 goto bad; policydb_read()
2494 goto bad; policydb_read()
2499 goto bad; policydb_read()
2504 goto bad; policydb_read()
2509 bad: policydb_read()
H A Debitmap.c365 goto bad; ebitmap_read()
381 goto bad; ebitmap_read()
389 goto bad; ebitmap_read()
395 goto bad; ebitmap_read()
405 goto bad; ebitmap_read()
418 goto bad; ebitmap_read()
424 goto bad; ebitmap_read()
438 bad: ebitmap_read()
H A Davtab.c509 goto bad; avtab_read()
515 goto bad; avtab_read()
520 goto bad; avtab_read()
530 goto bad; avtab_read()
538 bad: avtab_read()
/linux-4.1.27/arch/x86/include/asm/
H A Dpgtable_64.h30 pr_err("%s:%d: bad pte %p(%016lx)\n", \
33 pr_err("%s:%d: bad pmd %p(%016lx)\n", \
36 pr_err("%s:%d: bad pud %p(%016lx)\n", \
39 pr_err("%s:%d: bad pgd %p(%016lx)\n", \
H A Dpgtable-2level.h5 pr_err("%s:%d: bad pte %08lx\n", __FILE__, __LINE__, (e).pte_low)
7 pr_err("%s:%d: bad pgd %08lx\n", __FILE__, __LINE__, pgd_val(e))
H A Dpgtable-3level.h12 pr_err("%s:%d: bad pte %p(%08lx%08lx)\n", \
15 pr_err("%s:%d: bad pmd %p(%016Lx)\n", \
18 pr_err("%s:%d: bad pgd %p(%016Lx)\n", \
/linux-4.1.27/arch/unicore32/kernel/
H A Dtraps.c121 unsigned int val, bad; dump_instr() local
123 bad = __get_user(val, &((u32 *)addr)[i]); dump_instr()
125 if (!bad) dump_instr()
129 p += sprintf(p, "bad PC value"); dump_instr()
264 die("Oops - bad mode", regs, 0); bad_mode()
266 panic("bad mode"); bad_mode()
271 printk(KERN_DEFAULT "%s:%d: bad pte %08lx.\n", file, line, val); __pte_error()
276 printk(KERN_DEFAULT "%s:%d: bad pmd %08lx.\n", file, line, val); __pmd_error()
281 printk(KERN_DEFAULT "%s:%d: bad pgd %08lx.\n", file, line, val); __pgd_error()
H A Dmodule.c50 printk(KERN_ERR "%s: bad relocation, " apply_relocate()
/linux-4.1.27/arch/sh/include/asm/
H A Drtc.h10 #define RTC_BATT_BAD 0x100 /* battery bad */
H A Dpgtable-3level.h28 printk("%s:%d: bad pmd %016llx.\n", __FILE__, __LINE__, pmd_val(e))
/linux-4.1.27/tools/perf/util/
H A Dpath.c15 static char bad_path[] = "/bad-path/";
69 goto bad; perf_vsnpath()
75 goto bad; perf_vsnpath()
77 bad: perf_vsnpath()
/linux-4.1.27/net/ipv4/netfilter/
H A Dipt_MASQUERADE.c37 pr_debug("bad MAP_IPS.\n"); masquerade_tg_check()
41 pr_debug("bad rangesize %u\n", mr->rangesize); masquerade_tg_check()
/linux-4.1.27/fs/
H A Dbad_inode.c162 * make_bad_inode - mark an inode bad due to an I/O error
163 * @inode: Inode to mark bad
166 * failure this function makes the inode "bad" and causes I/O operations
183 * This tests whether an inode has been flagged as bad. The test uses
192 * Returns true if the inode in question has been marked as bad.
/linux-4.1.27/net/sched/
H A Dact_pedit.c136 goto bad; tcf_pedit()
143 goto bad; tcf_pedit()
149 goto bad; tcf_pedit()
154 goto bad; tcf_pedit()
168 bad: tcf_pedit()
/linux-4.1.27/drivers/net/ethernet/freescale/
H A Ducc_geth.h62 u32 tx64; /* Total number of frames (including bad
67 u32 tx127; /* Total number of frames (including bad
71 u32 tx255; /* Total number of frames (including bad
75 bad frames that were exactly of the mninimal
77 u32 rx127; /* Total number of frames (including bad
80 u32 rx255; /* Total number of frames (including bad
98 octets in bad frames. Must be implemented in
502 u32 txpkts256; /* total packets (including bad) between 256
504 u32 txpkts512; /* total packets (including bad) between 512
506 u32 txpkts1024; /* total packets (including bad) between 1024
508 u32 txpktsjumbo; /* total packets (including bad) between 1024
526 u32 pkts256; /* total frames (including bad) between 256 and
528 u32 pkts512; /* total frames (including bad) between 512 and
530 u32 pkts1024; /* total frames (including bad) between 1024
532 u32 pktsjumbo; /* total frames (including bad) between 1024
692 u32 txpkts256; /* total packets (including bad) between 256
694 u32 txpkts512; /* total packets (including bad) between 512
696 u32 txpkts1024; /* total packets (including bad) between 1024
698 u32 txpktsjumbo; /* total packets (including bad) between 1024
718 u32 pkts256; /* total frames (including bad) between 256 and
720 u32 pkts512; /* total frames (including bad) between 512 and
722 u32 pkts1024; /* total frames (including bad) between 1024
724 u32 pktsjumbo; /* total frames (including bad) between 1024
741 u32 tx64; /* Total number of frames (including bad
746 u32 tx127; /* Total number of frames (including bad
750 u32 tx255; /* Total number of frames (including bad
754 bad frames that were exactly of the mninimal
756 u32 rx127; /* Total number of frames (including bad
759 u32 rx255; /* Total number of frames (including bad
776 octets in bad frames. Must be implemented in
/linux-4.1.27/arch/arm64/kernel/
H A Dtraps.c117 unsigned int val, bad; dump_instr() local
119 bad = __get_user(val, &((u32 *)addr)[i]); dump_instr()
121 if (!bad) dump_instr()
124 p += sprintf(p, "bad PC value"); dump_instr()
440 arm64_notify_die("Oops - bad mode", regs, &info, 0); bad_mode()
445 pr_crit("%s:%d: bad pte %016lx.\n", file, line, val); __pte_error()
450 pr_crit("%s:%d: bad pmd %016lx.\n", file, line, val); __pmd_error()
455 pr_crit("%s:%d: bad pud %016lx.\n", file, line, val); __pud_error()
460 pr_crit("%s:%d: bad pgd %016lx.\n", file, line, val); __pgd_error()
/linux-4.1.27/arch/sparc/kernel/
H A Dhvapi.c187 goto bad; sun4v_hvapi_init()
193 goto bad; sun4v_hvapi_init()
197 bad: sun4v_hvapi_init()
H A Dleon_kernel.c331 goto bad; leon_init_timers()
343 goto bad; leon_init_timers()
347 goto bad; leon_init_timers()
357 goto bad; leon_init_timers()
385 goto bad; leon_init_timers()
467 bad: leon_init_timers()
/linux-4.1.27/drivers/net/ethernet/atheros/atl1c/
H A Datl1c.h319 unsigned long rx_fcs_err; /* The number of packets with bad FCS. */
323 unsigned long rx_frag; /* The number of packets received that are less than 64 byte long and with bad FCS. */
324 unsigned long rx_sz_64; /* The number of good and bad packets received that are 64 byte long. */
325 unsigned long rx_sz_65_127; /* The number of good and bad packets received that are between 65 and 127-byte long. */
326 unsigned long rx_sz_128_255; /* The number of good and bad packets received that are between 128 and 255-byte long. */
327 unsigned long rx_sz_256_511; /* The number of good and bad packets received that are between 256 and 511-byte long. */
328 unsigned long rx_sz_512_1023; /* The number of good and bad packets received that are between 512 and 1023-byte long. */
329 unsigned long rx_sz_1024_1518; /* The number of good and bad packets received that are between 1024 and 1518-byte long. */
330 unsigned long rx_sz_1519_max; /* The number of good and bad packets received that are between 1519-byte and MTU. */
331 unsigned long rx_sz_ov; /* The number of good and bad packets received that are more than MTU size truncated by Selene. */
348 unsigned long tx_sz_64; /* The number of good and bad packets transmitted that are 64 byte long. */
349 unsigned long tx_sz_65_127; /* The number of good and bad packets transmitted that are between 65 and 127-byte long. */
350 unsigned long tx_sz_128_255; /* The number of good and bad packets transmitted that are between 128 and 255-byte long. */
351 unsigned long tx_sz_256_511; /* The number of good and bad packets transmitted that are between 256 and 511-byte long. */
352 unsigned long tx_sz_512_1023; /* The number of good and bad packets transmitted that are between 512 and 1023-byte long. */
353 unsigned long tx_sz_1024_1518; /* The number of good and bad packets transmitted that are between 1024 and 1518-byte long. */
354 unsigned long tx_sz_1519_max; /* The number of good and bad packets transmitted that are between 1519-byte and MTU. */
/linux-4.1.27/drivers/net/ethernet/atheros/atl1e/
H A Datl1e.h266 unsigned long rx_fcs_err; /* The number of packets with bad FCS. */
270 unsigned long rx_frag; /* The number of packets received that are less than 64 byte long and with bad FCS. */
271 unsigned long rx_sz_64; /* The number of good and bad packets received that are 64 byte long. */
272 unsigned long rx_sz_65_127; /* The number of good and bad packets received that are between 65 and 127-byte long. */
273 unsigned long rx_sz_128_255; /* The number of good and bad packets received that are between 128 and 255-byte long. */
274 unsigned long rx_sz_256_511; /* The number of good and bad packets received that are between 256 and 511-byte long. */
275 unsigned long rx_sz_512_1023; /* The number of good and bad packets received that are between 512 and 1023-byte long. */
276 unsigned long rx_sz_1024_1518; /* The number of good and bad packets received that are between 1024 and 1518-byte long. */
277 unsigned long rx_sz_1519_max; /* The number of good and bad packets received that are between 1519-byte and MTU. */
278 unsigned long rx_sz_ov; /* The number of good and bad packets received that are more than MTU size truncated by Selene. */
295 unsigned long tx_sz_64; /* The number of good and bad packets transmitted that are 64 byte long. */
296 unsigned long tx_sz_65_127; /* The number of good and bad packets transmitted that are between 65 and 127-byte long. */
297 unsigned long tx_sz_128_255; /* The number of good and bad packets transmitted that are between 128 and 255-byte long. */
298 unsigned long tx_sz_256_511; /* The number of good and bad packets transmitted that are between 256 and 511-byte long. */
299 unsigned long tx_sz_512_1023; /* The number of good and bad packets transmitted that are between 512 and 1023-byte long. */
300 unsigned long tx_sz_1024_1518; /* The number of good and bad packets transmitted that are between 1024 and 1518-byte long. */
301 unsigned long tx_sz_1519_max; /* The number of good and bad packets transmitted that are between 1519-byte and MTU. */
/linux-4.1.27/arch/xtensa/boot/lib/
H A Dzmem.c43 //puts("bad gzipped data\n"); gunzip()
/linux-4.1.27/arch/mips/fw/arc/
H A Dinit.c35 printk(KERN_CRIT "Aieee, bad prom vector magic %08lx\n", prom_init()
/linux-4.1.27/include/linux/platform_data/
H A Dmmc-mxcmmc.h16 * or a negative errno value when something bad happened
H A Dmtd-nand-pxa3xx.h58 /* use an flash-based bad block table */
/linux-4.1.27/include/uapi/linux/
H A Dhysdn_if.h19 #define EPOF_BAD_MAGIC 1001 /* bad magic in POF header */
H A Dwatchdog.h42 #define WDIOF_POWERUNDER 0x0010 /* Power bad/power fault */
/linux-4.1.27/arch/powerpc/sysdev/xics/
H A Dicp-hv.c35 pr_err("%s: bad return code xirr cppr=0x%x returned %ld\n", icp_hv_get_xirr()
47 pr_err("%s: bad return code cppr cppr=0x%x returned %ld\n", icp_hv_set_cppr()
57 pr_err("%s: bad return code eoi xirr=0x%x returned %ld\n", icp_hv_set_xirr()
73 pr_err("%s: bad return code qirr cpu=%d hw_cpu=%d mfrr=0x%x " icp_hv_set_qirr()
/linux-4.1.27/arch/arm/mach-footbridge/
H A Disa-rtc.c55 printk(KERN_WARNING "RTC: *** warning: CMOS battery bad\n"); isa_rtc_init()
/linux-4.1.27/fs/befs/
H A Dinode.c28 "Inode has a bad magic header - inode = %lu", befs_check_inode()
/linux-4.1.27/drivers/md/bcache/
H A Dextents.c78 return "bad, length too big"; bch_ptr_status()
80 return "bad, short offset"; bch_ptr_status()
82 return "bad, offset past end of device"; bch_ptr_status()
88 return "bad, null key"; bch_ptr_status()
90 return "bad, no pointers"; bch_ptr_status()
153 goto bad; __bch_btree_ptr_invalid()
156 goto bad; __bch_btree_ptr_invalid()
159 bad: __bch_btree_ptr_invalid()
485 goto bad; __bch_extent_invalid()
488 goto bad; __bch_extent_invalid()
491 bad: __bch_extent_invalid()
/linux-4.1.27/arch/mips/paravirt/
H A Dparavirt-smp.c34 goto bad; set_numcpus()
38 bad: set_numcpus()
/linux-4.1.27/net/netfilter/
H A Dxt_REDIRECT.c52 pr_debug("bad MAP_IPS.\n"); redirect_tg4_check()
56 pr_debug("bad rangesize %u.\n", mr->rangesize); redirect_tg4_check()
H A Dxt_NETMAP.c107 pr_debug("bad MAP_IPS.\n"); netmap_tg4_check()
111 pr_debug("bad rangesize %u.\n", mr->rangesize); netmap_tg4_check()
/linux-4.1.27/net/sunrpc/
H A Dauth_null.c92 printk("RPC: bad verf flavor: %u\n", flavor); nul_validate()
98 printk("RPC: bad verf size: %u\n", size); nul_validate()
/linux-4.1.27/drivers/pcmcia/
H A Drsrc_nonstatic.c190 unsigned int i, j, bad; do_io_probe() local
221 bad = any = 0; do_io_probe()
227 if (!bad) do_io_probe()
228 bad = any = i; do_io_probe()
238 if (!bad) do_io_probe()
239 bad = any = i; do_io_probe()
241 if (bad) { do_io_probe()
242 sub_interval(&s_data->io_db, bad, i-bad); do_io_probe()
243 printk(" %#x-%#x", bad, i-1); do_io_probe()
244 bad = 0; do_io_probe()
248 if (bad) { do_io_probe()
249 if ((num > 16) && (bad == base) && (i == base+num)) { do_io_probe()
250 sub_interval(&s_data->io_db, bad, i-bad); do_io_probe()
254 sub_interval(&s_data->io_db, bad, i-bad); do_io_probe()
255 printk(" %#x-%#x", bad, i-1); do_io_probe()
414 u_long i, j, bad, fail, step; do_mem_probe() local
418 bad = fail = 0; do_mem_probe()
440 if (!bad) do_mem_probe()
444 bad += j-i; do_mem_probe()
447 printk(bad ? "\n" : " clean.\n"); do_mem_probe()
448 return num - bad; do_mem_probe()
H A Dpxa2xx_mainstone.c99 printk(KERN_ERR "%s(): bad Vcc %u\n", mst_pcmcia_configure_socket()
111 printk(KERN_ERR "%s(): bad Vpp %u\n", mst_pcmcia_configure_socket()
H A Dpxa2xx_trizeps4.c109 pr_err("%s(): bad Vcc %u\n", __func__, state->Vcc); trizeps_pcmcia_configure_socket()
121 pr_err("%s(): bad Vpp %u\n", __func__, state->Vpp); trizeps_pcmcia_configure_socket()
H A Dpxa2xx_stargate2.c75 pr_err("%s(): bad Vcc %u\n", sg2_pcmcia_configure_socket()
/linux-4.1.27/kernel/locking/
H A Dspinlock_debug.c83 SPIN_BUG_ON(lock->magic != SPINLOCK_MAGIC, lock, "bad magic"); debug_spin_lock_before()
97 SPIN_BUG_ON(lock->magic != SPINLOCK_MAGIC, lock, "bad magic"); debug_spin_unlock()
203 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic"); do_raw_read_lock()
222 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic"); do_raw_read_unlock()
228 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic"); debug_write_lock_before()
242 RWLOCK_BUG_ON(lock->magic != RWLOCK_MAGIC, lock, "bad magic"); debug_write_unlock()
/linux-4.1.27/arch/mips/mm/
H A Dcerr-sb1.c168 printk("Last L2 tag w/ bad ECC: %016llx\n", l2_tag); check_bus_watcher()
377 printk(" ** bad parity in VTag0/G/ASID\n"); extract_ic()
381 printk(" ** bad parity in R/VTag1\n"); extract_ic()
386 printk(" ** bad parity for valid bit\n"); extract_ic()
415 printk(" ** bad parity in predecode\n"); extract_ic()
420 printk(" ** bad parity in instruction a\n"); extract_ic()
424 printk(" ** bad parity in instruction b\n"); extract_ic()
531 printk(" ** bad parity in PTag1\n"); extract_dc()
535 printk(" ** bad parity in PTag0\n"); extract_dc()
576 printk(" dwords w/ bad ECC: %d %d %d %d\n", extract_dc()
H A Dsc-r5k.c39 /* Catch bad driver code */ r5k_dma_cache_inv_sc()
H A Dsc-rm7k.c48 /* Catch bad driver code */ rm7k_sc_wback_inv()
72 /* Catch bad driver code */ rm7k_sc_inv()
/linux-4.1.27/arch/arm/kernel/
H A Dtraps.c153 unsigned int val, bad; dump_instr() local
156 bad = __get_user(val, &((u16 *)addr)[i]); dump_instr()
158 bad = __get_user(val, &((u32 *)addr)[i]); dump_instr()
160 if (!bad) dump_instr()
164 p += sprintf(p, "bad PC value"); dump_instr()
501 die("Oops - bad mode", regs, 0); bad_mode()
503 panic("bad mode"); bad_mode()
529 arm_notify_die("Oops - bad syscall", regs, &info, n, 0); bad_syscall()
710 arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
754 pr_err("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n", __bad_xchg()
772 pr_err("[%d] %s: bad data abort: code %d instr 0x%08lx\n", baddataabort()
796 pr_err("%s:%d: bad pte %08llx.\n", file, line, (long long)pte_val(pte)); __pte_error()
801 pr_err("%s:%d: bad pmd %08llx.\n", file, line, (long long)pmd_val(pmd)); __pmd_error()
806 pr_err("%s:%d: bad pgd %08llx.\n", file, line, (long long)pgd_val(pgd)); __pgd_error()
/linux-4.1.27/arch/sh/kernel/
H A Dio_trapped.c56 goto bad; register_trapped_io()
66 goto bad; register_trapped_io()
71 goto bad; register_trapped_io()
78 goto bad; register_trapped_io()
104 bad: register_trapped_io()
/linux-4.1.27/drivers/net/wireless/cw1200/
H A Dsta.h68 int bad); cw1200_cqm_bssloss_sm()
70 int init, int good, int bad) cw1200_cqm_bssloss_sm()
73 __cw1200_cqm_bssloss_sm(priv, init, good, bad); cw1200_cqm_bssloss_sm()
69 cw1200_cqm_bssloss_sm(struct cw1200_common *priv, int init, int good, int bad) cw1200_cqm_bssloss_sm() argument
/linux-4.1.27/arch/x86/kernel/cpu/microcode/
H A Dintel_lib.c90 pr_warn("aborting, bad extended signature table checksum\n"); microcode_sanity_check()
102 pr_err("aborting, bad checksum\n"); microcode_sanity_check()
116 pr_err("aborting, bad checksum\n"); microcode_sanity_check()
/linux-4.1.27/drivers/media/usb/dvb-usb/
H A Daf9005.c637 err("boot bad config header."); af9005_boot_packet()
641 err("boot bad config size."); af9005_boot_packet()
645 err("boot bad config sequence."); af9005_boot_packet()
649 err("boot bad config subtype."); af9005_boot_packet()
655 err("boot bad config checksum."); af9005_boot_packet()
662 err("boot bad confirm header."); af9005_boot_packet()
666 err("boot bad confirm size."); af9005_boot_packet()
670 err("boot bad confirm sequence."); af9005_boot_packet()
674 err("boot bad confirm subtype."); af9005_boot_packet()
680 err("boot bad confirm checksum."); af9005_boot_packet()
687 err("boot bad boot header."); af9005_boot_packet()
691 err("boot bad boot size."); af9005_boot_packet()
695 err("boot bad boot sequence."); af9005_boot_packet()
699 err("boot bad boot pattern 01."); af9005_boot_packet()
703 err("boot bad boot pattern 10."); af9005_boot_packet()
709 err("boot bad boot checksum."); af9005_boot_packet()
847 err("rc query bad header."); af9005_rc_query()
851 err("rc query bad sequence."); af9005_rc_query()
/linux-4.1.27/drivers/gpu/drm/i915/
H A Dintel_acpi.c59 return "bad type"; intel_dsm_port_name()
75 return "bad type"; intel_dsm_mux_type()
/linux-4.1.27/arch/x86/math-emu/
H A Dfpu_system.h87 about 20% slower if applied to the code. Anyway, errors due to bad
88 code addresses should be much rarer than errors due to bad data
/linux-4.1.27/drivers/gpu/drm/r128/
H A Dr128_irq.c70 DRM_ERROR("%s: bad crtc %d\n", __func__, crtc); r128_enable_vblank()
81 DRM_ERROR("%s: bad crtc %d\n", __func__, crtc); r128_disable_vblank()
/linux-4.1.27/arch/m32r/platforms/mappi2/
H A Dsetup.c27 printk("bad irq 0x%08x\n", irq); disable_mappi2_irq()
40 printk("bad irq 0x%08x\n", irq); enable_mappi2_irq()
/linux-4.1.27/arch/m32r/platforms/mappi3/
H A Dsetup.c27 printk("bad irq 0x%08x\n", irq); disable_mappi3_irq()
40 printk("bad irq 0x%08x\n", irq); enable_mappi3_irq()
/linux-4.1.27/arch/arm/include/asm/
H A Dkgdb.h22 * we would loose the kernel's LR, which is a bad thing. This
23 * is bad thing.
/linux-4.1.27/drivers/staging/goldfish/
H A Dgoldfish_nand_reg.h26 /* NAND_RESULT is 1 if block is bad, 0 if it is not */
/linux-4.1.27/drivers/input/serio/
H A Di8042-io.h73 * bad things. Because of this the region is always reserved on such boxes. i8042_platform_init()
/linux-4.1.27/arch/x86/power/
H A Dhibernate_asm_32.S6 * your own stack under you is bad idea.
/linux-4.1.27/arch/xtensa/mm/
H A Dhighmem.c71 * is a bad idea also, in case the page changes cacheability __kunmap_atomic()
/linux-4.1.27/arch/sh/mm/
H A Dextable_64.c25 * Some functions that may trap due to a bad user-mode address have too
H A Dfault.c84 printk("(bad)"); show_pte()
97 printk("(bad)"); show_pte()
110 printk("(bad)"); show_pte()
236 * Oops. The kernel tried to access some bad page. We'll have to no_context()
/linux-4.1.27/drivers/clk/bcm/
H A Dclk-kona-setup.c37 pr_err("%s: bad policy enable offset for %s " ccu_data_offsets_valid()
43 pr_err("%s: bad policy control offset for %s " ccu_data_offsets_valid()
103 pr_err("%s: bad policy offset for %s (%u > %u)\n", peri_clk_data_offsets_valid()
113 pr_err("%s: bad gate offset for %s (%u > %u)\n", peri_clk_data_offsets_valid()
120 pr_err("%s: bad hysteresis offset for %s " peri_clk_data_offsets_valid()
134 pr_err("%s: bad divider offset for %s (%u > %u)\n", peri_clk_data_offsets_valid()
143 pr_err("%s: bad pre-divider offset for %s " peri_clk_data_offsets_valid()
153 pr_err("%s: bad selector offset for %s (%u > %u)\n", peri_clk_data_offsets_valid()
162 pr_err("%s: bad trigger offset for %s (%u > %u)\n", peri_clk_data_offsets_valid()
171 pr_err("%s: bad pre-trigger offset for %s (%u > %u)\n", peri_clk_data_offsets_valid()
187 pr_err("%s: bad %s bit for %s (%u > %u)\n", __func__, bit_posn_valid()
207 pr_err("%s: bad %s field width 0 for %s\n", __func__, bitfield_valid()
212 pr_err("%s: bad %s for %s (%u + %u > %u)\n", __func__, bitfield_valid()
314 pr_err("%s: bad selector for %s " sel_valid()
343 pr_err("%s: bad %s fixed value 0 for %s\n", __func__, div_valid()
355 pr_warn("%s: bad %s fraction width for %s (%u > %u)\n", div_valid()
/linux-4.1.27/fs/ocfs2/dlm/
H A Ddlmapi.h46 DLM_IVLOCKID, /* 11: bad lockid */
48 DLM_BADTYPE, /* 13: bad resource type */
49 DLM_BADRESOURCE, /* 14: bad resource handle */
54 DLM_BADARGS, /* 19: bad api args */
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
H A Dhdmi_common.c22 dev_err(&pdev->dev, "bad number of lanes\n"); hdmi_parse_lanes_of()
/linux-4.1.27/include/rxrpc/
H A Dpacket.h181 #define RX_DEBUGI_BADTYPE -8 /* bad debugging packet type */
205 #define RXKADOUTOFSEQUENCE 19270404 /* packet had bad sequence number */
207 #define RXKADBADKEY 19270406 /* illegal key: bad parity or weak */
208 #define RXKADBADTICKET 19270407 /* security object was passed a bad ticket */
/linux-4.1.27/include/xen/interface/io/
H A Dxs_wire.h91 /* Violating this is very bad. See docs/misc/xenstore.txt. */
/linux-4.1.27/arch/s390/kernel/vdso32/
H A DMakefile28 # Force dependency (incbin is bad)
/linux-4.1.27/arch/s390/kernel/vdso64/
H A DMakefile28 # Force dependency (incbin is bad)
/linux-4.1.27/arch/nios2/mm/
H A Dpgtable.c29 * resv |way |rd | we|pid |dbl|bad|perm|d
/linux-4.1.27/arch/powerpc/include/asm/
H A Drtc.h39 #define RTC_BATT_BAD 0x100 /* battery bad */
H A Dpgtable-ppc64-4k.h81 pr_err("%s:%d: bad pud %08lx.\n", __FILE__, __LINE__, pud_val(e))
/linux-4.1.27/arch/powerpc/kernel/vdso32/
H A DMakefile28 # Force dependency (incbin is bad)
/linux-4.1.27/arch/powerpc/kernel/vdso64/
H A DMakefile21 # Force dependency (incbin is bad)
/linux-4.1.27/arch/arm64/kernel/vdso/
H A DMakefile26 # Force dependency (incbin is bad)
/linux-4.1.27/arch/m68k/include/asm/
H A Drtc.h25 #define RTC_BATT_BAD 0x100 /* battery bad */
H A Dmcf_pgtable.h206 printk(KERN_ERR "%s:%d: bad pte %08lx.\n", \ pgd_clear()
209 printk(KERN_ERR "%s:%d: bad pmd %08lx.\n", \ pgd_clear()
212 printk(KERN_ERR "%s:%d: bad pgd %08lx.\n", \ pgd_clear()
H A Dsun3_pgtable.h154 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e)) pgd_clear()
156 printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e)) pgd_clear()
158 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e)) pgd_clear()
/linux-4.1.27/arch/m68k/mm/
H A Dkmap.c257 printk("iounmap: bad pgd(%08lx)\n", pgd_val(*pgd_dir)); __iounmap()
277 printk("iounmap: bad pmd (%08lx)\n", pmd_val(*pmd_dir)); __iounmap()
335 printk("iocachemode: bad pgd(%08lx)\n", pgd_val(*pgd_dir)); kernel_set_cachemode()
354 printk("iocachemode: bad pmd (%08lx)\n", pmd_val(*pmd_dir)); kernel_set_cachemode()
H A Dfault.c43 * Oops. The kernel tried to access some bad page. We'll have to send_fault_sig()
66 * If this routine detects a bad access, it returns 1, otherwise it
/linux-4.1.27/net/ipv6/
H A Dexthdrs_core.c123 goto bad; ipv6_find_tlv()
128 goto bad; ipv6_find_tlv()
147 goto bad; ipv6_find_tlv()
154 bad: ipv6_find_tlv()
H A Dah6.c135 goto bad; zero_out_mutable_opts()
138 goto bad; zero_out_mutable_opts()
150 bad: zero_out_mutable_opts()
179 goto bad; ipv6_rearrange_destopt()
182 goto bad; ipv6_rearrange_destopt()
196 goto bad; ipv6_rearrange_destopt()
209 bad: ipv6_rearrange_destopt()
H A Dexthdrs.c106 goto bad; ip6_parse_tlv()
120 goto bad; ip6_parse_tlv()
131 goto bad; ip6_parse_tlv()
138 goto bad; ip6_parse_tlv()
144 goto bad; ip6_parse_tlv()
168 bad: ip6_parse_tlv()
/linux-4.1.27/kernel/sched/
H A Didle_task.c43 printk(KERN_ERR "bad: scheduling from the idle thread!\n"); dequeue_task_idle()
/linux-4.1.27/include/asm-generic/
H A Dpgtable-nopmd.h26 * setup: the pmd is never bad, and a pmd always exists (as it's folded
H A Dpgtable-nopud.h22 * setup: the pud is never bad, and a pud always exists (as it's folded
/linux-4.1.27/include/linux/fsl/bestcomm/
H A Dfec.h25 #define BCOM_FEC_TX_BD_ABC 0x02000000ul /* append bad CRC */
/linux-4.1.27/sound/soc/codecs/
H A Dtlv320aic26.c88 dev_dbg(&aic26->spi->dev, "bad rate\n"); return -EINVAL; aic26_hw_params()
98 dev_dbg(&aic26->spi->dev, "bad format\n"); return -EINVAL; aic26_hw_params()
185 dev_dbg(&aic26->spi->dev, "bad master\n"); return -EINVAL; aic26_set_fmt()
195 dev_dbg(&aic26->spi->dev, "bad format\n"); return -EINVAL; aic26_set_fmt()
/linux-4.1.27/drivers/net/ethernet/altera/
H A Daltera_tse.h281 /* Total number of bytes received. Good and bad frames. */
283 /* Total number of packets received. Counts good and bad packets. */
293 /* Frames (good and bad) with 65 to 127 bytes */
295 /* Frames (good and bad) with 128 to 255 bytes */
297 /* Frames (good and bad) with 256 to 511 bytes */
299 /* Frames (good and bad) with 512 to 1023 bytes */
301 /* Frames (good and bad) with 1024 to 1518 bytes */
/linux-4.1.27/fs/ubifs/
H A Dtnc_misc.c319 ubifs_err(c, "bad branch %d", i); read_znode()
331 ubifs_err(c, "bad key type at slot %d: %d", read_znode()
343 ubifs_err(c, "bad target node (type %d) length (%d)", read_znode()
351 ubifs_err(c, "bad target node (type %d) length (%d)", read_znode()
373 ubifs_err(c, "bad key order (keys %d and %d)", i, i + 1); read_znode()
389 ubifs_err(c, "bad indexing node at LEB %d:%d, error %d", lnum, offs, err); read_znode()
485 ubifs_err(c, "bad key in node at LEB %d:%d", ubifs_tnc_read_node()
/linux-4.1.27/tools/perf/
H A Dbuiltin-lock.c687 static void print_bad_events(int bad, int total) print_bad_events() argument
695 pr_info("bad: %d, total: %d\n", bad, total); print_bad_events()
696 pr_info("bad rate: %.2f %%\n", (double)bad / (double)total * 100); print_bad_events()
697 pr_info("histogram of events caused bad sequence\n"); print_bad_events()
707 int bad, total; print_result() local
720 bad = total = 0; print_result()
724 bad++; print_result()
753 print_bad_events(bad, total); print_result()
/linux-4.1.27/drivers/net/wireless/orinoco/
H A Dfw.c68 return "bad headersize"; validate_fw()
70 return "bad block offset"; validate_fw()
72 return "bad PDR offset"; validate_fw()
74 return "bad PRI offset"; validate_fw()
76 return "bad compat offset"; validate_fw()
/linux-4.1.27/arch/unicore32/mm/
H A Dalignment.c295 goto bad; do_alignment_ldmstm()
350 bad: do_alignment_ldmstm()
431 goto bad; do_alignment()
446 goto bad; do_alignment()
454 bad: do_alignment()
/linux-4.1.27/arch/x86/kernel/cpu/mtrr/
H A Dcleanup.c514 int bad; member in struct:mtrr_cleanup_result
615 result[i].bad = 1; mtrr_calc_range_state()
621 if (!result[i].bad && !result[i].lose_cover_sizek) { mtrr_calc_range_state()
623 result[i].bad = 1; mtrr_calc_range_state()
626 if (!result[i].bad && (range_sums - range_sums_new < min_loss_pfn[num_reg])) mtrr_calc_range_state()
640 result[i].bad ? "*BAD*" : " ", mtrr_print_out_one_result()
643 result[i].num_reg, result[i].bad ? "-" : "", mtrr_print_out_one_result()
665 if (!result[i].bad && mtrr_search_optimal_index()
738 if (!result[i].bad) { mtrr_cleanup()
/linux-4.1.27/drivers/ide/
H A Dide-iops.c97 * of the "bad" bits, and if all is okay it returns 0. All other
105 int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad, __ide_wait_stat() argument
150 if (OK_STAT(stat, good, bad)) { __ide_wait_stat()
165 u8 bad, unsigned long timeout) ide_wait_stat()
176 err = __ide_wait_stat(drive, good, bad, timeout, &stat); ide_wait_stat()
337 printk(KERN_ERR "%s: %s: bad status\n", drive->name, __func__); ide_driveid_update()
164 ide_wait_stat(ide_startstop_t *startstop, ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout) ide_wait_stat() argument
/linux-4.1.27/drivers/net/ethernet/aeroflex/
H A Dgreth.c747 int bad, count; greth_rx() local
765 bad = 0; greth_rx()
771 bad = 1; greth_rx()
775 bad = 1; greth_rx()
779 bad = 1; greth_rx()
782 if (unlikely(bad)) { greth_rx()
862 int bad, count = 0; greth_rx_gbit() local
875 bad = 0; greth_rx_gbit()
885 bad = 1; greth_rx_gbit()
889 bad = 1; greth_rx_gbit()
892 bad = 1; greth_rx_gbit()
898 if (!bad && (newskb=netdev_alloc_skb(dev, MAX_FRAME_SIZE + NET_IP_ALIGN))) { greth_rx_gbit()
939 } else if (bad) { greth_rx_gbit()
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/
H A Dcmd.c544 return "bad block number"; deliv_status_to_str()
558 return "bad command descriptor type"; deliv_status_to_str()
1504 return "bad operation"; cmd_status_str()
1506 return "bad parameter"; cmd_status_str()
1508 return "bad system state"; cmd_status_str()
1510 return "bad resource"; cmd_status_str()
1516 return "bad resource state"; cmd_status_str()
1518 return "bad index"; cmd_status_str()
1522 return "bad input length"; cmd_status_str()
1524 return "bad output length"; cmd_status_str()
1526 return "bad QP state"; cmd_status_str()
1528 return "bad packet (discarded)"; cmd_status_str()
1530 return "bad size too many outstanding CQEs"; cmd_status_str()
/linux-4.1.27/drivers/net/slip/
H A Dslhc.c510 goto bad; slhc_uncompress()
558 goto bad; slhc_uncompress()
565 goto bad; slhc_uncompress()
571 goto bad; slhc_uncompress()
577 goto bad; slhc_uncompress()
585 goto bad; slhc_uncompress()
599 goto bad; slhc_uncompress()
627 bad: slhc_uncompress()
/linux-4.1.27/drivers/message/fusion/lsi/
H A Dmpi_log_fc.h41 MPI_IOCLOGINFO_FC_INIT_ERROR_BAD_START_OF_FRAME = 0x20000002, /* Bad Rx Frame, bad start of frame primitive */
42 MPI_IOCLOGINFO_FC_INIT_ERROR_BAD_END_OF_FRAME = 0x20000003, /* Bad Rx Frame, bad end of frame primitive */
/linux-4.1.27/drivers/net/ethernet/seeq/
H A Dether3.c228 int bad = -1; ether3_ramtest() local
246 if (max_errors > 0 && bad != buffer[i]) { ether3_ramtest()
251 bad = i; ether3_ramtest()
254 if (bad != -1) { ether3_ramtest()
255 if (bad != i - 1) ether3_ramtest()
258 bad = -1; ether3_ramtest()
262 if (bad != -1) ether3_ramtest()
616 printk("%s: bad next pointer @%04X: ", dev->name, priv(dev)->rx_head); ether3_rx()
/linux-4.1.27/drivers/input/touchscreen/
H A Dcyttsp4_spi.c98 dev_err(dev, "%s: bad operation code=%d\n", __func__, op); cyttsp_spi_xfer()
108 * do not return here since was a bad ACK sequence cyttsp_spi_xfer()
H A Dcyttsp_spi.c95 dev_err(dev, "%s: bad operation code=%d\n", __func__, op); cyttsp_spi_xfer()
105 * do not return here since was a bad ACK sequence cyttsp_spi_xfer()
/linux-4.1.27/arch/x86/lib/
H A Dcsum-wrappers_64.c17 * @errp: set to -EFAULT for an bad source address.
78 * @errp: set to -EFAULT for an bad destination address.
H A Dcopy_user_nocache_64.S22 /* check for bad alignment of destination */
/linux-4.1.27/arch/x86/mm/
H A Dpageattr-test.c182 printk(KERN_ERR "CPA %lx: bad pte %Lx\n", addr[i], pageattr_test()
214 printk(KERN_ERR "CPA %lx: bad pte after revert %Lx\n", pageattr_test()
/linux-4.1.27/arch/mips/kernel/
H A Dsyscall.c240 * If we ever come here the user sp is bad. Zap the process right away.
241 * Due to the bad stack signaling wouldn't work.
/linux-4.1.27/arch/blackfin/kernel/
H A Dearly_printk.c113 /* Crashing in here would be really bad, so check both the var setup_early_printk()
158 * Set up a temporary Event Vector Table, so if something bad happens before
/linux-4.1.27/arch/cris/arch-v32/mm/
H A Dinit.c141 * Initialize the bad page table and bad page to point to a couple of paging_init()
/linux-4.1.27/arch/arm/nwfpe/
H A Dfpmodule.c89 pr_err("nwfpe: bad structure size\n"); fpe_init()
94 pr_err("nwfpe: bad register size\n"); fpe_init()
/linux-4.1.27/mm/kasan/
H A Dreport.c121 "kasan: bad access detected"); print_address_description()
124 dump_page(page, "kasan: bad access detected"); print_address_description()
/linux-4.1.27/sound/oss/
H A Dsound_timer.c51 * slap, bad bad not allowed. reprogram_timer()
/linux-4.1.27/drivers/infiniband/hw/ehca/
H A Dehca_mrmw.c215 ehca_err(pd->device, "bad input values: num_phys_buf=%x " ehca_reg_phys_mr()
228 ehca_err(pd->device, "bad input values: mr_access_flags=%x", ehca_reg_phys_mr()
243 ehca_err(pd->device, "bad input values: size=%llx iova_start=%p", ehca_reg_phys_mr()
329 ehca_gen_err("bad pd=%p", pd); ehca_reg_user_mr()
341 ehca_err(pd->device, "bad input values: mr_access_flags=%x", ehca_reg_user_mr()
348 ehca_err(pd->device, "bad input values: length=%llx " ehca_reg_user_mr()
473 ehca_err(mr->device, "rereg with bad pd, pd=%p " ehca_rereg_phys_mr()
504 ehca_err(mr->device, "bad input values mr_rereg_mask=%x" ehca_rereg_phys_mr()
520 ehca_err(mr->device, "bad input values: mr_rereg_mask=%x " ehca_rereg_phys_mr()
545 ehca_err(mr->device, "bad input values: new_size=%llx " ehca_rereg_phys_mr()
788 ehca_err(pd->device, "bad input values: mr_access_flags=%x", ehca_alloc_fmr()
794 ehca_err(pd->device, "bad input values: mr_access_flags=%x", ehca_alloc_fmr()
800 ehca_err(pd->device, "bad input values: fmr_attr->max_pages=%x " ehca_alloc_fmr()
879 ehca_err(fmr->device, "bad iova, iova=%llx fmr_page_size=%x", ehca_map_phys_fmr()
1133 "bad rc, ret=%i rnum=%x kpage=%p", ehca_reg_mr_rpages()
1736 ehca_err(&shca->ib_device, "bad call, shca=%p", shca); ehca_dereg_internal_maxmr()
1779 ehca_gen_err("bad phys buf array len, num_phys_buf=0"); ehca_mr_chk_buf_and_calc_size()
1798 ehca_gen_err("bad address, i=%x pbuf->addr=%llx " ehca_mr_chk_buf_and_calc_size()
1806 ehca_gen_err("bad size, i=%x pbuf->size=%llx", ehca_mr_chk_buf_and_calc_size()
1829 ehca_gen_err("bad list_len, list_len=%x " ehca_fmr_check_page_list()
1839 ehca_gen_err("bad page, i=%x *page=%llx page=%p fmr=%p " ehca_fmr_check_page_list()
2135 ehca_gen_err("bad pginfo->type=%x", pginfo->type); ehca_set_pagebuf()
H A Dehca_uverbs.c190 ehca_err(cq->ib_cq.device, "bad resource type=%x cq_num=%x", ehca_mmap_cq()
240 ehca_err(qp->ib_qp.device, "bad resource type=%x qp=num=%x", ehca_mmap_qp()
304 ehca_gen_err("bad queue type %x", q_type); ehca_mmap()
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
H A Di40e_hmc.c57 hw_dbg(hw, "i40e_add_sd_table_entry: bad sd_entry\n"); i40e_add_sd_table_entry()
63 hw_dbg(hw, "i40e_add_sd_table_entry: bad sd_index\n"); i40e_add_sd_table_entry()
144 hw_dbg(hw, "i40e_add_pd_table_entry: bad pd_index\n"); i40e_add_pd_table_entry()
218 hw_dbg(hw, "i40e_remove_pd_bp: bad idx\n"); i40e_remove_pd_bp()
H A Di40e_lan_hmc.c315 hw_dbg(hw, "i40e_create_lan_hmc_object: bad info ptr\n"); i40e_create_lan_hmc_object()
320 hw_dbg(hw, "i40e_create_lan_hmc_object: bad hmc_info ptr\n"); i40e_create_lan_hmc_object()
325 hw_dbg(hw, "i40e_create_lan_hmc_object: bad signature\n"); i40e_create_lan_hmc_object()
557 hw_dbg(hw, "i40e_delete_hmc_object: bad info ptr\n"); i40e_delete_lan_hmc_object()
562 hw_dbg(hw, "i40e_delete_hmc_object: bad info->hmc_info ptr\n"); i40e_delete_lan_hmc_object()
567 hw_dbg(hw, "i40e_delete_hmc_object: bad hmc_info->signature\n"); i40e_delete_lan_hmc_object()
573 hw_dbg(hw, "i40e_delete_hmc_object: bad sd_entry\n"); i40e_delete_lan_hmc_object()
579 hw_dbg(hw, "i40e_delete_hmc_object: bad hmc_info->hmc_obj\n"); i40e_delete_lan_hmc_object()
1014 hw_dbg(hw, "i40e_hmc_get_object_va: bad hmc_info ptr\n"); i40e_hmc_get_object_va()
1019 hw_dbg(hw, "i40e_hmc_get_object_va: bad hmc_info->hmc_obj ptr\n"); i40e_hmc_get_object_va()
1024 hw_dbg(hw, "i40e_hmc_get_object_va: bad object_base ptr\n"); i40e_hmc_get_object_va()
1029 hw_dbg(hw, "i40e_hmc_get_object_va: bad hmc_info->signature\n"); i40e_hmc_get_object_va()
/linux-4.1.27/drivers/staging/iio/adc/
H A Dad7606_ring.c62 * some signal glitch caused by bad PCB desgin or ad7606_poll_bh_to_ring()
/linux-4.1.27/drivers/input/joystick/
H A Dtmdc.c243 unsigned char r, bad = 0; tmdc_poll() local
249 bad = 1; tmdc_poll()
255 bad = 1; tmdc_poll()
260 tmdc->bads += bad; tmdc_poll()
/linux-4.1.27/drivers/clocksource/
H A Dscx200_hrt.c8 * will detect and de-rate the bad TSC, allowing this timer to take
/linux-4.1.27/arch/um/drivers/
H A Dpcap_kern.c88 printk(KERN_ERR "pcap_setup : bad option - '%s'\n", pcap_setup()
/linux-4.1.27/arch/x86/boot/
H A Dvideo-bios.c54 started. That's bad. Try to revert to the original set_bios_mode()
/linux-4.1.27/arch/metag/mm/
H A Dioremap.c83 pr_err("iounmap: bad address %p\n", addr); __iounmap()
/linux-4.1.27/arch/microblaze/mm/
H A Dfault.c63 * bad_page_fault is called when we have a bad access from the kernel.
78 /* kernel has accessed a bad area */ bad_page_fault()
79 die("kernel access of bad area", regs, sig); bad_page_fault()
114 /* in_atomic() in user mode is really bad, do_page_fault()
/linux-4.1.27/include/uapi/mtd/
H A Dmtd-abi.h174 /* Check if an eraseblock is bad */
176 /* Mark an eraseblock as bad */
245 * @badblocks: number of bad blocks in this partition
246 * @bbtblocks: number of blocks reserved for bad block tables
H A Dubi-user.h242 * @max_beb_per1024: maximum expected number of bad PEB per 1024 PEBs
267 * The @max_beb_per1024 is the maximum amount of bad PEBs UBI expects on the
270 * maximum expected bad eraseblocks per 1024 is then:
273 * amount of eraseblock UBI reserves for handling new bad blocks. If the device
274 * has more bad eraseblocks than this limit, UBI does not reserve any physical
275 * eraseblocks for new bad eraseblocks, but attempts to use available
/linux-4.1.27/arch/powerpc/platforms/ps3/
H A Dsmp.c48 DBG("%s:%d: bad msg: %d\n", __func__, __LINE__, msg); ps3_smp_message_pass()
/linux-4.1.27/arch/avr32/mm/
H A Dioremap.c87 printk (KERN_ERR "iounmap: bad address %p\n", addr); __iounmap()
/linux-4.1.27/arch/ia64/include/uapi/asm/
H A Dintrinsics.h36 * ia64_fetch_and_add() with a bad value.
/linux-4.1.27/lib/mpi/
H A Dmpiutil.c24 * Note: It was a bad idea to use the number of limbs to allocate
/linux-4.1.27/mm/
H A Dmemtest.c34 printk(KERN_INFO " %016llx bad mem addr %010llx - %010llx reserved\n", reserve_bad_mem()
/linux-4.1.27/include/linux/
H A Dhash.h36 * The above primes are actively bad for hashing, since they are
/linux-4.1.27/tools/testing/ktest/
H A Dktest.pl2661 } elsif ($bisect_ret_default eq "bad") {
2699 } elsif ($output =~ m/^([[:xdigit:]]+) is the first bad commit/) {
2701 doprint "Found bad commit... $1\n";
2808 return "bad";
2832 my $bad = $bisect_bad;
2846 $bad = get_sha1($bad);
2849 doprint "Performing a reverse bisect (bad is good, good is bad!)\n";
2869 print " If you say yes, then no checks of good or bad will be done\n";
2890 doprint "TESTING BISECT BAD [$bad]\n";
2891 run_command "git checkout $bad" or
2892 die "Failed to checkout $bad";
2896 if ($result ne "bad") {
2897 fail "Tested BISECT_BAD [$bad] and it succeeded" and return 0;
2901 if ($check ne "bad") {
2929 run_git_bisect "git bisect bad $bad" or
2930 dodie "could not set bisect bad to $bad";
2965 # config_off holds the set of configs that the bad config had disabled.
3134 doprint "Found bad config: $config\n";
3159 doprint "New config equals bad config, try next test\n";
3206 # Enable all of one set and see if we get a new bad
3209 # first set the good config to the bad values.
3213 # first lets enable things in bad config that are enabled in good config
3219 doprint "Set tmp config to be bad config with good config values\n";
3241 doprint "Set tmp config to be bad config with some good config values\n";
3322 doprint "Run bad configs through make oldconfig\n";
3336 doprint "Testing bad config\n";
3344 if ($config_bisect_check ne "bad") {
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/
H A Dkernel_user_comm.c67 CERROR("KernelComm: bad magic %x\n", kuch->kuc_magic); libcfs_kkuc_msg_put()
117 CDEBUG(D_WARNING, "Kernelcomm: bad group %d\n", group); libcfs_kkuc_group_add()
223 CDEBUG(D_WARNING, "Kernelcomm: bad group %d\n", group); libcfs_kkuc_group_foreach()
/linux-4.1.27/arch/tile/lib/
H A Datomic_asm_32.S53 * If the main page fault handler discovers a bad address, it will see
58 * bad "struct __get_user" (for user addresses) or can just panic (for
59 * bad kernel addresses).
/linux-4.1.27/arch/score/include/asm/
H A Dpgtable.h39 printk(KERN_ERR "%s:%d: bad pte %08lx.\n", \
42 printk(KERN_ERR "%s:%d: bad pgd %08lx.\n", \
109 * setup: the pgd is never bad, and a pmd always exists (as it's folded
/linux-4.1.27/arch/mips/include/asm/
H A Dpgtable-32.h74 printk("%s:%d: bad pte %016Lx.\n", __FILE__, __LINE__, pte_val(e))
77 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
80 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
/linux-4.1.27/arch/mips/sibyte/common/
H A Dbus_watcher.c122 seq_printf(m, "L2-d-cor %8ld\nL2-d-bad %8ld\n", bw_proc_show()
124 seq_printf(m, "L2-t-cor %8ld\nL2-t-bad %8ld\n", bw_proc_show()
126 seq_printf(m, "MC-d-cor %8ld\nMC-d-bad %8ld\n", bw_proc_show()
/linux-4.1.27/lib/
H A Dlist_sort.c189 pr_err("error: bad poison: %#x/%#x\n", check()
194 pr_err("error: bad poison: %#x/%#x\n", check()
281 pr_err("error: bad list length %d", count); list_sort_test()
/linux-4.1.27/net/9p/
H A Derror.c107 {"File descriptor in bad state", EBADFD},
140 {"bad offset in directory read", ESPIPE},
141 {"bad use of fid", EBADF},
/linux-4.1.27/arch/powerpc/mm/
H A Dfault.c280 /* in_atomic() in user mode is really bad, do_page_fault()
384 * one which seems bad. do_page_fault()
504 * bad_page_fault is called when we have a bad access from the kernel.
518 /* kernel has accessed a bad area */ bad_page_fault()
542 die("Kernel access of bad area", regs, sig); bad_page_fault()
/linux-4.1.27/arch/arm/mach-omap1/
H A Dusb.c450 goto bad; omap1_usb1_init()
470 bad: omap1_usb1_init()
518 goto bad; omap1_usb2_init()
526 goto bad; omap1_usb2_init()
543 bad: omap1_usb2_init()
/linux-4.1.27/drivers/net/ethernet/8390/
H A Dne.c21 sanity checks and bad clone support optional.
25 Paul Gortmaker : Allow users with bad cards to avoid full probe.
66 /* 0xbad = bad sig or no reset ack */
73 static int bad[MAX_NE_CARDS]; variable
79 module_param_array(bad, int, NULL, 0);
83 MODULE_PARM_DESC(bad, "Accept card(s) with bad signatures");
130 /* A list of bad clones that we none-the-less recognize. */
447 /* Ack! Well, there might be a *bad* NE*000 clone there. ne_probe1()
826 dev->mem_end = bad[this_dev]; ne_drv_probe()
994 bad[this_dev] = dev->mem_end; ne_probe()
/linux-4.1.27/fs/ocfs2/
H A Dreservations.c156 mlog(ML_ERROR, "reservation %d has bad start off!\n", ocfs2_check_resmap()
158 goto bad; ocfs2_check_resmap()
164 goto bad; ocfs2_check_resmap()
170 goto bad; ocfs2_check_resmap()
176 goto bad; ocfs2_check_resmap()
180 goto bad; ocfs2_check_resmap()
189 bad: ocfs2_check_resmap()
/linux-4.1.27/drivers/video/fbdev/
H A Dmetronomefb.c198 dev_err(dev, "Error: bad fvsn %x\n", wfm_hdr->fvsn); load_waveform()
202 dev_err(dev, "Error: bad luts %x\n", wfm_hdr->luts); load_waveform()
207 dev_err(dev, "Error: bad cksum %x != %x\n", cksum, load_waveform()
240 dev_err(dev, "Error: bad temperature range table cksum" load_waveform()
252 dev_err(dev, "Error: bad mode table address cksum" load_waveform()
264 dev_err(dev, "Error: bad temperature table address cksum" load_waveform()
299 dev_err(dev, "Error: bad waveform data cksum" load_waveform()
/linux-4.1.27/arch/s390/mm/
H A Dfault.c137 goto bad; dump_pagetable()
146 goto bad; dump_pagetable()
155 goto bad; dump_pagetable()
164 goto bad; dump_pagetable()
172 goto bad; dump_pagetable()
177 bad: dump_pagetable()
266 * Oops. The kernel tried to access some bad page. We'll have to do_no_context()
/linux-4.1.27/net/ceph/crush/
H A Dmapper.c64 * wasn't very random, and had some other bad behaviors. Instead, we
156 dprintk("bad list sums for bucket %d\n", bucket->h.id); bucket_list_choose()
464 dprintk(" bad item %d\n", item); crush_choose_firstn()
480 dprintk(" bad item type %d\n", type); crush_choose_firstn()
648 dprintk(" bad item %d\n", item); crush_choose_indep()
667 dprintk(" bad item type %d\n", type); crush_choose_indep()
778 dprintk(" bad ruleno %d\n", ruleno); crush_do_rule()
/linux-4.1.27/drivers/mtd/
H A Dsm_ftl.c298 /* Test if sector marked as bad */ sm_read_sector()
301 " as bad" , block, zone); sm_read_sector()
427 /* Mark whole block at offset 'offs' as bad. */ sm_mark_block_bad()
442 sm_printk("marking block %d of zone %d as bad", block, zone); sm_mark_block_bad()
446 any bad blocks till fail completely */ sm_mark_block_bad()
453 * If erase succeeds, it updates free block fifo, otherwise marks block as bad
802 /* If block is marked as bad, skip it */ sm_init_zone()
807 dbg("PH %04d <-> <marked bad>", block); sm_init_zone()
815 /* We can try to erase it, or mark it as bad, but sm_init_zone()
818 dbg("PH %04d <-> LBA %04d(bad)", block, lba); sm_init_zone()
/linux-4.1.27/arch/arm/mm/
H A Dalignment.c397 goto bad; do_alignment_ldrdstrd()
434 bad: do_alignment_ldrdstrd()
491 goto bad; do_alignment_ldmstm()
569 bad: do_alignment_ldmstm()
821 goto bad; do_alignment()
826 goto bad; do_alignment()
875 goto bad; do_alignment()
879 goto bad; do_alignment()
894 goto bad; do_alignment()
904 bad: do_alignment()
/linux-4.1.27/arch/powerpc/kernel/
H A Dsignal_32.c1068 "%s[%d]: bad frame in handle_rt_signal32: " handle_rt_signal32()
1241 goto bad; sys_rt_sigreturn()
1244 goto bad; sys_rt_sigreturn()
1256 goto bad; sys_rt_sigreturn()
1264 goto bad; sys_rt_sigreturn()
1271 goto bad; sys_rt_sigreturn()
1282 goto bad; sys_rt_sigreturn()
1285 goto bad; sys_rt_sigreturn()
1290 bad: sys_rt_sigreturn()
1293 "%s[%d]: bad frame in sys_rt_sigreturn: " sys_rt_sigreturn()
1384 printk_ratelimited(KERN_INFO "%s[%d]: bad frame in " sys_debug_setcontext()
1483 "%s[%d]: bad frame in handle_signal32: " handle_signal32()
1555 "%s[%d]: bad frame in sys_sigreturn: " sys_sigreturn()
/linux-4.1.27/drivers/memstick/core/
H A Dms_block.c724 /* Reset the card, to guard against hw errors beeing treated as bad blocks */ msb_reset()
810 pr_notice("marking pba %d as bad", pba); msb_mark_bad()
818 dbg("marking page %d of pba %d as bad", page, pba); msb_mark_page_bad()
847 pr_err("erase failed, marking pba %d as bad", pba); msb_erase_block()
930 /* Mark bad pages */ msb_read_page()
1281 dbg("reading bad block of boot block at pba %d, offset %d len %d", msb_read_bad_block_table()
1301 "bad block table extends beyond the boot block"); msb_read_bad_block_table()
1306 /* Process the bad block table */ msb_read_bad_block_table()
1312 dbg("bad block table contains invalid block %d", msb_read_bad_block_table()
1318 dbg("duplicate bad block %d in the table", msb_read_bad_block_table()
1323 dbg("block %d is marked as factory bad", bad_block); msb_read_bad_block_table()
1389 dbg_verbose("pba %05d -> [factory bad]", pba); msb_ftl_scan()
1416 /* Skip bad blocks */ msb_ftl_scan()
1450 pr_notice("pba %05d -> [bad lba %05d] - will erase", msb_ftl_scan()
1573 dbg("page %d is marked as bad", page); msb_cache_flush()
1783 /* Read the bad block table */ msb_init_card()
1787 dbg("failed to read bad block table from primary boot block, trying from backup"); msb_init_card()
/linux-4.1.27/drivers/staging/emxx_udc/
H A Demxx_udc.c2609 pr_err(" *** %s, bad param\n", __func__); nbu2ss_ep_enable()
2669 pr_err(" *** %s, bad param\n", __func__); nbu2ss_ep_disable()
2848 /* pr_err("%s, bad param(1)\n", __func__); */ nbu2ss_ep_dequeue()
2894 pr_err("%s, bad param\n", __func__); nbu2ss_ep_set_halt()
2900 pr_err("%s, bad ep\n", __func__); nbu2ss_ep_set_halt()
2906 dev_err(ep->udc->dev, " *** %s, bad udc\n", __func__); nbu2ss_ep_set_halt()
2948 pr_err("%s, bad param\n", __func__); nbu2ss_ep_fifo_status()
2954 pr_err("%s, bad ep\n", __func__); nbu2ss_ep_fifo_status()
2960 dev_err(ep->udc->dev, "%s, bad udc\n", __func__); nbu2ss_ep_fifo_status()
2996 pr_err("udc: %s, bad param\n", __func__); nbu2ss_ep_fifo_flush()
3002 pr_err("udc: %s, bad ep\n", __func__); nbu2ss_ep_fifo_flush()
3008 dev_err(ep->udc->dev, "%s, bad udc\n", __func__); nbu2ss_ep_fifo_flush()
3052 pr_err("udc: %s, bad param\n", __func__); nbu2ss_gad_get_frame()
3082 pr_err("%s, bad param\n", __func__); nbu2ss_gad_wakeup()
3122 pr_err("%s, bad param\n", __func__); nbu2ss_gad_set_selfpowered()
3151 pr_err("%s, bad param\n", __func__); nbu2ss_gad_vbus_draw()
3173 pr_err("%s, bad param\n", __func__); nbu2ss_gad_pullup()
/linux-4.1.27/drivers/misc/
H A Dlkdtm.c347 pr_info("attempting bad execution at %p\n", func); execute_location()
362 pr_info("attempting bad execution at %p\n", func); execute_user_location()
488 pr_info("attempting bad read at %p\n", ptr); lkdtm_do_action()
492 pr_info("attempting bad write at %p\n", ptr); lkdtm_do_action()
504 pr_info("attempting bad write at %p\n", ptr); lkdtm_do_action()
517 pr_info("attempting bad %zu byte write at %p\n", size, ptr); lkdtm_do_action()
/linux-4.1.27/arch/frv/include/asm/
H A Dpgtable.h159 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, (e).pte)
161 printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e))
163 printk("%s:%d: bad pud %08lx.\n", __FILE__, __LINE__, pmd_val(pud_val(e)))
165 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pmd_val(pud_val(pgd_val(e))))
193 * setup: the pud is never bad, and a pud always exists (as it's folded
230 * setup: the pmd is never bad, and a pmd always exists (as it's folded

Completed in 11357 milliseconds

1234567891011