| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  | ******************************************************************************* | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved. | 
					
						
							| 
									
										
										
										
											2007-11-07 09:06:49 -06:00
										 |  |  | **  Copyright (C) 2004-2007 Red Hat, Inc.  All rights reserved. | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | ** | 
					
						
							|  |  |  | **  This copyrighted material is made available to anyone wishing to use, | 
					
						
							|  |  |  | **  modify, copy, or redistribute it subject to the terms and conditions | 
					
						
							|  |  |  | **  of the GNU General Public License v.2. | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ******************************************************************************* | 
					
						
							|  |  |  | ******************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "dlm_internal.h"
 | 
					
						
							|  |  |  | #include "config.h"
 | 
					
						
							|  |  |  | #include "memory.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 20:33:20 -08:00
										 |  |  | static struct kmem_cache *lkb_cache; | 
					
						
							| 
									
										
										
										
											2011-07-07 14:05:03 -05:00
										 |  |  | static struct kmem_cache *rsb_cache; | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-02 01:53:46 +08:00
										 |  |  | int __init dlm_memory_init(void) | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb), | 
					
						
							| 
									
										
										
										
											2007-07-20 10:11:58 +09:00
										 |  |  | 				__alignof__(struct dlm_lkb), 0, NULL); | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | 	if (!lkb_cache) | 
					
						
							| 
									
										
										
										
											2012-05-15 11:58:12 +03:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2011-07-07 14:05:03 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	rsb_cache = kmem_cache_create("dlm_rsb", sizeof(struct dlm_rsb), | 
					
						
							|  |  |  | 				__alignof__(struct dlm_rsb), 0, NULL); | 
					
						
							|  |  |  | 	if (!rsb_cache) { | 
					
						
							|  |  |  | 		kmem_cache_destroy(lkb_cache); | 
					
						
							| 
									
										
										
										
											2012-05-15 11:58:12 +03:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2011-07-07 14:05:03 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-15 11:58:12 +03:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void dlm_memory_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (lkb_cache) | 
					
						
							|  |  |  | 		kmem_cache_destroy(lkb_cache); | 
					
						
							| 
									
										
										
										
											2011-07-07 14:05:03 -05:00
										 |  |  | 	if (rsb_cache) | 
					
						
							|  |  |  | 		kmem_cache_destroy(rsb_cache); | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-07 09:06:49 -06:00
										 |  |  | char *dlm_allocate_lvb(struct dlm_ls *ls) | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char *p; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-30 16:34:43 -06:00
										 |  |  | 	p = kzalloc(ls->ls_lvblen, GFP_NOFS); | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | 	return p; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-07 09:06:49 -06:00
										 |  |  | void dlm_free_lvb(char *p) | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	kfree(p); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-07 14:05:03 -05:00
										 |  |  | struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls) | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct dlm_rsb *r; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-07 14:05:03 -05:00
										 |  |  | 	r = kmem_cache_zalloc(rsb_cache, GFP_NOFS); | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-07 09:06:49 -06:00
										 |  |  | void dlm_free_rsb(struct dlm_rsb *r) | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (r->res_lvbptr) | 
					
						
							| 
									
										
										
										
											2007-11-07 09:06:49 -06:00
										 |  |  | 		dlm_free_lvb(r->res_lvbptr); | 
					
						
							| 
									
										
										
										
											2011-07-07 14:05:03 -05:00
										 |  |  | 	kmem_cache_free(rsb_cache, r); | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-07 09:06:49 -06:00
										 |  |  | struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls) | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct dlm_lkb *lkb; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-30 16:34:43 -06:00
										 |  |  | 	lkb = kmem_cache_zalloc(lkb_cache, GFP_NOFS); | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | 	return lkb; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-07 09:06:49 -06:00
										 |  |  | void dlm_free_lkb(struct dlm_lkb *lkb) | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-07-12 16:44:04 -05:00
										 |  |  | 	if (lkb->lkb_flags & DLM_IFL_USER) { | 
					
						
							|  |  |  | 		struct dlm_user_args *ua; | 
					
						
							| 
									
										
										
										
											2008-02-06 23:27:04 -06:00
										 |  |  | 		ua = lkb->lkb_ua; | 
					
						
							| 
									
										
										
										
											2006-07-12 16:44:04 -05:00
										 |  |  | 		if (ua) { | 
					
						
							|  |  |  | 			if (ua->lksb.sb_lvbptr) | 
					
						
							|  |  |  | 				kfree(ua->lksb.sb_lvbptr); | 
					
						
							|  |  |  | 			kfree(ua); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-01-18 09:30:29 +00:00
										 |  |  | 	kmem_cache_free(lkb_cache, lkb); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |