dm-stripe.c (a9de18eb761f7c1c860964b2e5addc1a35c7e861) | dm-stripe.c (10d3bd09a3c25df114f74f7f86e1b58d070bef32) |
---|---|
1/* 2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited. 3 * 4 * This file is released under the GPL. 5 */ 6 7#include <linux/device-mapper.h> 8 --- 323 unchanged lines hidden (view full) --- 332 return -ENOMEM; 333 } 334 335 return r; 336} 337 338void dm_stripe_exit(void) 339{ | 1/* 2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited. 3 * 4 * This file is released under the GPL. 5 */ 6 7#include <linux/device-mapper.h> 8 --- 323 unchanged lines hidden (view full) --- 332 return -ENOMEM; 333 } 334 335 return r; 336} 337 338void dm_stripe_exit(void) 339{ |
340 if (dm_unregister_target(&stripe_target)) 341 DMWARN("target unregistration failed"); 342 | 340 dm_unregister_target(&stripe_target); |
343 destroy_workqueue(kstriped); 344 345 return; 346} | 341 destroy_workqueue(kstriped); 342 343 return; 344} |