aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/lkdtm.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/misc/lkdtm.c
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'drivers/misc/lkdtm.c')
-rw-r--r--drivers/misc/lkdtm.c145
1 files changed, 81 insertions, 64 deletions
diff --git a/drivers/misc/lkdtm.c b/drivers/misc/lkdtm.c
index ef34de7a8026..150cd7061b80 100644
--- a/drivers/misc/lkdtm.c
+++ b/drivers/misc/lkdtm.c
@@ -52,32 +52,32 @@
52#define REC_NUM_DEFAULT 10 52#define REC_NUM_DEFAULT 10
53 53
54enum cname { 54enum cname {
55 INVALID, 55 CN_INVALID,
56 INT_HARDWARE_ENTRY, 56 CN_INT_HARDWARE_ENTRY,
57 INT_HW_IRQ_EN, 57 CN_INT_HW_IRQ_EN,
58 INT_TASKLET_ENTRY, 58 CN_INT_TASKLET_ENTRY,
59 FS_DEVRW, 59 CN_FS_DEVRW,
60 MEM_SWAPOUT, 60 CN_MEM_SWAPOUT,
61 TIMERADD, 61 CN_TIMERADD,
62 SCSI_DISPATCH_CMD, 62 CN_SCSI_DISPATCH_CMD,
63 IDE_CORE_CP, 63 CN_IDE_CORE_CP,
64 DIRECT, 64 CN_DIRECT,
65}; 65};
66 66
67enum ctype { 67enum ctype {
68 NONE, 68 CT_NONE,
69 PANIC, 69 CT_PANIC,
70 BUG, 70 CT_BUG,
71 EXCEPTION, 71 CT_EXCEPTION,
72 LOOP, 72 CT_LOOP,
73 OVERFLOW, 73 CT_OVERFLOW,
74 CORRUPT_STACK, 74 CT_CORRUPT_STACK,
75 UNALIGNED_LOAD_STORE_WRITE, 75 CT_UNALIGNED_LOAD_STORE_WRITE,
76 OVERWRITE_ALLOCATION, 76 CT_OVERWRITE_ALLOCATION,
77 WRITE_AFTER_FREE, 77 CT_WRITE_AFTER_FREE,
78 SOFTLOCKUP, 78 CT_SOFTLOCKUP,
79 HARDLOCKUP, 79 CT_HARDLOCKUP,
80 HUNG_TASK, 80 CT_HUNG_TASK,
81}; 81};
82 82
83static char* cp_name[] = { 83static char* cp_name[] = {
@@ -117,9 +117,10 @@ static char* cpoint_type;
117static int cpoint_count = DEFAULT_COUNT; 117static int cpoint_count = DEFAULT_COUNT;
118static int recur_count = REC_NUM_DEFAULT; 118static int recur_count = REC_NUM_DEFAULT;
119 119
120static enum cname cpoint = INVALID; 120static enum cname cpoint = CN_INVALID;
121static enum ctype cptype = NONE; 121static enum ctype cptype = CT_NONE;
122static int count = DEFAULT_COUNT; 122static int count = DEFAULT_COUNT;
123static DEFINE_SPINLOCK(count_lock);
123 124
124module_param(recur_count, int, 0644); 125module_param(recur_count, int, 0644);
125MODULE_PARM_DESC(recur_count, " Recursion level for the stack overflow test, "\ 126MODULE_PARM_DESC(recur_count, " Recursion level for the stack overflow test, "\
@@ -207,12 +208,12 @@ static enum ctype parse_cp_type(const char *what, size_t count)
207 return i + 1; 208 return i + 1;
208 } 209 }
209 210
210 return NONE; 211 return CT_NONE;
211} 212}
212 213
213static const char *cp_type_to_str(enum ctype type) 214static const char *cp_type_to_str(enum ctype type)
214{ 215{
215 if (type == NONE || type < 0 || type > ARRAY_SIZE(cp_type)) 216 if (type == CT_NONE || type < 0 || type > ARRAY_SIZE(cp_type))
216 return "None"; 217 return "None";
217 218
218 return cp_type[type - 1]; 219 return cp_type[type - 1];
@@ -220,7 +221,7 @@ static const char *cp_type_to_str(enum ctype type)
220 221
221static const char *cp_name_to_str(enum cname name) 222static const char *cp_name_to_str(enum cname name)
222{ 223{
223 if (name == INVALID || name < 0 || name > ARRAY_SIZE(cp_name)) 224 if (name == CN_INVALID || name < 0 || name > ARRAY_SIZE(cp_name))
224 return "INVALID"; 225 return "INVALID";
225 226
226 return cp_name[name - 1]; 227 return cp_name[name - 1];
@@ -230,11 +231,14 @@ static const char *cp_name_to_str(enum cname name)
230static int lkdtm_parse_commandline(void) 231static int lkdtm_parse_commandline(void)
231{ 232{
232 int i; 233 int i;
234 unsigned long flags;
233 235
234 if (cpoint_count < 1 || recur_count < 1) 236 if (cpoint_count < 1 || recur_count < 1)
235 return -EINVAL; 237 return -EINVAL;
236 238
239 spin_lock_irqsave(&count_lock, flags);
237 count = cpoint_count; 240 count = cpoint_count;
241 spin_unlock_irqrestore(&count_lock, flags);
238 242
239 /* No special parameters */ 243 /* No special parameters */
240 if (!cpoint_type && !cpoint_name) 244 if (!cpoint_type && !cpoint_name)
@@ -245,7 +249,7 @@ static int lkdtm_parse_commandline(void)
245 return -EINVAL; 249 return -EINVAL;
246 250
247 cptype = parse_cp_type(cpoint_type, strlen(cpoint_type)); 251 cptype = parse_cp_type(cpoint_type, strlen(cpoint_type));
248 if (cptype == NONE) 252 if (cptype == CT_NONE)
249 return -EINVAL; 253 return -EINVAL;
250 254
251 for (i = 0; i < ARRAY_SIZE(cp_name); i++) { 255 for (i = 0; i < ARRAY_SIZE(cp_name); i++) {
@@ -274,30 +278,30 @@ static int recursive_loop(int a)
274static void lkdtm_do_action(enum ctype which) 278static void lkdtm_do_action(enum ctype which)
275{ 279{
276 switch (which) { 280 switch (which) {
277 case PANIC: 281 case CT_PANIC:
278 panic("dumptest"); 282 panic("dumptest");
279 break; 283 break;
280 case BUG: 284 case CT_BUG:
281 BUG(); 285 BUG();
282 break; 286 break;
283 case EXCEPTION: 287 case CT_EXCEPTION:
284 *((int *) 0) = 0; 288 *((int *) 0) = 0;
285 break; 289 break;
286 case LOOP: 290 case CT_LOOP:
287 for (;;) 291 for (;;)
288 ; 292 ;
289 break; 293 break;
290 case OVERFLOW: 294 case CT_OVERFLOW:
291 (void) recursive_loop(0); 295 (void) recursive_loop(0);
292 break; 296 break;
293 case CORRUPT_STACK: { 297 case CT_CORRUPT_STACK: {
294 volatile u32 data[8]; 298 volatile u32 data[8];
295 volatile u32 *p = data; 299 volatile u32 *p = data;
296 300
297 p[12] = 0x12345678; 301 p[12] = 0x12345678;
298 break; 302 break;
299 } 303 }
300 case UNALIGNED_LOAD_STORE_WRITE: { 304 case CT_UNALIGNED_LOAD_STORE_WRITE: {
301 static u8 data[5] __attribute__((aligned(4))) = {1, 2, 305 static u8 data[5] __attribute__((aligned(4))) = {1, 2,
302 3, 4, 5}; 306 3, 4, 5};
303 u32 *p; 307 u32 *p;
@@ -309,7 +313,7 @@ static void lkdtm_do_action(enum ctype which)
309 *p = val; 313 *p = val;
310 break; 314 break;
311 } 315 }
312 case OVERWRITE_ALLOCATION: { 316 case CT_OVERWRITE_ALLOCATION: {
313 size_t len = 1020; 317 size_t len = 1020;
314 u32 *data = kmalloc(len, GFP_KERNEL); 318 u32 *data = kmalloc(len, GFP_KERNEL);
315 319
@@ -317,7 +321,7 @@ static void lkdtm_do_action(enum ctype which)
317 kfree(data); 321 kfree(data);
318 break; 322 break;
319 } 323 }
320 case WRITE_AFTER_FREE: { 324 case CT_WRITE_AFTER_FREE: {
321 size_t len = 1024; 325 size_t len = 1024;
322 u32 *data = kmalloc(len, GFP_KERNEL); 326 u32 *data = kmalloc(len, GFP_KERNEL);
323 327
@@ -326,21 +330,21 @@ static void lkdtm_do_action(enum ctype which)
326 memset(data, 0x78, len); 330 memset(data, 0x78, len);
327 break; 331 break;
328 } 332 }
329 case SOFTLOCKUP: 333 case CT_SOFTLOCKUP:
330 preempt_disable(); 334 preempt_disable();
331 for (;;) 335 for (;;)
332 cpu_relax(); 336 cpu_relax();
333 break; 337 break;
334 case HARDLOCKUP: 338 case CT_HARDLOCKUP:
335 local_irq_disable(); 339 local_irq_disable();
336 for (;;) 340 for (;;)
337 cpu_relax(); 341 cpu_relax();
338 break; 342 break;
339 case HUNG_TASK: 343 case CT_HUNG_TASK:
340 set_current_state(TASK_UNINTERRUPTIBLE); 344 set_current_state(TASK_UNINTERRUPTIBLE);
341 schedule(); 345 schedule();
342 break; 346 break;
343 case NONE: 347 case CT_NONE:
344 default: 348 default:
345 break; 349 break;
346 } 350 }
@@ -349,6 +353,9 @@ static void lkdtm_do_action(enum ctype which)
349 353
350static void lkdtm_handler(void) 354static void lkdtm_handler(void)
351{ 355{
356 unsigned long flags;
357
358 spin_lock_irqsave(&count_lock, flags);
352 count--; 359 count--;
353 printk(KERN_INFO "lkdtm: Crash point %s of type %s hit, trigger in %d rounds\n", 360 printk(KERN_INFO "lkdtm: Crash point %s of type %s hit, trigger in %d rounds\n",
354 cp_name_to_str(cpoint), cp_type_to_str(cptype), count); 361 cp_name_to_str(cpoint), cp_type_to_str(cptype), count);
@@ -357,49 +364,50 @@ static void lkdtm_handler(void)
357 lkdtm_do_action(cptype); 364 lkdtm_do_action(cptype);
358 count = cpoint_count; 365 count = cpoint_count;
359 } 366 }
367 spin_unlock_irqrestore(&count_lock, flags);
360} 368}
361 369
362static int lkdtm_register_cpoint(enum cname which) 370static int lkdtm_register_cpoint(enum cname which)
363{ 371{
364 int ret; 372 int ret;
365 373
366 cpoint = INVALID; 374 cpoint = CN_INVALID;
367 if (lkdtm.entry != NULL) 375 if (lkdtm.entry != NULL)
368 unregister_jprobe(&lkdtm); 376 unregister_jprobe(&lkdtm);
369 377
370 switch (which) { 378 switch (which) {
371 case DIRECT: 379 case CN_DIRECT:
372 lkdtm_do_action(cptype); 380 lkdtm_do_action(cptype);
373 return 0; 381 return 0;
374 case INT_HARDWARE_ENTRY: 382 case CN_INT_HARDWARE_ENTRY:
375 lkdtm.kp.symbol_name = "do_IRQ"; 383 lkdtm.kp.symbol_name = "do_IRQ";
376 lkdtm.entry = (kprobe_opcode_t*) jp_do_irq; 384 lkdtm.entry = (kprobe_opcode_t*) jp_do_irq;
377 break; 385 break;
378 case INT_HW_IRQ_EN: 386 case CN_INT_HW_IRQ_EN:
379 lkdtm.kp.symbol_name = "handle_IRQ_event"; 387 lkdtm.kp.symbol_name = "handle_IRQ_event";
380 lkdtm.entry = (kprobe_opcode_t*) jp_handle_irq_event; 388 lkdtm.entry = (kprobe_opcode_t*) jp_handle_irq_event;
381 break; 389 break;
382 case INT_TASKLET_ENTRY: 390 case CN_INT_TASKLET_ENTRY:
383 lkdtm.kp.symbol_name = "tasklet_action"; 391 lkdtm.kp.symbol_name = "tasklet_action";
384 lkdtm.entry = (kprobe_opcode_t*) jp_tasklet_action; 392 lkdtm.entry = (kprobe_opcode_t*) jp_tasklet_action;
385 break; 393 break;
386 case FS_DEVRW: 394 case CN_FS_DEVRW:
387 lkdtm.kp.symbol_name = "ll_rw_block"; 395 lkdtm.kp.symbol_name = "ll_rw_block";
388 lkdtm.entry = (kprobe_opcode_t*) jp_ll_rw_block; 396 lkdtm.entry = (kprobe_opcode_t*) jp_ll_rw_block;
389 break; 397 break;
390 case MEM_SWAPOUT: 398 case CN_MEM_SWAPOUT:
391 lkdtm.kp.symbol_name = "shrink_inactive_list"; 399 lkdtm.kp.symbol_name = "shrink_inactive_list";
392 lkdtm.entry = (kprobe_opcode_t*) jp_shrink_inactive_list; 400 lkdtm.entry = (kprobe_opcode_t*) jp_shrink_inactive_list;
393 break; 401 break;
394 case TIMERADD: 402 case CN_TIMERADD:
395 lkdtm.kp.symbol_name = "hrtimer_start"; 403 lkdtm.kp.symbol_name = "hrtimer_start";
396 lkdtm.entry = (kprobe_opcode_t*) jp_hrtimer_start; 404 lkdtm.entry = (kprobe_opcode_t*) jp_hrtimer_start;
397 break; 405 break;
398 case SCSI_DISPATCH_CMD: 406 case CN_SCSI_DISPATCH_CMD:
399 lkdtm.kp.symbol_name = "scsi_dispatch_cmd"; 407 lkdtm.kp.symbol_name = "scsi_dispatch_cmd";
400 lkdtm.entry = (kprobe_opcode_t*) jp_scsi_dispatch_cmd; 408 lkdtm.entry = (kprobe_opcode_t*) jp_scsi_dispatch_cmd;
401 break; 409 break;
402 case IDE_CORE_CP: 410 case CN_IDE_CORE_CP:
403#ifdef CONFIG_IDE 411#ifdef CONFIG_IDE
404 lkdtm.kp.symbol_name = "generic_ide_ioctl"; 412 lkdtm.kp.symbol_name = "generic_ide_ioctl";
405 lkdtm.entry = (kprobe_opcode_t*) jp_generic_ide_ioctl; 413 lkdtm.entry = (kprobe_opcode_t*) jp_generic_ide_ioctl;
@@ -416,7 +424,7 @@ static int lkdtm_register_cpoint(enum cname which)
416 cpoint = which; 424 cpoint = which;
417 if ((ret = register_jprobe(&lkdtm)) < 0) { 425 if ((ret = register_jprobe(&lkdtm)) < 0) {
418 printk(KERN_INFO "lkdtm: Couldn't register jprobe\n"); 426 printk(KERN_INFO "lkdtm: Couldn't register jprobe\n");
419 cpoint = INVALID; 427 cpoint = CN_INVALID;
420 } 428 }
421 429
422 return ret; 430 return ret;
@@ -445,7 +453,7 @@ static ssize_t do_register_entry(enum cname which, struct file *f,
445 cptype = parse_cp_type(buf, count); 453 cptype = parse_cp_type(buf, count);
446 free_page((unsigned long) buf); 454 free_page((unsigned long) buf);
447 455
448 if (cptype == NONE) 456 if (cptype == CT_NONE)
449 return -EINVAL; 457 return -EINVAL;
450 458
451 err = lkdtm_register_cpoint(which); 459 err = lkdtm_register_cpoint(which);
@@ -487,49 +495,49 @@ static int lkdtm_debugfs_open(struct inode *inode, struct file *file)
487static ssize_t int_hardware_entry(struct file *f, const char __user *buf, 495static ssize_t int_hardware_entry(struct file *f, const char __user *buf,
488 size_t count, loff_t *off) 496 size_t count, loff_t *off)
489{ 497{
490 return do_register_entry(INT_HARDWARE_ENTRY, f, buf, count, off); 498 return do_register_entry(CN_INT_HARDWARE_ENTRY, f, buf, count, off);
491} 499}
492 500
493static ssize_t int_hw_irq_en(struct file *f, const char __user *buf, 501static ssize_t int_hw_irq_en(struct file *f, const char __user *buf,
494 size_t count, loff_t *off) 502 size_t count, loff_t *off)
495{ 503{
496 return do_register_entry(INT_HW_IRQ_EN, f, buf, count, off); 504 return do_register_entry(CN_INT_HW_IRQ_EN, f, buf, count, off);
497} 505}
498 506
499static ssize_t int_tasklet_entry(struct file *f, const char __user *buf, 507static ssize_t int_tasklet_entry(struct file *f, const char __user *buf,
500 size_t count, loff_t *off) 508 size_t count, loff_t *off)
501{ 509{
502 return do_register_entry(INT_TASKLET_ENTRY, f, buf, count, off); 510 return do_register_entry(CN_INT_TASKLET_ENTRY, f, buf, count, off);
503} 511}
504 512
505static ssize_t fs_devrw_entry(struct file *f, const char __user *buf, 513static ssize_t fs_devrw_entry(struct file *f, const char __user *buf,
506 size_t count, loff_t *off) 514 size_t count, loff_t *off)
507{ 515{
508 return do_register_entry(FS_DEVRW, f, buf, count, off); 516 return do_register_entry(CN_FS_DEVRW, f, buf, count, off);
509} 517}
510 518
511static ssize_t mem_swapout_entry(struct file *f, const char __user *buf, 519static ssize_t mem_swapout_entry(struct file *f, const char __user *buf,
512 size_t count, loff_t *off) 520 size_t count, loff_t *off)
513{ 521{
514 return do_register_entry(MEM_SWAPOUT, f, buf, count, off); 522 return do_register_entry(CN_MEM_SWAPOUT, f, buf, count, off);
515} 523}
516 524
517static ssize_t timeradd_entry(struct file *f, const char __user *buf, 525static ssize_t timeradd_entry(struct file *f, const char __user *buf,
518 size_t count, loff_t *off) 526 size_t count, loff_t *off)
519{ 527{
520 return do_register_entry(TIMERADD, f, buf, count, off); 528 return do_register_entry(CN_TIMERADD, f, buf, count, off);
521} 529}
522 530
523static ssize_t scsi_dispatch_cmd_entry(struct file *f, 531static ssize_t scsi_dispatch_cmd_entry(struct file *f,
524 const char __user *buf, size_t count, loff_t *off) 532 const char __user *buf, size_t count, loff_t *off)
525{ 533{
526 return do_register_entry(SCSI_DISPATCH_CMD, f, buf, count, off); 534 return do_register_entry(CN_SCSI_DISPATCH_CMD, f, buf, count, off);
527} 535}
528 536
529static ssize_t ide_core_cp_entry(struct file *f, const char __user *buf, 537static ssize_t ide_core_cp_entry(struct file *f, const char __user *buf,
530 size_t count, loff_t *off) 538 size_t count, loff_t *off)
531{ 539{
532 return do_register_entry(IDE_CORE_CP, f, buf, count, off); 540 return do_register_entry(CN_IDE_CORE_CP, f, buf, count, off);
533} 541}
534 542
535/* Special entry to just crash directly. Available without KPROBEs */ 543/* Special entry to just crash directly. Available without KPROBEs */
@@ -557,7 +565,7 @@ static ssize_t direct_entry(struct file *f, const char __user *user_buf,
557 565
558 type = parse_cp_type(buf, count); 566 type = parse_cp_type(buf, count);
559 free_page((unsigned long) buf); 567 free_page((unsigned long) buf);
560 if (type == NONE) 568 if (type == CT_NONE)
561 return -EINVAL; 569 return -EINVAL;
562 570
563 printk(KERN_INFO "lkdtm: Performing direct entry %s\n", 571 printk(KERN_INFO "lkdtm: Performing direct entry %s\n",
@@ -575,30 +583,39 @@ struct crash_entry {
575 583
576static const struct crash_entry crash_entries[] = { 584static const struct crash_entry crash_entries[] = {
577 {"DIRECT", {.read = lkdtm_debugfs_read, 585 {"DIRECT", {.read = lkdtm_debugfs_read,
586 .llseek = generic_file_llseek,
578 .open = lkdtm_debugfs_open, 587 .open = lkdtm_debugfs_open,
579 .write = direct_entry} }, 588 .write = direct_entry} },
580 {"INT_HARDWARE_ENTRY", {.read = lkdtm_debugfs_read, 589 {"INT_HARDWARE_ENTRY", {.read = lkdtm_debugfs_read,
590 .llseek = generic_file_llseek,
581 .open = lkdtm_debugfs_open, 591 .open = lkdtm_debugfs_open,
582 .write = int_hardware_entry} }, 592 .write = int_hardware_entry} },
583 {"INT_HW_IRQ_EN", {.read = lkdtm_debugfs_read, 593 {"INT_HW_IRQ_EN", {.read = lkdtm_debugfs_read,
594 .llseek = generic_file_llseek,
584 .open = lkdtm_debugfs_open, 595 .open = lkdtm_debugfs_open,
585 .write = int_hw_irq_en} }, 596 .write = int_hw_irq_en} },
586 {"INT_TASKLET_ENTRY", {.read = lkdtm_debugfs_read, 597 {"INT_TASKLET_ENTRY", {.read = lkdtm_debugfs_read,
598 .llseek = generic_file_llseek,
587 .open = lkdtm_debugfs_open, 599 .open = lkdtm_debugfs_open,
588 .write = int_tasklet_entry} }, 600 .write = int_tasklet_entry} },
589 {"FS_DEVRW", {.read = lkdtm_debugfs_read, 601 {"FS_DEVRW", {.read = lkdtm_debugfs_read,
602 .llseek = generic_file_llseek,
590 .open = lkdtm_debugfs_open, 603 .open = lkdtm_debugfs_open,
591 .write = fs_devrw_entry} }, 604 .write = fs_devrw_entry} },
592 {"MEM_SWAPOUT", {.read = lkdtm_debugfs_read, 605 {"MEM_SWAPOUT", {.read = lkdtm_debugfs_read,
606 .llseek = generic_file_llseek,
593 .open = lkdtm_debugfs_open, 607 .open = lkdtm_debugfs_open,
594 .write = mem_swapout_entry} }, 608 .write = mem_swapout_entry} },
595 {"TIMERADD", {.read = lkdtm_debugfs_read, 609 {"TIMERADD", {.read = lkdtm_debugfs_read,
610 .llseek = generic_file_llseek,
596 .open = lkdtm_debugfs_open, 611 .open = lkdtm_debugfs_open,
597 .write = timeradd_entry} }, 612 .write = timeradd_entry} },
598 {"SCSI_DISPATCH_CMD", {.read = lkdtm_debugfs_read, 613 {"SCSI_DISPATCH_CMD", {.read = lkdtm_debugfs_read,
614 .llseek = generic_file_llseek,
599 .open = lkdtm_debugfs_open, 615 .open = lkdtm_debugfs_open,
600 .write = scsi_dispatch_cmd_entry} }, 616 .write = scsi_dispatch_cmd_entry} },
601 {"IDE_CORE_CP", {.read = lkdtm_debugfs_read, 617 {"IDE_CORE_CP", {.read = lkdtm_debugfs_read,
618 .llseek = generic_file_llseek,
602 .open = lkdtm_debugfs_open, 619 .open = lkdtm_debugfs_open,
603 .write = ide_core_cp_entry} }, 620 .write = ide_core_cp_entry} },
604}; 621};
@@ -640,7 +657,7 @@ static int __init lkdtm_module_init(void)
640 goto out_err; 657 goto out_err;
641 } 658 }
642 659
643 if (cpoint != INVALID && cptype != NONE) { 660 if (cpoint != CN_INVALID && cptype != CT_NONE) {
644 ret = lkdtm_register_cpoint(cpoint); 661 ret = lkdtm_register_cpoint(cpoint);
645 if (ret < 0) { 662 if (ret < 0) {
646 printk(KERN_INFO "lkdtm: Invalid crash point %d\n", 663 printk(KERN_INFO "lkdtm: Invalid crash point %d\n",