diff options
114 files changed, 164 insertions, 165 deletions
diff --git a/arch/i386/kernel/sysenter.c b/arch/i386/kernel/sysenter.c index 713ba39d32c..0bbacd0ec17 100644 --- a/arch/i386/kernel/sysenter.c +++ b/arch/i386/kernel/sysenter.c @@ -132,7 +132,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int exstack)  		goto up_fail;  	} -	vma = kmem_cache_zalloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);  	if (!vma) {  		ret = -ENOMEM;  		goto up_fail; diff --git a/arch/ia64/ia32/binfmt_elf32.c b/arch/ia64/ia32/binfmt_elf32.c index daa6b91bc92..578737ec762 100644 --- a/arch/ia64/ia32/binfmt_elf32.c +++ b/arch/ia64/ia32/binfmt_elf32.c @@ -91,7 +91,7 @@ ia64_elf32_init (struct pt_regs *regs)  	 * it with privilege level 3 because the IVE uses non-privileged accesses to these  	 * tables.  IA-32 segmentation is used to protect against IA-32 accesses to them.  	 */ -	vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (vma) {  		memset(vma, 0, sizeof(*vma));  		vma->vm_mm = current->mm; @@ -117,7 +117,7 @@ ia64_elf32_init (struct pt_regs *regs)  	 * code is locked in specific gate page, which is pointed by pretcode  	 * when setup_frame_ia32  	 */ -	vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (vma) {  		memset(vma, 0, sizeof(*vma));  		vma->vm_mm = current->mm; @@ -142,7 +142,7 @@ ia64_elf32_init (struct pt_regs *regs)  	 * Install LDT as anonymous memory.  This gives us all-zero segment descriptors  	 * until a task modifies them via modify_ldt().  	 */ -	vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (vma) {  		memset(vma, 0, sizeof(*vma));  		vma->vm_mm = current->mm; @@ -214,7 +214,7 @@ ia32_setup_arg_pages (struct linux_binprm *bprm, int executable_stack)  		bprm->loader += stack_base;  	bprm->exec += stack_base; -	mpnt = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	mpnt = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (!mpnt)  		return -ENOMEM; diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c index 3aaede0d698..e2321536ee4 100644 --- a/arch/ia64/kernel/perfmon.c +++ b/arch/ia64/kernel/perfmon.c @@ -2302,7 +2302,7 @@ pfm_smpl_buffer_alloc(struct task_struct *task, pfm_context_t *ctx, unsigned lon  	DPRINT(("smpl_buf @%p\n", smpl_buf));  	/* allocate vma */ -	vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (!vma) {  		DPRINT(("Cannot allocate vma\n"));  		goto error_kmem; diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c index ff87a5cba39..56dc2024220 100644 --- a/arch/ia64/mm/init.c +++ b/arch/ia64/mm/init.c @@ -156,7 +156,7 @@ ia64_init_addr_space (void)  	 * the problem.  When the process attempts to write to the register backing store  	 * for the first time, it will get a SEGFAULT in this case.  	 */ -	vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (vma) {  		memset(vma, 0, sizeof(*vma));  		vma->vm_mm = current->mm; @@ -175,7 +175,7 @@ ia64_init_addr_space (void)  	/* map NaT-page at address zero to speed up speculative dereferencing of NULL: */  	if (!(current->personality & MMAP_PAGE_ZERO)) { -		vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +		vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  		if (vma) {  			memset(vma, 0, sizeof(*vma));  			vma->vm_mm = current->mm; diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c index c913ad5cad2..a4b28c73bba 100644 --- a/arch/powerpc/kernel/vdso.c +++ b/arch/powerpc/kernel/vdso.c @@ -264,7 +264,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm,  	/* Allocate a VMA structure and fill it up */ -	vma = kmem_cache_zalloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);  	if (vma == NULL) {  		rc = -ENOMEM;  		goto fail_mmapsem; diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index c7d010749a1..7edfcc9d285 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c @@ -48,7 +48,7 @@ spufs_alloc_inode(struct super_block *sb)  {  	struct spufs_inode_info *ei; -	ei = kmem_cache_alloc(spufs_inode_cache, SLAB_KERNEL); +	ei = kmem_cache_alloc(spufs_inode_cache, GFP_KERNEL);  	if (!ei)  		return NULL; diff --git a/arch/sh/kernel/vsyscall/vsyscall.c b/arch/sh/kernel/vsyscall/vsyscall.c index 075d6cc1a2d..deb46941f31 100644 --- a/arch/sh/kernel/vsyscall/vsyscall.c +++ b/arch/sh/kernel/vsyscall/vsyscall.c @@ -97,7 +97,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm,  		goto up_fail;  	} -	vma = kmem_cache_zalloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);  	if (!vma) {  		ret = -ENOMEM;  		goto up_fail; diff --git a/arch/x86_64/ia32/ia32_binfmt.c b/arch/x86_64/ia32/ia32_binfmt.c index 82ef182de6a..932a62ad6c8 100644 --- a/arch/x86_64/ia32/ia32_binfmt.c +++ b/arch/x86_64/ia32/ia32_binfmt.c @@ -351,7 +351,7 @@ int ia32_setup_arg_pages(struct linux_binprm *bprm, unsigned long stack_top,  		bprm->loader += stack_base;  	bprm->exec += stack_base; -	mpnt = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	mpnt = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (!mpnt)   		return -ENOMEM;  diff --git a/arch/x86_64/ia32/syscall32.c b/arch/x86_64/ia32/syscall32.c index 3a01329473a..3e5ed20cba4 100644 --- a/arch/x86_64/ia32/syscall32.c +++ b/arch/x86_64/ia32/syscall32.c @@ -49,7 +49,7 @@ int syscall32_setup_pages(struct linux_binprm *bprm, int exstack)  	struct mm_struct *mm = current->mm;  	int ret; -	vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (!vma)  		return -ENOMEM; diff --git a/drivers/atm/he.c b/drivers/atm/he.c index 2a2f0fc2288..ec8a7a633e6 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c @@ -820,7 +820,7 @@ he_init_group(struct he_dev *he_dev, int group)  		void *cpuaddr;  #ifdef USE_RBPS_POOL  -		cpuaddr = pci_pool_alloc(he_dev->rbps_pool, SLAB_KERNEL|SLAB_DMA, &dma_handle); +		cpuaddr = pci_pool_alloc(he_dev->rbps_pool, GFP_KERNEL|SLAB_DMA, &dma_handle);  		if (cpuaddr == NULL)  			return -ENOMEM;  #else @@ -884,7 +884,7 @@ he_init_group(struct he_dev *he_dev, int group)  		void *cpuaddr;  #ifdef USE_RBPL_POOL -		cpuaddr = pci_pool_alloc(he_dev->rbpl_pool, SLAB_KERNEL|SLAB_DMA, &dma_handle); +		cpuaddr = pci_pool_alloc(he_dev->rbpl_pool, GFP_KERNEL|SLAB_DMA, &dma_handle);  		if (cpuaddr == NULL)  			return -ENOMEM;  #else diff --git a/drivers/base/dmapool.c b/drivers/base/dmapool.c index fa4675254f6..dbe0735f8c9 100644 --- a/drivers/base/dmapool.c +++ b/drivers/base/dmapool.c @@ -126,7 +126,7 @@ dma_pool_create (const char *name, struct device *dev,  	} else if (allocation < size)  		return NULL; -	if (!(retval = kmalloc (sizeof *retval, SLAB_KERNEL))) +	if (!(retval = kmalloc (sizeof *retval, GFP_KERNEL)))  		return retval;  	strlcpy (retval->name, name, sizeof retval->name); diff --git a/drivers/dma/ioatdma.c b/drivers/dma/ioatdma.c index 0358419a0e4..8e872610461 100644 --- a/drivers/dma/ioatdma.c +++ b/drivers/dma/ioatdma.c @@ -636,10 +636,10 @@ static int ioat_self_test(struct ioat_device *device)  	dma_cookie_t cookie;  	int err = 0; -	src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, SLAB_KERNEL); +	src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);  	if (!src)  		return -ENOMEM; -	dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, SLAB_KERNEL); +	dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);  	if (!dest) {  		kfree(src);  		return -ENOMEM; diff --git a/drivers/ieee1394/hosts.c b/drivers/ieee1394/hosts.c index 8f4378a1631..b935e08695a 100644 --- a/drivers/ieee1394/hosts.c +++ b/drivers/ieee1394/hosts.c @@ -123,7 +123,7 @@ struct hpsb_host *hpsb_alloc_host(struct hpsb_host_driver *drv, size_t extra,  	int i;  	int hostnum = 0; -	h = kzalloc(sizeof(*h) + extra, SLAB_KERNEL); +	h = kzalloc(sizeof(*h) + extra, GFP_KERNEL);  	if (!h)  		return NULL; diff --git a/drivers/ieee1394/ohci1394.c b/drivers/ieee1394/ohci1394.c index 6e8ea9110c4..eae97d8dcf0 100644 --- a/drivers/ieee1394/ohci1394.c +++ b/drivers/ieee1394/ohci1394.c @@ -1225,7 +1225,7 @@ static int ohci_iso_recv_init(struct hpsb_iso *iso)  	int ctx;  	int ret = -ENOMEM; -	recv = kmalloc(sizeof(*recv), SLAB_KERNEL); +	recv = kmalloc(sizeof(*recv), GFP_KERNEL);  	if (!recv)  		return -ENOMEM; @@ -1918,7 +1918,7 @@ static int ohci_iso_xmit_init(struct hpsb_iso *iso)  	int ctx;  	int ret = -ENOMEM; -	xmit = kmalloc(sizeof(*xmit), SLAB_KERNEL); +	xmit = kmalloc(sizeof(*xmit), GFP_KERNEL);  	if (!xmit)  		return -ENOMEM; @@ -3021,7 +3021,7 @@ alloc_dma_rcv_ctx(struct ti_ohci *ohci, struct dma_rcv_ctx *d,  			return -ENOMEM;  		} -		d->prg_cpu[i] = pci_pool_alloc(d->prg_pool, SLAB_KERNEL, d->prg_bus+i); +		d->prg_cpu[i] = pci_pool_alloc(d->prg_pool, GFP_KERNEL, d->prg_bus+i);  		OHCI_DMA_ALLOC("pool dma_rcv prg[%d]", i);                  if (d->prg_cpu[i] != NULL) { @@ -3117,7 +3117,7 @@ alloc_dma_trm_ctx(struct ti_ohci *ohci, struct dma_trm_ctx *d,  	OHCI_DMA_ALLOC("dma_rcv prg pool");  	for (i = 0; i < d->num_desc; i++) { -		d->prg_cpu[i] = pci_pool_alloc(d->prg_pool, SLAB_KERNEL, d->prg_bus+i); +		d->prg_cpu[i] = pci_pool_alloc(d->prg_pool, GFP_KERNEL, d->prg_bus+i);  		OHCI_DMA_ALLOC("pool dma_trm prg[%d]", i);                  if (d->prg_cpu[i] != NULL) { diff --git a/drivers/ieee1394/pcilynx.c b/drivers/ieee1394/pcilynx.c index 0a7412e27eb..9cab1d66147 100644 --- a/drivers/ieee1394/pcilynx.c +++ b/drivers/ieee1394/pcilynx.c @@ -1428,7 +1428,7 @@ static int __devinit add_card(struct pci_dev *dev,          	struct i2c_algo_bit_data i2c_adapter_data;          	error = -ENOMEM; -		i2c_ad = kmalloc(sizeof(*i2c_ad), SLAB_KERNEL); +		i2c_ad = kmalloc(sizeof(*i2c_ad), GFP_KERNEL);          	if (!i2c_ad) FAIL("failed to allocate I2C adapter memory");  		memcpy(i2c_ad, &bit_ops, sizeof(struct i2c_adapter)); diff --git a/drivers/ieee1394/raw1394.c b/drivers/ieee1394/raw1394.c index 47f6a4e29b4..bf71e069eaf 100644 --- a/drivers/ieee1394/raw1394.c +++ b/drivers/ieee1394/raw1394.c @@ -112,7 +112,7 @@ static struct pending_request *__alloc_pending_request(gfp_t flags)  static inline struct pending_request *alloc_pending_request(void)  { -	return __alloc_pending_request(SLAB_KERNEL); +	return __alloc_pending_request(GFP_KERNEL);  }  static void free_pending_request(struct pending_request *req) @@ -1737,7 +1737,7 @@ static int arm_register(struct file_info *fi, struct pending_request *req)  		return (-EINVAL);  	}  	/* addr-list-entry for fileinfo */ -	addr = kmalloc(sizeof(*addr), SLAB_KERNEL); +	addr = kmalloc(sizeof(*addr), GFP_KERNEL);  	if (!addr) {  		req->req.length = 0;  		return (-ENOMEM); @@ -2103,7 +2103,7 @@ static int write_phypacket(struct file_info *fi, struct pending_request *req)  static int get_config_rom(struct file_info *fi, struct pending_request *req)  {  	int ret = sizeof(struct raw1394_request); -	quadlet_t *data = kmalloc(req->req.length, SLAB_KERNEL); +	quadlet_t *data = kmalloc(req->req.length, GFP_KERNEL);  	int status;  	if (!data) @@ -2133,7 +2133,7 @@ static int get_config_rom(struct file_info *fi, struct pending_request *req)  static int update_config_rom(struct file_info *fi, struct pending_request *req)  {  	int ret = sizeof(struct raw1394_request); -	quadlet_t *data = kmalloc(req->req.length, SLAB_KERNEL); +	quadlet_t *data = kmalloc(req->req.length, GFP_KERNEL);  	if (!data)  		return -ENOMEM;  	if (copy_from_user(data, int2ptr(req->req.sendb), req->req.length)) { @@ -2779,7 +2779,7 @@ static int raw1394_open(struct inode *inode, struct file *file)  {  	struct file_info *fi; -	fi = kzalloc(sizeof(*fi), SLAB_KERNEL); +	fi = kzalloc(sizeof(*fi), GFP_KERNEL);  	if (!fi)  		return -ENOMEM; diff --git a/drivers/infiniband/hw/ehca/ehca_av.c b/drivers/infiniband/hw/ehca/ehca_av.c index 214e2fdddee..0d6e2c4bb24 100644 --- a/drivers/infiniband/hw/ehca/ehca_av.c +++ b/drivers/infiniband/hw/ehca/ehca_av.c @@ -57,7 +57,7 @@ struct ib_ah *ehca_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr)  	struct ehca_shca *shca = container_of(pd->device, struct ehca_shca,  					      ib_device); -	av = kmem_cache_alloc(av_cache, SLAB_KERNEL); +	av = kmem_cache_alloc(av_cache, GFP_KERNEL);  	if (!av) {  		ehca_err(pd->device, "Out of memory pd=%p ah_attr=%p",  			 pd, ah_attr); diff --git a/drivers/infiniband/hw/ehca/ehca_cq.c b/drivers/infiniband/hw/ehca/ehca_cq.c index 458fe19648a..93995b658d9 100644 --- a/drivers/infiniband/hw/ehca/ehca_cq.c +++ b/drivers/infiniband/hw/ehca/ehca_cq.c @@ -134,7 +134,7 @@ struct ib_cq *ehca_create_cq(struct ib_device *device, int cqe,  	if (cqe >= 0xFFFFFFFF - 64 - additional_cqe)  		return ERR_PTR(-EINVAL); -	my_cq = kmem_cache_alloc(cq_cache, SLAB_KERNEL); +	my_cq = kmem_cache_alloc(cq_cache, GFP_KERNEL);  	if (!my_cq) {  		ehca_err(device, "Out of memory for ehca_cq struct device=%p",  			 device); diff --git a/drivers/infiniband/hw/ehca/ehca_main.c b/drivers/infiniband/hw/ehca/ehca_main.c index 3d1c1c53503..cc47e4c13a1 100644 --- a/drivers/infiniband/hw/ehca/ehca_main.c +++ b/drivers/infiniband/hw/ehca/ehca_main.c @@ -108,7 +108,7 @@ static struct kmem_cache *ctblk_cache = NULL;  void *ehca_alloc_fw_ctrlblock(void)  { -	void *ret = kmem_cache_zalloc(ctblk_cache, SLAB_KERNEL); +	void *ret = kmem_cache_zalloc(ctblk_cache, GFP_KERNEL);  	if (!ret)  		ehca_gen_err("Out of memory for ctblk");  	return ret; diff --git a/drivers/infiniband/hw/ehca/ehca_mrmw.c b/drivers/infiniband/hw/ehca/ehca_mrmw.c index abce676c0ae..0a5e2214cc5 100644 --- a/drivers/infiniband/hw/ehca/ehca_mrmw.c +++ b/drivers/infiniband/hw/ehca/ehca_mrmw.c @@ -53,7 +53,7 @@ static struct ehca_mr *ehca_mr_new(void)  {  	struct ehca_mr *me; -	me = kmem_cache_alloc(mr_cache, SLAB_KERNEL); +	me = kmem_cache_alloc(mr_cache, GFP_KERNEL);  	if (me) {  		memset(me, 0, sizeof(struct ehca_mr));  		spin_lock_init(&me->mrlock); @@ -72,7 +72,7 @@ static struct ehca_mw *ehca_mw_new(void)  {  	struct ehca_mw *me; -	me = kmem_cache_alloc(mw_cache, SLAB_KERNEL); +	me = kmem_cache_alloc(mw_cache, GFP_KERNEL);  	if (me) {  		memset(me, 0, sizeof(struct ehca_mw));  		spin_lock_init(&me->mwlock); diff --git a/drivers/infiniband/hw/ehca/ehca_pd.c b/drivers/infiniband/hw/ehca/ehca_pd.c index 2c3cdc6f7b3..d5345e5b3cd 100644 --- a/drivers/infiniband/hw/ehca/ehca_pd.c +++ b/drivers/infiniband/hw/ehca/ehca_pd.c @@ -50,7 +50,7 @@ struct ib_pd *ehca_alloc_pd(struct ib_device *device,  {  	struct ehca_pd *pd; -	pd = kmem_cache_alloc(pd_cache, SLAB_KERNEL); +	pd = kmem_cache_alloc(pd_cache, GFP_KERNEL);  	if (!pd) {  		ehca_err(device, "device=%p context=%p out of memory",  			 device, context); diff --git a/drivers/infiniband/hw/ehca/ehca_qp.c b/drivers/infiniband/hw/ehca/ehca_qp.c index 8682aa50c70..c6c9cef203e 100644 --- a/drivers/infiniband/hw/ehca/ehca_qp.c +++ b/drivers/infiniband/hw/ehca/ehca_qp.c @@ -450,7 +450,7 @@ struct ib_qp *ehca_create_qp(struct ib_pd *pd,  	if (pd->uobject && udata)  		context = pd->uobject->context; -	my_qp = kmem_cache_alloc(qp_cache, SLAB_KERNEL); +	my_qp = kmem_cache_alloc(qp_cache, GFP_KERNEL);  	if (!my_qp) {  		ehca_err(pd->device, "pd=%p not enough memory to alloc qp", pd);  		return ERR_PTR(-ENOMEM); diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index f56d6a0f062..0517c7387d6 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c @@ -189,7 +189,7 @@ static int ads7846_read12_ser(struct device *dev, unsigned command)  {  	struct spi_device	*spi = to_spi_device(dev);  	struct ads7846		*ts = dev_get_drvdata(dev); -	struct ser_req		*req = kzalloc(sizeof *req, SLAB_KERNEL); +	struct ser_req		*req = kzalloc(sizeof *req, GFP_KERNEL);  	int			status;  	int			sample;  	int			i; diff --git a/drivers/isdn/gigaset/bas-gigaset.c b/drivers/isdn/gigaset/bas-gigaset.c index 5857e7e23f8..63b629b1cdb 100644 --- a/drivers/isdn/gigaset/bas-gigaset.c +++ b/drivers/isdn/gigaset/bas-gigaset.c @@ -2218,21 +2218,21 @@ static int gigaset_probe(struct usb_interface *interface,  	 * - three for the different uses of the default control pipe  	 * - three for each isochronous pipe  	 */ -	if (!(ucs->urb_int_in = usb_alloc_urb(0, SLAB_KERNEL)) || -	    !(ucs->urb_cmd_in = usb_alloc_urb(0, SLAB_KERNEL)) || -	    !(ucs->urb_cmd_out = usb_alloc_urb(0, SLAB_KERNEL)) || -	    !(ucs->urb_ctrl = usb_alloc_urb(0, SLAB_KERNEL))) +	if (!(ucs->urb_int_in = usb_alloc_urb(0, GFP_KERNEL)) || +	    !(ucs->urb_cmd_in = usb_alloc_urb(0, GFP_KERNEL)) || +	    !(ucs->urb_cmd_out = usb_alloc_urb(0, GFP_KERNEL)) || +	    !(ucs->urb_ctrl = usb_alloc_urb(0, GFP_KERNEL)))  		goto allocerr;  	for (j = 0; j < 2; ++j) {  		ubc = cs->bcs[j].hw.bas;  		for (i = 0; i < BAS_OUTURBS; ++i)  			if (!(ubc->isoouturbs[i].urb = -			      usb_alloc_urb(BAS_NUMFRAMES, SLAB_KERNEL))) +			      usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))  				goto allocerr;  		for (i = 0; i < BAS_INURBS; ++i)  			if (!(ubc->isoinurbs[i] = -			      usb_alloc_urb(BAS_NUMFRAMES, SLAB_KERNEL))) +			      usb_alloc_urb(BAS_NUMFRAMES, GFP_KERNEL)))  				goto allocerr;  	} @@ -2246,7 +2246,7 @@ static int gigaset_probe(struct usb_interface *interface,  					(endpoint->bEndpointAddress) & 0x0f),  			 ucs->int_in_buf, 3, read_int_callback, cs,  			 endpoint->bInterval); -	if ((rc = usb_submit_urb(ucs->urb_int_in, SLAB_KERNEL)) != 0) { +	if ((rc = usb_submit_urb(ucs->urb_int_in, GFP_KERNEL)) != 0) {  		dev_err(cs->dev, "could not submit interrupt URB: %s\n",  			get_usb_rcmsg(rc));  		goto error; diff --git a/drivers/isdn/gigaset/usb-gigaset.c b/drivers/isdn/gigaset/usb-gigaset.c index af89ce188f2..04f2ad7ba8b 100644 --- a/drivers/isdn/gigaset/usb-gigaset.c +++ b/drivers/isdn/gigaset/usb-gigaset.c @@ -763,7 +763,7 @@ static int gigaset_probe(struct usb_interface *interface,  		goto error;  	} -	ucs->bulk_out_urb = usb_alloc_urb(0, SLAB_KERNEL); +	ucs->bulk_out_urb = usb_alloc_urb(0, GFP_KERNEL);  	if (!ucs->bulk_out_urb) {  		dev_err(cs->dev, "Couldn't allocate bulk_out_urb\n");  		retval = -ENOMEM; @@ -774,7 +774,7 @@ static int gigaset_probe(struct usb_interface *interface,  	atomic_set(&ucs->busy, 0); -	ucs->read_urb = usb_alloc_urb(0, SLAB_KERNEL); +	ucs->read_urb = usb_alloc_urb(0, GFP_KERNEL);  	if (!ucs->read_urb) {  		dev_err(cs->dev, "No free urbs available\n");  		retval = -ENOMEM; @@ -797,7 +797,7 @@ static int gigaset_probe(struct usb_interface *interface,  			 gigaset_read_int_callback,  			 cs->inbuf + 0, endpoint->bInterval); -	retval = usb_submit_urb(ucs->read_urb, SLAB_KERNEL); +	retval = usb_submit_urb(ucs->read_urb, GFP_KERNEL);  	if (retval) {  		dev_err(cs->dev, "Could not submit URB (error %d)\n", -retval);  		goto error; diff --git a/drivers/media/dvb/cinergyT2/cinergyT2.c b/drivers/media/dvb/cinergyT2/cinergyT2.c index 206c13e47a0..9123147e376 100644 --- a/drivers/media/dvb/cinergyT2/cinergyT2.c +++ b/drivers/media/dvb/cinergyT2/cinergyT2.c @@ -287,7 +287,7 @@ static int cinergyt2_alloc_stream_urbs (struct cinergyt2 *cinergyt2)  	int i;  	cinergyt2->streambuf = usb_buffer_alloc(cinergyt2->udev, STREAM_URB_COUNT*STREAM_BUF_SIZE, -					      SLAB_KERNEL, &cinergyt2->streambuf_dmahandle); +					      GFP_KERNEL, &cinergyt2->streambuf_dmahandle);  	if (!cinergyt2->streambuf) {  		dprintk(1, "failed to alloc consistent stream memory area, bailing out!\n");  		return -ENOMEM; diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index ef4a731ca5c..334e078ffaf 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c @@ -451,7 +451,7 @@ static int __devinit m25p_probe(struct spi_device *spi)  		return -ENODEV;  	} -	flash = kzalloc(sizeof *flash, SLAB_KERNEL); +	flash = kzalloc(sizeof *flash, GFP_KERNEL);  	if (!flash)  		return -ENOMEM; diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c index ccd4dafce8e..b318500785e 100644 --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c @@ -6940,7 +6940,7 @@ static int __devinit ipr_alloc_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)  		return -ENOMEM;  	for (i = 0; i < IPR_NUM_CMD_BLKS; i++) { -		ipr_cmd = pci_pool_alloc (ioa_cfg->ipr_cmd_pool, SLAB_KERNEL, &dma_addr); +		ipr_cmd = pci_pool_alloc (ioa_cfg->ipr_cmd_pool, GFP_KERNEL, &dma_addr);  		if (!ipr_cmd) {  			ipr_free_cmd_blks(ioa_cfg); diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index c3c0626f550..09f2c74a40c 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -360,7 +360,7 @@ spi_alloc_master(struct device *dev, unsigned size)  	if (!dev)  		return NULL; -	master = kzalloc(size + sizeof *master, SLAB_KERNEL); +	master = kzalloc(size + sizeof *master, GFP_KERNEL);  	if (!master)  		return NULL; @@ -607,7 +607,7 @@ static int __init spi_init(void)  {  	int	status; -	buf = kmalloc(SPI_BUFSIZ, SLAB_KERNEL); +	buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);  	if (!buf) {  		status = -ENOMEM;  		goto err0; diff --git a/drivers/spi/spi_bitbang.c b/drivers/spi/spi_bitbang.c index 08c1c57c612..57289b61d0b 100644 --- a/drivers/spi/spi_bitbang.c +++ b/drivers/spi/spi_bitbang.c @@ -196,7 +196,7 @@ int spi_bitbang_setup(struct spi_device *spi)  		return -EINVAL;  	if (!cs) { -		cs = kzalloc(sizeof *cs, SLAB_KERNEL); +		cs = kzalloc(sizeof *cs, GFP_KERNEL);  		if (!cs)  			return -ENOMEM;  		spi->controller_state = cs; diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 0a46acf557a..77c05be5241 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -2371,7 +2371,7 @@ check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)  	struct usb_qualifier_descriptor	*qual;  	int				status; -	qual = kmalloc (sizeof *qual, SLAB_KERNEL); +	qual = kmalloc (sizeof *qual, GFP_KERNEL);  	if (qual == NULL)  		return; @@ -2922,7 +2922,7 @@ static int config_descriptors_changed(struct usb_device *udev)  		if (len < le16_to_cpu(udev->config[index].desc.wTotalLength))  			len = le16_to_cpu(udev->config[index].desc.wTotalLength);  	} -	buf = kmalloc (len, SLAB_KERNEL); +	buf = kmalloc (len, GFP_KERNEL);  	if (buf == NULL) {  		dev_err(&udev->dev, "no mem to re-read configs after reset\n");  		/* assume the worst */ diff --git a/drivers/usb/gadget/gmidi.c b/drivers/usb/gadget/gmidi.c index 64554acad63..31351826f2b 100644 --- a/drivers/usb/gadget/gmidi.c +++ b/drivers/usb/gadget/gmidi.c @@ -1236,7 +1236,7 @@ autoconf_fail:  	/* ok, we made sense of the hardware ... */ -	dev = kzalloc(sizeof(*dev), SLAB_KERNEL); +	dev = kzalloc(sizeof(*dev), GFP_KERNEL);  	if (!dev) {  		return -ENOMEM;  	} diff --git a/drivers/usb/gadget/goku_udc.c b/drivers/usb/gadget/goku_udc.c index a3076da3f4e..805a9826842 100644 --- a/drivers/usb/gadget/goku_udc.c +++ b/drivers/usb/gadget/goku_udc.c @@ -1864,7 +1864,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)  	}  	/* alloc, and start init */ -	dev = kmalloc (sizeof *dev, SLAB_KERNEL); +	dev = kmalloc (sizeof *dev, GFP_KERNEL);  	if (dev == NULL){  		pr_debug("enomem %s\n", pci_name(pdev));  		retval = -ENOMEM; diff --git a/drivers/usb/gadget/inode.c b/drivers/usb/gadget/inode.c index 86924f9cdd7..3fb1044a4db 100644 --- a/drivers/usb/gadget/inode.c +++ b/drivers/usb/gadget/inode.c @@ -412,7 +412,7 @@ ep_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)  	/* FIXME readahead for O_NONBLOCK and poll(); careful with ZLPs */  	value = -ENOMEM; -	kbuf = kmalloc (len, SLAB_KERNEL); +	kbuf = kmalloc (len, GFP_KERNEL);  	if (unlikely (!kbuf))  		goto free1; @@ -456,7 +456,7 @@ ep_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)  	/* FIXME writebehind for O_NONBLOCK and poll(), qlen = 1 */  	value = -ENOMEM; -	kbuf = kmalloc (len, SLAB_KERNEL); +	kbuf = kmalloc (len, GFP_KERNEL);  	if (!kbuf)  		goto free1;  	if (copy_from_user (kbuf, buf, len)) { @@ -1898,7 +1898,7 @@ dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)  	buf += 4;  	length -= 4; -	kbuf = kmalloc (length, SLAB_KERNEL); +	kbuf = kmalloc (length, GFP_KERNEL);  	if (!kbuf)  		return -ENOMEM;  	if (copy_from_user (kbuf, buf, length)) { diff --git a/drivers/usb/gadget/net2280.c b/drivers/usb/gadget/net2280.c index 0b590831582..3024c679e38 100644 --- a/drivers/usb/gadget/net2280.c +++ b/drivers/usb/gadget/net2280.c @@ -2861,7 +2861,7 @@ static int net2280_probe (struct pci_dev *pdev, const struct pci_device_id *id)  	}  	/* alloc, and start init */ -	dev = kzalloc (sizeof *dev, SLAB_KERNEL); +	dev = kzalloc (sizeof *dev, GFP_KERNEL);  	if (dev == NULL){  		retval = -ENOMEM;  		goto done; diff --git a/drivers/usb/gadget/omap_udc.c b/drivers/usb/gadget/omap_udc.c index 48a09fd89d1..030d87c28c2 100644 --- a/drivers/usb/gadget/omap_udc.c +++ b/drivers/usb/gadget/omap_udc.c @@ -2581,7 +2581,7 @@ omap_udc_setup(struct platform_device *odev, struct otg_transceiver *xceiv)  	/* UDC_PULLUP_EN gates the chip clock */  	// OTG_SYSCON_1_REG |= DEV_IDLE_EN; -	udc = kzalloc(sizeof(*udc), SLAB_KERNEL); +	udc = kzalloc(sizeof(*udc), GFP_KERNEL);  	if (!udc)  		return -ENOMEM; diff --git a/drivers/usb/gadget/zero.c b/drivers/usb/gadget/zero.c index 0f809dd6849..40710ea1b49 100644 --- a/drivers/usb/gadget/zero.c +++ b/drivers/usb/gadget/zero.c @@ -1190,7 +1190,7 @@ autoconf_fail:  	/* ok, we made sense of the hardware ... */ -	dev = kzalloc(sizeof(*dev), SLAB_KERNEL); +	dev = kzalloc(sizeof(*dev), GFP_KERNEL);  	if (!dev)  		return -ENOMEM;  	spin_lock_init (&dev->lock); diff --git a/drivers/usb/host/hc_crisv10.c b/drivers/usb/host/hc_crisv10.c index 396dc69d4b4..7fd872aa654 100644 --- a/drivers/usb/host/hc_crisv10.c +++ b/drivers/usb/host/hc_crisv10.c @@ -188,7 +188,7 @@ static DEFINE_TIMER(bulk_eot_timer, NULL, 0, 0);  #define CHECK_ALIGN(x) if (((__u32)(x)) & 0x00000003) \  {panic("Alignment check (DWORD) failed at %s:%s:%d\n", __FILE__, __FUNCTION__, __LINE__);} -#define SLAB_FLAG     (in_interrupt() ? GFP_ATOMIC : SLAB_KERNEL) +#define SLAB_FLAG     (in_interrupt() ? GFP_ATOMIC : GFP_KERNEL)  #define KMALLOC_FLAG  (in_interrupt() ? GFP_ATOMIC : GFP_KERNEL)  /* Most helpful debugging aid */ diff --git a/drivers/usb/host/ohci-pnx4008.c b/drivers/usb/host/ohci-pnx4008.c index 2dbb7741490..7f26f9bdbaf 100644 --- a/drivers/usb/host/ohci-pnx4008.c +++ b/drivers/usb/host/ohci-pnx4008.c @@ -134,7 +134,7 @@ static int isp1301_attach(struct i2c_adapter *adap, int addr, int kind)  {  	struct i2c_client *c; -	c = (struct i2c_client *)kzalloc(sizeof(*c), SLAB_KERNEL); +	c = (struct i2c_client *)kzalloc(sizeof(*c), GFP_KERNEL);  	if (!c)  		return -ENOMEM; diff --git a/drivers/usb/input/acecad.c b/drivers/usb/input/acecad.c index 0096373b5f9..909138e5aa0 100644 --- a/drivers/usb/input/acecad.c +++ b/drivers/usb/input/acecad.c @@ -152,7 +152,7 @@ static int usb_acecad_probe(struct usb_interface *intf, const struct usb_device_  	if (!acecad || !input_dev)  		goto fail1; -	acecad->data = usb_buffer_alloc(dev, 8, SLAB_KERNEL, &acecad->data_dma); +	acecad->data = usb_buffer_alloc(dev, 8, GFP_KERNEL, &acecad->data_dma);  	if (!acecad->data)  		goto fail1; diff --git a/drivers/usb/input/usbtouchscreen.c b/drivers/usb/input/usbtouchscreen.c index 49704d4ed0e..7f3c57da9bc 100644 --- a/drivers/usb/input/usbtouchscreen.c +++ b/drivers/usb/input/usbtouchscreen.c @@ -680,7 +680,7 @@ static int usbtouch_probe(struct usb_interface *intf,  		type->process_pkt = usbtouch_process_pkt;  	usbtouch->data = usb_buffer_alloc(udev, type->rept_size, -	                                  SLAB_KERNEL, &usbtouch->data_dma); +	                                  GFP_KERNEL, &usbtouch->data_dma);  	if (!usbtouch->data)  		goto out_free; diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c index ea04dccdc65..fb321864a92 100644 --- a/drivers/usb/misc/usbtest.c +++ b/drivers/usb/misc/usbtest.c @@ -213,7 +213,7 @@ static struct urb *simple_alloc_urb (  	if (bytes < 0)  		return NULL; -	urb = usb_alloc_urb (0, SLAB_KERNEL); +	urb = usb_alloc_urb (0, GFP_KERNEL);  	if (!urb)  		return urb;  	usb_fill_bulk_urb (urb, udev, pipe, NULL, bytes, simple_callback, NULL); @@ -223,7 +223,7 @@ static struct urb *simple_alloc_urb (  	urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;  	if (usb_pipein (pipe))  		urb->transfer_flags |= URB_SHORT_NOT_OK; -	urb->transfer_buffer = usb_buffer_alloc (udev, bytes, SLAB_KERNEL, +	urb->transfer_buffer = usb_buffer_alloc (udev, bytes, GFP_KERNEL,  			&urb->transfer_dma);  	if (!urb->transfer_buffer) {  		usb_free_urb (urb); @@ -315,7 +315,7 @@ static int simple_io (  		init_completion (&completion);  		if (usb_pipeout (urb->pipe))  			simple_fill_buf (urb); -		if ((retval = usb_submit_urb (urb, SLAB_KERNEL)) != 0) +		if ((retval = usb_submit_urb (urb, GFP_KERNEL)) != 0)  			break;  		/* NOTE:  no timeouts; can't be broken out of by interrupt */ @@ -374,7 +374,7 @@ alloc_sglist (int nents, int max, int vary)  	unsigned		i;  	unsigned		size = max; -	sg = kmalloc (nents * sizeof *sg, SLAB_KERNEL); +	sg = kmalloc (nents * sizeof *sg, GFP_KERNEL);  	if (!sg)  		return NULL; @@ -382,7 +382,7 @@ alloc_sglist (int nents, int max, int vary)  		char		*buf;  		unsigned	j; -		buf = kzalloc (size, SLAB_KERNEL); +		buf = kzalloc (size, GFP_KERNEL);  		if (!buf) {  			free_sglist (sg, i);  			return NULL; @@ -428,7 +428,7 @@ static int perform_sglist (  				(udev->speed == USB_SPEED_HIGH)  					? (INTERRUPT_RATE << 3)  					: INTERRUPT_RATE, -				sg, nents, 0, SLAB_KERNEL); +				sg, nents, 0, GFP_KERNEL);  		if (retval)  			break; @@ -855,7 +855,7 @@ test_ctrl_queue (struct usbtest_dev *dev, struct usbtest_param *param)  	 * as with bulk/intr sglists, sglen is the queue depth; it also  	 * controls which subtests run (more tests than sglen) or rerun.  	 */ -	urb = kcalloc(param->sglen, sizeof(struct urb *), SLAB_KERNEL); +	urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL);  	if (!urb)  		return -ENOMEM;  	for (i = 0; i < param->sglen; i++) { @@ -981,7 +981,7 @@ test_ctrl_queue (struct usbtest_dev *dev, struct usbtest_param *param)  		if (!u)  			goto cleanup; -		reqp = usb_buffer_alloc (udev, sizeof *reqp, SLAB_KERNEL, +		reqp = usb_buffer_alloc (udev, sizeof *reqp, GFP_KERNEL,  				&u->setup_dma);  		if (!reqp)  			goto cleanup; @@ -1067,7 +1067,7 @@ static int unlink1 (struct usbtest_dev *dev, int pipe, int size, int async)  	 * FIXME want additional tests for when endpoint is STALLing  	 * due to errors, or is just NAKing requests.  	 */ -	if ((retval = usb_submit_urb (urb, SLAB_KERNEL)) != 0) { +	if ((retval = usb_submit_urb (urb, GFP_KERNEL)) != 0) {  		dev_dbg (&dev->intf->dev, "submit fail %d\n", retval);  		return retval;  	} @@ -1251,7 +1251,7 @@ static int ctrl_out (struct usbtest_dev *dev,  	if (length < 1 || length > 0xffff || vary >= length)  		return -EINVAL; -	buf = kmalloc(length, SLAB_KERNEL); +	buf = kmalloc(length, GFP_KERNEL);  	if (!buf)  		return -ENOMEM; @@ -1403,7 +1403,7 @@ static struct urb *iso_alloc_urb (  	maxp *= 1 + (0x3 & (le16_to_cpu(desc->wMaxPacketSize) >> 11));  	packets = (bytes + maxp - 1) / maxp; -	urb = usb_alloc_urb (packets, SLAB_KERNEL); +	urb = usb_alloc_urb (packets, GFP_KERNEL);  	if (!urb)  		return urb;  	urb->dev = udev; @@ -1411,7 +1411,7 @@ static struct urb *iso_alloc_urb (  	urb->number_of_packets = packets;  	urb->transfer_buffer_length = bytes; -	urb->transfer_buffer = usb_buffer_alloc (udev, bytes, SLAB_KERNEL, +	urb->transfer_buffer = usb_buffer_alloc (udev, bytes, GFP_KERNEL,  			&urb->transfer_dma);  	if (!urb->transfer_buffer) {  		usb_free_urb (urb); @@ -1900,7 +1900,7 @@ usbtest_probe (struct usb_interface *intf, const struct usb_device_id *id)  	}  #endif -	dev = kzalloc(sizeof(*dev), SLAB_KERNEL); +	dev = kzalloc(sizeof(*dev), GFP_KERNEL);  	if (!dev)  		return -ENOMEM;  	info = (struct usbtest_info *) id->driver_info; @@ -1910,7 +1910,7 @@ usbtest_probe (struct usb_interface *intf, const struct usb_device_id *id)  	dev->intf = intf;  	/* cacheline-aligned scratch for i/o */ -	if ((dev->buf = kmalloc (TBUF_SIZE, SLAB_KERNEL)) == NULL) { +	if ((dev->buf = kmalloc (TBUF_SIZE, GFP_KERNEL)) == NULL) {  		kfree (dev);  		return -ENOMEM;  	} diff --git a/drivers/usb/net/rndis_host.c b/drivers/usb/net/rndis_host.c index c2a28d88ef3..99f26b3e502 100644 --- a/drivers/usb/net/rndis_host.c +++ b/drivers/usb/net/rndis_host.c @@ -469,7 +469,7 @@ static void rndis_unbind(struct usbnet *dev, struct usb_interface *intf)  	struct rndis_halt	*halt;  	/* try to clear any rndis state/activity (no i/o from stack!) */ -	halt = kcalloc(1, sizeof *halt, SLAB_KERNEL); +	halt = kcalloc(1, sizeof *halt, GFP_KERNEL);  	if (halt) {  		halt->msg_type = RNDIS_MSG_HALT;  		halt->msg_len = ccpu2(sizeof *halt); diff --git a/drivers/usb/net/usbnet.c b/drivers/usb/net/usbnet.c index 327f9755567..6e39e998825 100644 --- a/drivers/usb/net/usbnet.c +++ b/drivers/usb/net/usbnet.c @@ -179,9 +179,9 @@ static int init_status (struct usbnet *dev, struct usb_interface *intf)  	period = max ((int) dev->status->desc.bInterval,  		(dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3); -	buf = kmalloc (maxp, SLAB_KERNEL); +	buf = kmalloc (maxp, GFP_KERNEL);  	if (buf) { -		dev->interrupt = usb_alloc_urb (0, SLAB_KERNEL); +		dev->interrupt = usb_alloc_urb (0, GFP_KERNEL);  		if (!dev->interrupt) {  			kfree (buf);  			return -ENOMEM; diff --git a/fs/adfs/super.c b/fs/adfs/super.c index 9ade139086f..52eb10ca654 100644 --- a/fs/adfs/super.c +++ b/fs/adfs/super.c @@ -217,7 +217,7 @@ static kmem_cache_t *adfs_inode_cachep;  static struct inode *adfs_alloc_inode(struct super_block *sb)  {  	struct adfs_inode_info *ei; -	ei = (struct adfs_inode_info *)kmem_cache_alloc(adfs_inode_cachep, SLAB_KERNEL); +	ei = (struct adfs_inode_info *)kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/affs/super.c b/fs/affs/super.c index 5ea72c3a16c..81c73ec09f6 100644 --- a/fs/affs/super.c +++ b/fs/affs/super.c @@ -71,7 +71,7 @@ static kmem_cache_t * affs_inode_cachep;  static struct inode *affs_alloc_inode(struct super_block *sb)  {  	struct affs_inode_info *ei; -	ei = (struct affs_inode_info *)kmem_cache_alloc(affs_inode_cachep, SLAB_KERNEL); +	ei = (struct affs_inode_info *)kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	ei->vfs_inode.i_version = 1; diff --git a/fs/afs/super.c b/fs/afs/super.c index 67d1f5c819e..c6ead009bf7 100644 --- a/fs/afs/super.c +++ b/fs/afs/super.c @@ -412,7 +412,7 @@ static struct inode *afs_alloc_inode(struct super_block *sb)  	struct afs_vnode *vnode;  	vnode = (struct afs_vnode *) -		kmem_cache_alloc(afs_inode_cachep, SLAB_KERNEL); +		kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);  	if (!vnode)  		return NULL; diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index 07f7144f0e2..995348df94a 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c @@ -277,7 +277,7 @@ befs_alloc_inode(struct super_block *sb)  {          struct befs_inode_info *bi;          bi = (struct befs_inode_info *)kmem_cache_alloc(befs_inode_cachep, -							SLAB_KERNEL); +							GFP_KERNEL);          if (!bi)                  return NULL;          return &bi->vfs_inode; diff --git a/fs/bfs/inode.c b/fs/bfs/inode.c index ed27ffb3459..2e45123c8f7 100644 --- a/fs/bfs/inode.c +++ b/fs/bfs/inode.c @@ -233,7 +233,7 @@ static kmem_cache_t * bfs_inode_cachep;  static struct inode *bfs_alloc_inode(struct super_block *sb)  {  	struct bfs_inode_info *bi; -	bi = kmem_cache_alloc(bfs_inode_cachep, SLAB_KERNEL); +	bi = kmem_cache_alloc(bfs_inode_cachep, GFP_KERNEL);  	if (!bi)  		return NULL;  	return &bi->vfs_inode; diff --git a/fs/block_dev.c b/fs/block_dev.c index 36c0e7af9d0..063506705f2 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c @@ -239,7 +239,7 @@ static kmem_cache_t * bdev_cachep __read_mostly;  static struct inode *bdev_alloc_inode(struct super_block *sb)  { -	struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, SLAB_KERNEL); +	struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 84976cdbe71..84168629cea 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -245,7 +245,7 @@ static struct inode *  cifs_alloc_inode(struct super_block *sb)  {  	struct cifsInodeInfo *cifs_inode; -	cifs_inode = kmem_cache_alloc(cifs_inode_cachep, SLAB_KERNEL); +	cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL);  	if (!cifs_inode)  		return NULL;  	cifs_inode->cifsAttrs = 0x20;	/* default */ diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index 8355daff504..aedf683f011 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -153,7 +153,7 @@ cifs_buf_get(void)     albeit slightly larger than necessary and maxbuffersize      defaults to this and can not be bigger */  	ret_buf = -	    (struct smb_hdr *) mempool_alloc(cifs_req_poolp, SLAB_KERNEL | GFP_NOFS); +	    (struct smb_hdr *) mempool_alloc(cifs_req_poolp, GFP_KERNEL | GFP_NOFS);  	/* clear the first few header bytes */  	/* for most paths, more is cleared in header_assemble */ @@ -192,7 +192,7 @@ cifs_small_buf_get(void)     albeit slightly larger than necessary and maxbuffersize      defaults to this and can not be bigger */  	ret_buf = -	    (struct smb_hdr *) mempool_alloc(cifs_sm_req_poolp, SLAB_KERNEL | GFP_NOFS); +	    (struct smb_hdr *) mempool_alloc(cifs_sm_req_poolp, GFP_KERNEL | GFP_NOFS);  	if (ret_buf) {  	/* No need to clear memory here, cleared in header assemble */  	/*	memset(ret_buf, 0, sizeof(struct smb_hdr) + 27);*/ diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c index 7514237cf31..1f727765a8e 100644 --- a/fs/cifs/transport.c +++ b/fs/cifs/transport.c @@ -51,7 +51,7 @@ AllocMidQEntry(const struct smb_hdr *smb_buffer, struct cifsSesInfo *ses)  	}  	temp = (struct mid_q_entry *) mempool_alloc(cifs_mid_poolp, -						    SLAB_KERNEL | GFP_NOFS); +						    GFP_KERNEL | GFP_NOFS);  	if (temp == NULL)  		return temp;  	else { @@ -118,7 +118,7 @@ AllocOplockQEntry(struct inode * pinode, __u16 fid, struct cifsTconInfo * tcon)  		return NULL;  	}  	temp = (struct oplock_q_entry *) kmem_cache_alloc(cifs_oplock_cachep, -						       SLAB_KERNEL); +						       GFP_KERNEL);  	if (temp == NULL)  		return temp;  	else { diff --git a/fs/coda/inode.c b/fs/coda/inode.c index 88d12332116..50cedd2617d 100644 --- a/fs/coda/inode.c +++ b/fs/coda/inode.c @@ -43,7 +43,7 @@ static kmem_cache_t * coda_inode_cachep;  static struct inode *coda_alloc_inode(struct super_block *sb)  {  	struct coda_inode_info *ei; -	ei = (struct coda_inode_info *)kmem_cache_alloc(coda_inode_cachep, SLAB_KERNEL); +	ei = (struct coda_inode_info *)kmem_cache_alloc(coda_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	memset(&ei->c_fid, 0, sizeof(struct CodaFid)); diff --git a/fs/dnotify.c b/fs/dnotify.c index 2b0442db67e..e778b1737b7 100644 --- a/fs/dnotify.c +++ b/fs/dnotify.c @@ -77,7 +77,7 @@ int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)  	inode = filp->f_dentry->d_inode;  	if (!S_ISDIR(inode->i_mode))  		return -ENOTDIR; -	dn = kmem_cache_alloc(dn_cache, SLAB_KERNEL); +	dn = kmem_cache_alloc(dn_cache, GFP_KERNEL);  	if (dn == NULL)  		return -ENOMEM;  	spin_lock(&inode->i_lock); diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 776b2eed371..7196f50fe15 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -628,7 +628,7 @@ int ecryptfs_decrypt_page(struct file *file, struct page *page)  	num_extents_per_page = PAGE_CACHE_SIZE / crypt_stat->extent_size;  	base_extent = (page->index * num_extents_per_page);  	lower_page_virt = kmem_cache_alloc(ecryptfs_lower_page_cache, -					   SLAB_KERNEL); +					   GFP_KERNEL);  	if (!lower_page_virt) {  		rc = -ENOMEM;  		ecryptfs_printk(KERN_ERR, "Error getting page for encrypted " diff --git a/fs/ecryptfs/file.c b/fs/ecryptfs/file.c index a92ef05eff8..42099e779a5 100644 --- a/fs/ecryptfs/file.c +++ b/fs/ecryptfs/file.c @@ -250,7 +250,7 @@ static int ecryptfs_open(struct inode *inode, struct file *file)  	int lower_flags;  	/* Released in ecryptfs_release or end of function if failure */ -	file_info = kmem_cache_alloc(ecryptfs_file_info_cache, SLAB_KERNEL); +	file_info = kmem_cache_alloc(ecryptfs_file_info_cache, GFP_KERNEL);  	ecryptfs_set_file_private(file, file_info);  	if (!file_info) {  		ecryptfs_printk(KERN_ERR, diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index 70911412044..8a1945a84c3 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c @@ -369,7 +369,7 @@ static struct dentry *ecryptfs_lookup(struct inode *dir, struct dentry *dentry,  	BUG_ON(!atomic_read(&lower_dentry->d_count));  	ecryptfs_set_dentry_private(dentry,  				    kmem_cache_alloc(ecryptfs_dentry_info_cache, -						     SLAB_KERNEL)); +						     GFP_KERNEL));  	if (!ecryptfs_dentry_to_private(dentry)) {  		rc = -ENOMEM;  		ecryptfs_printk(KERN_ERR, "Out of memory whilst attempting " @@ -795,7 +795,7 @@ int ecryptfs_truncate(struct dentry *dentry, loff_t new_length)  	/* Released at out_free: label */  	ecryptfs_set_file_private(&fake_ecryptfs_file,  				  kmem_cache_alloc(ecryptfs_file_info_cache, -						   SLAB_KERNEL)); +						   GFP_KERNEL));  	if (unlikely(!ecryptfs_file_to_private(&fake_ecryptfs_file))) {  		rc = -ENOMEM;  		goto out; diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index c3746f56d16..745c0f1bfbb 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -207,7 +207,7 @@ parse_tag_3_packet(struct ecryptfs_crypt_stat *crypt_stat,  	/* Released: wipe_auth_tok_list called in ecryptfs_parse_packet_set or  	 * at end of function upon failure */  	auth_tok_list_item = -	    kmem_cache_alloc(ecryptfs_auth_tok_list_item_cache, SLAB_KERNEL); +	    kmem_cache_alloc(ecryptfs_auth_tok_list_item_cache, GFP_KERNEL);  	if (!auth_tok_list_item) {  		ecryptfs_printk(KERN_ERR, "Unable to allocate memory\n");  		rc = -ENOMEM; diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index a78d87d14ba..a2c6ccbce30 100644 --- a/fs/ecryptfs/main.c +++ b/fs/ecryptfs/main.c @@ -378,7 +378,7 @@ ecryptfs_fill_super(struct super_block *sb, void *raw_data, int silent)  	/* Released in ecryptfs_put_super() */  	ecryptfs_set_superblock_private(sb,  					kmem_cache_alloc(ecryptfs_sb_info_cache, -							 SLAB_KERNEL)); +							 GFP_KERNEL));  	if (!ecryptfs_superblock_to_private(sb)) {  		ecryptfs_printk(KERN_WARNING, "Out of memory\n");  		rc = -ENOMEM; @@ -402,7 +402,7 @@ ecryptfs_fill_super(struct super_block *sb, void *raw_data, int silent)  	/* through deactivate_super(sb) from get_sb_nodev() */  	ecryptfs_set_dentry_private(sb->s_root,  				    kmem_cache_alloc(ecryptfs_dentry_info_cache, -						     SLAB_KERNEL)); +						     GFP_KERNEL));  	if (!ecryptfs_dentry_to_private(sb->s_root)) {  		ecryptfs_printk(KERN_ERR,  				"dentry_info_cache alloc failed\n"); diff --git a/fs/ecryptfs/super.c b/fs/ecryptfs/super.c index 825757ae486..eaa5daaf106 100644 --- a/fs/ecryptfs/super.c +++ b/fs/ecryptfs/super.c @@ -50,7 +50,7 @@ static struct inode *ecryptfs_alloc_inode(struct super_block *sb)  	struct inode *inode = NULL;  	ecryptfs_inode = kmem_cache_alloc(ecryptfs_inode_info_cache, -					  SLAB_KERNEL); +					  GFP_KERNEL);  	if (unlikely(!ecryptfs_inode))  		goto out;  	ecryptfs_init_crypt_stat(&ecryptfs_inode->crypt_stat); diff --git a/fs/efs/super.c b/fs/efs/super.c index b3f50651eb6..69b15a996cf 100644 --- a/fs/efs/super.c +++ b/fs/efs/super.c @@ -57,7 +57,7 @@ static kmem_cache_t * efs_inode_cachep;  static struct inode *efs_alloc_inode(struct super_block *sb)  {  	struct efs_inode_info *ei; -	ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, SLAB_KERNEL); +	ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/eventpoll.c b/fs/eventpoll.c index ae228ec54e9..f5c88435c6b 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -961,7 +961,7 @@ static void ep_ptable_queue_proc(struct file *file, wait_queue_head_t *whead,  	struct epitem *epi = ep_item_from_epqueue(pt);  	struct eppoll_entry *pwq; -	if (epi->nwait >= 0 && (pwq = kmem_cache_alloc(pwq_cache, SLAB_KERNEL))) { +	if (epi->nwait >= 0 && (pwq = kmem_cache_alloc(pwq_cache, GFP_KERNEL))) {  		init_waitqueue_func_entry(&pwq->wait, ep_poll_callback);  		pwq->whead = whead;  		pwq->base = epi; @@ -1004,7 +1004,7 @@ static int ep_insert(struct eventpoll *ep, struct epoll_event *event,  	struct ep_pqueue epq;  	error = -ENOMEM; -	if (!(epi = kmem_cache_alloc(epi_cache, SLAB_KERNEL))) +	if (!(epi = kmem_cache_alloc(epi_cache, GFP_KERNEL)))  		goto eexit_1;  	/* Item initialization follow here ... */ diff --git a/fs/exec.c b/fs/exec.c index d993ea1a81a..2092bd20746 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -404,7 +404,7 @@ int setup_arg_pages(struct linux_binprm *bprm,  		bprm->loader += stack_base;  	bprm->exec += stack_base; -	mpnt = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	mpnt = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (!mpnt)  		return -ENOMEM; diff --git a/fs/ext2/super.c b/fs/ext2/super.c index d8b9abd95d0..85c237e7385 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -140,7 +140,7 @@ static kmem_cache_t * ext2_inode_cachep;  static struct inode *ext2_alloc_inode(struct super_block *sb)  {  	struct ext2_inode_info *ei; -	ei = (struct ext2_inode_info *)kmem_cache_alloc(ext2_inode_cachep, SLAB_KERNEL); +	ei = (struct ext2_inode_info *)kmem_cache_alloc(ext2_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  #ifdef CONFIG_EXT2_FS_POSIX_ACL diff --git a/fs/fat/cache.c b/fs/fat/cache.c index 82cc4f59e3b..8c272278455 100644 --- a/fs/fat/cache.c +++ b/fs/fat/cache.c @@ -63,7 +63,7 @@ void fat_cache_destroy(void)  static inline struct fat_cache *fat_cache_alloc(struct inode *inode)  { -	return kmem_cache_alloc(fat_cache_cachep, SLAB_KERNEL); +	return kmem_cache_alloc(fat_cache_cachep, GFP_KERNEL);  }  static inline void fat_cache_free(struct fat_cache *cache) diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 78945b53b0f..b58fd0c9f3c 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -482,7 +482,7 @@ static kmem_cache_t *fat_inode_cachep;  static struct inode *fat_alloc_inode(struct super_block *sb)  {  	struct msdos_inode_info *ei; -	ei = kmem_cache_alloc(fat_inode_cachep, SLAB_KERNEL); +	ei = kmem_cache_alloc(fat_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/fcntl.c b/fs/fcntl.c index e4f26165f12..c03dc9cb21c 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c @@ -567,7 +567,7 @@ int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fap  	int result = 0;  	if (on) { -		new = kmem_cache_alloc(fasync_cache, SLAB_KERNEL); +		new = kmem_cache_alloc(fasync_cache, GFP_KERNEL);  		if (!new)  			return -ENOMEM;  	} diff --git a/fs/freevxfs/vxfs_inode.c b/fs/freevxfs/vxfs_inode.c index 4786d51ad3b..d2dd0d70007 100644 --- a/fs/freevxfs/vxfs_inode.c +++ b/fs/freevxfs/vxfs_inode.c @@ -103,7 +103,7 @@ vxfs_blkiget(struct super_block *sbp, u_long extent, ino_t ino)  		struct vxfs_inode_info	*vip;  		struct vxfs_dinode	*dip; -		if (!(vip = kmem_cache_alloc(vxfs_inode_cachep, SLAB_KERNEL))) +		if (!(vip = kmem_cache_alloc(vxfs_inode_cachep, GFP_KERNEL)))  			goto fail;  		dip = (struct vxfs_dinode *)(bp->b_data + offset);  		memcpy(vip, dip, sizeof(*vip)); @@ -145,7 +145,7 @@ __vxfs_iget(ino_t ino, struct inode *ilistp)  		struct vxfs_dinode	*dip;  		caddr_t			kaddr = (char *)page_address(pp); -		if (!(vip = kmem_cache_alloc(vxfs_inode_cachep, SLAB_KERNEL))) +		if (!(vip = kmem_cache_alloc(vxfs_inode_cachep, GFP_KERNEL)))  			goto fail;  		dip = (struct vxfs_dinode *)(kaddr + offset);  		memcpy(vip, dip, sizeof(*vip)); diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 66571eafbb1..8c15139f275 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c @@ -41,7 +41,7 @@ static void fuse_request_init(struct fuse_req *req)  struct fuse_req *fuse_request_alloc(void)  { -	struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, SLAB_KERNEL); +	struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, GFP_KERNEL);  	if (req)  		fuse_request_init(req);  	return req; diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index fc420357037..e039e2047cc 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -46,7 +46,7 @@ static struct inode *fuse_alloc_inode(struct super_block *sb)  	struct inode *inode;  	struct fuse_inode *fi; -	inode = kmem_cache_alloc(fuse_inode_cachep, SLAB_KERNEL); +	inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);  	if (!inode)  		return NULL; diff --git a/fs/hfs/super.c b/fs/hfs/super.c index 85b17b3fa4a..ffc6409132c 100644 --- a/fs/hfs/super.c +++ b/fs/hfs/super.c @@ -145,7 +145,7 @@ static struct inode *hfs_alloc_inode(struct super_block *sb)  {  	struct hfs_inode_info *i; -	i = kmem_cache_alloc(hfs_inode_cachep, SLAB_KERNEL); +	i = kmem_cache_alloc(hfs_inode_cachep, GFP_KERNEL);  	return i ? &i->vfs_inode : NULL;  } diff --git a/fs/hfsplus/super.c b/fs/hfsplus/super.c index 194eede52fa..4a0c70c76c8 100644 --- a/fs/hfsplus/super.c +++ b/fs/hfsplus/super.c @@ -440,7 +440,7 @@ static struct inode *hfsplus_alloc_inode(struct super_block *sb)  {  	struct hfsplus_inode_info *i; -	i = kmem_cache_alloc(hfsplus_inode_cachep, SLAB_KERNEL); +	i = kmem_cache_alloc(hfsplus_inode_cachep, GFP_KERNEL);  	return i ? &i->vfs_inode : NULL;  } diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index 7f4756963d0..36e52173a54 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c @@ -522,7 +522,7 @@ static struct inode *hugetlbfs_alloc_inode(struct super_block *sb)  	if (unlikely(!hugetlbfs_dec_free_inodes(sbinfo)))  		return NULL; -	p = kmem_cache_alloc(hugetlbfs_inode_cachep, SLAB_KERNEL); +	p = kmem_cache_alloc(hugetlbfs_inode_cachep, GFP_KERNEL);  	if (unlikely(!p)) {  		hugetlbfs_inc_free_inodes(sbinfo);  		return NULL; diff --git a/fs/inode.c b/fs/inode.c index 26cdb115ce6..dd15984d51a 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -109,7 +109,7 @@ static struct inode *alloc_inode(struct super_block *sb)  	if (sb->s_op->alloc_inode)  		inode = sb->s_op->alloc_inode(sb);  	else -		inode = (struct inode *) kmem_cache_alloc(inode_cachep, SLAB_KERNEL); +		inode = (struct inode *) kmem_cache_alloc(inode_cachep, GFP_KERNEL);  	if (inode) {  		struct address_space * const mapping = &inode->i_data; diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index c34b862cdbf..4b6381cd2cf 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c @@ -62,7 +62,7 @@ static kmem_cache_t *isofs_inode_cachep;  static struct inode *isofs_alloc_inode(struct super_block *sb)  {  	struct iso_inode_info *ei; -	ei = kmem_cache_alloc(isofs_inode_cachep, SLAB_KERNEL); +	ei = kmem_cache_alloc(isofs_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c index bc4b8106a49..77be534ce42 100644 --- a/fs/jffs2/super.c +++ b/fs/jffs2/super.c @@ -33,7 +33,7 @@ static kmem_cache_t *jffs2_inode_cachep;  static struct inode *jffs2_alloc_inode(struct super_block *sb)  {  	struct jffs2_inode_info *ei; -	ei = (struct jffs2_inode_info *)kmem_cache_alloc(jffs2_inode_cachep, SLAB_KERNEL); +	ei = (struct jffs2_inode_info *)kmem_cache_alloc(jffs2_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/locks.c b/fs/locks.c index e0b6a80649a..a7b97d50c1e 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -147,7 +147,7 @@ static kmem_cache_t *filelock_cache __read_mostly;  /* Allocate an empty lock structure. */  static struct file_lock *locks_alloc_lock(void)  { -	return kmem_cache_alloc(filelock_cache, SLAB_KERNEL); +	return kmem_cache_alloc(filelock_cache, GFP_KERNEL);  }  static void locks_release_private(struct file_lock *fl) diff --git a/fs/minix/inode.c b/fs/minix/inode.c index 1e36bae4d0e..ce532c2deda 100644 --- a/fs/minix/inode.c +++ b/fs/minix/inode.c @@ -56,7 +56,7 @@ static kmem_cache_t * minix_inode_cachep;  static struct inode *minix_alloc_inode(struct super_block *sb)  {  	struct minix_inode_info *ei; -	ei = (struct minix_inode_info *)kmem_cache_alloc(minix_inode_cachep, SLAB_KERNEL); +	ei = (struct minix_inode_info *)kmem_cache_alloc(minix_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/ncpfs/inode.c b/fs/ncpfs/inode.c index 72dad552aa0..ed84d899220 100644 --- a/fs/ncpfs/inode.c +++ b/fs/ncpfs/inode.c @@ -45,7 +45,7 @@ static kmem_cache_t * ncp_inode_cachep;  static struct inode *ncp_alloc_inode(struct super_block *sb)  {  	struct ncp_inode_info *ei; -	ei = (struct ncp_inode_info *)kmem_cache_alloc(ncp_inode_cachep, SLAB_KERNEL); +	ei = (struct ncp_inode_info *)kmem_cache_alloc(ncp_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/nfs/direct.c b/fs/nfs/direct.c index bdfabf854a5..769fd0a0c77 100644 --- a/fs/nfs/direct.c +++ b/fs/nfs/direct.c @@ -143,7 +143,7 @@ static inline struct nfs_direct_req *nfs_direct_req_alloc(void)  {  	struct nfs_direct_req *dreq; -	dreq = kmem_cache_alloc(nfs_direct_cachep, SLAB_KERNEL); +	dreq = kmem_cache_alloc(nfs_direct_cachep, GFP_KERNEL);  	if (!dreq)  		return NULL; diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 08cc4c5919a..6b53aae4ed2 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -1080,7 +1080,7 @@ void nfs4_clear_inode(struct inode *inode)  struct inode *nfs_alloc_inode(struct super_block *sb)  {  	struct nfs_inode *nfsi; -	nfsi = (struct nfs_inode *)kmem_cache_alloc(nfs_inode_cachep, SLAB_KERNEL); +	nfsi = (struct nfs_inode *)kmem_cache_alloc(nfs_inode_cachep, GFP_KERNEL);  	if (!nfsi)  		return NULL;  	nfsi->flags = 0UL; diff --git a/fs/nfs/pagelist.c b/fs/nfs/pagelist.c index 829af323f28..a1561a820ab 100644 --- a/fs/nfs/pagelist.c +++ b/fs/nfs/pagelist.c @@ -26,7 +26,7 @@ static inline struct nfs_page *  nfs_page_alloc(void)  {  	struct nfs_page	*p; -	p = kmem_cache_alloc(nfs_page_cachep, SLAB_KERNEL); +	p = kmem_cache_alloc(nfs_page_cachep, GFP_KERNEL);  	if (p) {  		memset(p, 0, sizeof(*p));  		INIT_LIST_HEAD(&p->wb_list); diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c index 592a6402e85..911d1bcfc56 100644 --- a/fs/openpromfs/inode.c +++ b/fs/openpromfs/inode.c @@ -336,7 +336,7 @@ static struct inode *openprom_alloc_inode(struct super_block *sb)  {  	struct op_inode_info *oi; -	oi = kmem_cache_alloc(op_inode_cachep, SLAB_KERNEL); +	oi = kmem_cache_alloc(op_inode_cachep, GFP_KERNEL);  	if (!oi)  		return NULL; diff --git a/fs/proc/inode.c b/fs/proc/inode.c index 49dfb2ab783..b24cdb2f17c 100644 --- a/fs/proc/inode.c +++ b/fs/proc/inode.c @@ -88,7 +88,7 @@ static struct inode *proc_alloc_inode(struct super_block *sb)  	struct proc_inode *ei;  	struct inode *inode; -	ei = (struct proc_inode *)kmem_cache_alloc(proc_inode_cachep, SLAB_KERNEL); +	ei = (struct proc_inode *)kmem_cache_alloc(proc_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	ei->pid = NULL; diff --git a/fs/qnx4/inode.c b/fs/qnx4/inode.c index 5a41db2a218..5b943eb11d7 100644 --- a/fs/qnx4/inode.c +++ b/fs/qnx4/inode.c @@ -520,7 +520,7 @@ static kmem_cache_t *qnx4_inode_cachep;  static struct inode *qnx4_alloc_inode(struct super_block *sb)  {  	struct qnx4_inode_info *ei; -	ei = kmem_cache_alloc(qnx4_inode_cachep, SLAB_KERNEL); +	ei = kmem_cache_alloc(qnx4_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index 17249994110..32332516d65 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c @@ -496,7 +496,7 @@ static struct inode *reiserfs_alloc_inode(struct super_block *sb)  {  	struct reiserfs_inode_info *ei;  	ei = (struct reiserfs_inode_info *) -	    kmem_cache_alloc(reiserfs_inode_cachep, SLAB_KERNEL); +	    kmem_cache_alloc(reiserfs_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/romfs/inode.c b/fs/romfs/inode.c index ddcd9e1ef28..d1b455f9b66 100644 --- a/fs/romfs/inode.c +++ b/fs/romfs/inode.c @@ -555,7 +555,7 @@ static kmem_cache_t * romfs_inode_cachep;  static struct inode *romfs_alloc_inode(struct super_block *sb)  {  	struct romfs_inode_info *ei; -	ei = (struct romfs_inode_info *)kmem_cache_alloc(romfs_inode_cachep, SLAB_KERNEL); +	ei = (struct romfs_inode_info *)kmem_cache_alloc(romfs_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/smbfs/inode.c b/fs/smbfs/inode.c index 2c122ee83ad..22161710348 100644 --- a/fs/smbfs/inode.c +++ b/fs/smbfs/inode.c @@ -55,7 +55,7 @@ static kmem_cache_t *smb_inode_cachep;  static struct inode *smb_alloc_inode(struct super_block *sb)  {  	struct smb_inode_info *ei; -	ei = (struct smb_inode_info *)kmem_cache_alloc(smb_inode_cachep, SLAB_KERNEL); +	ei = (struct smb_inode_info *)kmem_cache_alloc(smb_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/fs/smbfs/request.c b/fs/smbfs/request.c index 0fb74697abc..3eb1402191b 100644 --- a/fs/smbfs/request.c +++ b/fs/smbfs/request.c @@ -61,7 +61,7 @@ static struct smb_request *smb_do_alloc_request(struct smb_sb_info *server,  	struct smb_request *req;  	unsigned char *buf = NULL; -	req = kmem_cache_alloc(req_cachep, SLAB_KERNEL); +	req = kmem_cache_alloc(req_cachep, GFP_KERNEL);  	VERBOSE("allocating request: %p\n", req);  	if (!req)  		goto out; diff --git a/fs/sysv/inode.c b/fs/sysv/inode.c index d63c5e48b05..a6ca12b747c 100644 --- a/fs/sysv/inode.c +++ b/fs/sysv/inode.c @@ -307,7 +307,7 @@ static struct inode *sysv_alloc_inode(struct super_block *sb)  {  	struct sysv_inode_info *si; -	si = kmem_cache_alloc(sysv_inode_cachep, SLAB_KERNEL); +	si = kmem_cache_alloc(sysv_inode_cachep, GFP_KERNEL);  	if (!si)  		return NULL;  	return &si->vfs_inode; diff --git a/fs/udf/super.c b/fs/udf/super.c index 1aea6a4f9a4..e50f24221de 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -112,7 +112,7 @@ static kmem_cache_t * udf_inode_cachep;  static struct inode *udf_alloc_inode(struct super_block *sb)  {  	struct udf_inode_info *ei; -	ei = (struct udf_inode_info *)kmem_cache_alloc(udf_inode_cachep, SLAB_KERNEL); +	ei = (struct udf_inode_info *)kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL; diff --git a/fs/ufs/super.c b/fs/ufs/super.c index ec79e3091d1..85a88c0c5e6 100644 --- a/fs/ufs/super.c +++ b/fs/ufs/super.c @@ -1209,7 +1209,7 @@ static kmem_cache_t * ufs_inode_cachep;  static struct inode *ufs_alloc_inode(struct super_block *sb)  {  	struct ufs_inode_info *ei; -	ei = (struct ufs_inode_info *)kmem_cache_alloc(ufs_inode_cachep, SLAB_KERNEL); +	ei = (struct ufs_inode_info *)kmem_cache_alloc(ufs_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	ei->vfs_inode.i_version = 1; diff --git a/include/linux/fs.h b/include/linux/fs.h index a8039c8d8cb..94b831b8157 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1483,7 +1483,7 @@ extern void __init vfs_caches_init(unsigned long);  extern struct kmem_cache *names_cachep; -#define __getname()	kmem_cache_alloc(names_cachep, SLAB_KERNEL) +#define __getname()	kmem_cache_alloc(names_cachep, GFP_KERNEL)  #define __putname(name) kmem_cache_free(names_cachep, (void *)(name))  #ifndef CONFIG_AUDITSYSCALL  #define putname(name)   __putname(name) diff --git a/include/linux/rmap.h b/include/linux/rmap.h index db2c1df4fef..61c2ab634b0 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h @@ -34,7 +34,7 @@ extern kmem_cache_t *anon_vma_cachep;  static inline struct anon_vma *anon_vma_alloc(void)  { -	return kmem_cache_alloc(anon_vma_cachep, SLAB_KERNEL); +	return kmem_cache_alloc(anon_vma_cachep, GFP_KERNEL);  }  static inline void anon_vma_free(struct anon_vma *anon_vma) diff --git a/include/linux/slab.h b/include/linux/slab.h index 34b046ea88f..639f65efa46 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h @@ -19,7 +19,6 @@ typedef struct kmem_cache kmem_cache_t;  #include	<asm/cache.h>		/* kmalloc_sizes.h needs L1_CACHE_BYTES */  /* flags for kmem_cache_alloc() */ -#define	SLAB_KERNEL		GFP_KERNEL  #define	SLAB_DMA		GFP_DMA  /* flags to pass to kmem_cache_create(). diff --git a/include/linux/taskstats_kern.h b/include/linux/taskstats_kern.h index 6562a2050a2..f81a5af8a4f 100644 --- a/include/linux/taskstats_kern.h +++ b/include/linux/taskstats_kern.h @@ -35,7 +35,7 @@ static inline void taskstats_tgid_alloc(struct task_struct *tsk)  		return;  	/* No problem if kmem_cache_zalloc() fails */ -	stats = kmem_cache_zalloc(taskstats_cache, SLAB_KERNEL); +	stats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL);  	spin_lock_irq(&tsk->sighand->siglock);  	if (!sig->stats) { diff --git a/ipc/mqueue.c b/ipc/mqueue.c index 7c274002c9f..813bb941342 100644 --- a/ipc/mqueue.c +++ b/ipc/mqueue.c @@ -224,7 +224,7 @@ static struct inode *mqueue_alloc_inode(struct super_block *sb)  {  	struct mqueue_inode_info *ei; -	ei = kmem_cache_alloc(mqueue_inode_cachep, SLAB_KERNEL); +	ei = kmem_cache_alloc(mqueue_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	return &ei->vfs_inode; diff --git a/kernel/delayacct.c b/kernel/delayacct.c index 66a0ea48751..70e9ec60308 100644 --- a/kernel/delayacct.c +++ b/kernel/delayacct.c @@ -41,7 +41,7 @@ void delayacct_init(void)  void __delayacct_tsk_init(struct task_struct *tsk)  { -	tsk->delays = kmem_cache_zalloc(delayacct_cache, SLAB_KERNEL); +	tsk->delays = kmem_cache_zalloc(delayacct_cache, GFP_KERNEL);  	if (tsk->delays)  		spin_lock_init(&tsk->delays->lock);  } diff --git a/kernel/fork.c b/kernel/fork.c index 5678e6c61ef..711aa5f10da 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -237,7 +237,7 @@ static inline int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)  				goto fail_nomem;  			charge = len;  		} -		tmp = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +		tmp = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  		if (!tmp)  			goto fail_nomem;  		*tmp = *mpnt; @@ -319,7 +319,7 @@ static inline void mm_free_pgd(struct mm_struct * mm)   __cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock); -#define allocate_mm()	(kmem_cache_alloc(mm_cachep, SLAB_KERNEL)) +#define allocate_mm()	(kmem_cache_alloc(mm_cachep, GFP_KERNEL))  #define free_mm(mm)	(kmem_cache_free(mm_cachep, (mm)))  #include <linux/init_task.h> @@ -621,7 +621,7 @@ static struct files_struct *alloc_files(void)  	struct files_struct *newf;  	struct fdtable *fdt; -	newf = kmem_cache_alloc(files_cachep, SLAB_KERNEL); +	newf = kmem_cache_alloc(files_cachep, GFP_KERNEL);  	if (!newf)  		goto out; diff --git a/kernel/taskstats.c b/kernel/taskstats.c index d3d28919d4b..1b2b326cf70 100644 --- a/kernel/taskstats.c +++ b/kernel/taskstats.c @@ -425,7 +425,7 @@ void taskstats_exit_alloc(struct taskstats **ptidstats, unsigned int *mycpu)  	*mycpu = raw_smp_processor_id();  	*ptidstats = NULL; -	tmp = kmem_cache_zalloc(taskstats_cache, SLAB_KERNEL); +	tmp = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL);  	if (!tmp)  		return; diff --git a/kernel/user.c b/kernel/user.c index 220e586127a..c1f93c164c9 100644 --- a/kernel/user.c +++ b/kernel/user.c @@ -132,7 +132,7 @@ struct user_struct * alloc_uid(uid_t uid)  	if (!up) {  		struct user_struct *new; -		new = kmem_cache_alloc(uid_cachep, SLAB_KERNEL); +		new = kmem_cache_alloc(uid_cachep, GFP_KERNEL);  		if (!new)  			return NULL;  		new->uid = uid; diff --git a/mm/mempolicy.c b/mm/mempolicy.c index e7b69c90cfd..ad864f8708b 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -1326,7 +1326,7 @@ struct mempolicy *__mpol_copy(struct mempolicy *old)  	atomic_set(&new->refcnt, 1);  	if (new->policy == MPOL_BIND) {  		int sz = ksize(old->v.zonelist); -		new->v.zonelist = kmemdup(old->v.zonelist, sz, SLAB_KERNEL); +		new->v.zonelist = kmemdup(old->v.zonelist, sz, GFP_KERNEL);  		if (!new->v.zonelist) {  			kmem_cache_free(policy_cache, new);  			return ERR_PTR(-ENOMEM); diff --git a/mm/mmap.c b/mm/mmap.c index 7b40abd7cba..7be110e98d4 100644 --- a/mm/mmap.c +++ b/mm/mmap.c @@ -1736,7 +1736,7 @@ int split_vma(struct mm_struct * mm, struct vm_area_struct * vma,  	if (mm->map_count >= sysctl_max_map_count)  		return -ENOMEM; -	new = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +	new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  	if (!new)  		return -ENOMEM; @@ -2057,7 +2057,7 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,  		    vma_start < new_vma->vm_end)  			*vmap = new_vma;  	} else { -		new_vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL); +		new_vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);  		if (new_vma) {  			*new_vma = *vma;  			pol = mpol_copy(vma_policy(vma)); diff --git a/mm/shmem.c b/mm/shmem.c index 4959535fc14..bdaecfdaabd 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -2263,7 +2263,7 @@ static struct kmem_cache *shmem_inode_cachep;  static struct inode *shmem_alloc_inode(struct super_block *sb)  {  	struct shmem_inode_info *p; -	p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, SLAB_KERNEL); +	p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);  	if (!p)  		return NULL;  	return &p->vfs_inode; diff --git a/mm/slab.c b/mm/slab.c index 9f34b4946fb..1f374c1df01 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -2237,7 +2237,7 @@ kmem_cache_create (const char *name, size_t size, size_t align,  	align = ralign;  	/* Get cache's description obj. */ -	cachep = kmem_cache_zalloc(&cache_cache, SLAB_KERNEL); +	cachep = kmem_cache_zalloc(&cache_cache, GFP_KERNEL);  	if (!cachep)  		goto oops; diff --git a/net/decnet/dn_table.c b/net/decnet/dn_table.c index bdbc3f43166..101e5ccaf09 100644 --- a/net/decnet/dn_table.c +++ b/net/decnet/dn_table.c @@ -590,7 +590,7 @@ create:  replace:  	err = -ENOBUFS; -	new_f = kmem_cache_alloc(dn_hash_kmem, SLAB_KERNEL); +	new_f = kmem_cache_alloc(dn_hash_kmem, GFP_KERNEL);  	if (new_f == NULL)  		goto out; diff --git a/net/ipv4/fib_hash.c b/net/ipv4/fib_hash.c index 107bb6cbb0b..4463443e42c 100644 --- a/net/ipv4/fib_hash.c +++ b/net/ipv4/fib_hash.c @@ -485,13 +485,13 @@ static int fn_hash_insert(struct fib_table *tb, struct fib_config *cfg)  		goto out;  	err = -ENOBUFS; -	new_fa = kmem_cache_alloc(fn_alias_kmem, SLAB_KERNEL); +	new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);  	if (new_fa == NULL)  		goto out;  	new_f = NULL;  	if (!f) { -		new_f = kmem_cache_alloc(fn_hash_kmem, SLAB_KERNEL); +		new_f = kmem_cache_alloc(fn_hash_kmem, GFP_KERNEL);  		if (new_f == NULL)  			goto out_free_new_fa; diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c index d17990ec724..6be6caf1af3 100644 --- a/net/ipv4/fib_trie.c +++ b/net/ipv4/fib_trie.c @@ -1187,7 +1187,7 @@ static int fn_trie_insert(struct fib_table *tb, struct fib_config *cfg)  			u8 state;  			err = -ENOBUFS; -			new_fa = kmem_cache_alloc(fn_alias_kmem, SLAB_KERNEL); +			new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);  			if (new_fa == NULL)  				goto out; @@ -1232,7 +1232,7 @@ static int fn_trie_insert(struct fib_table *tb, struct fib_config *cfg)  		goto out;  	err = -ENOBUFS; -	new_fa = kmem_cache_alloc(fn_alias_kmem, SLAB_KERNEL); +	new_fa = kmem_cache_alloc(fn_alias_kmem, GFP_KERNEL);  	if (new_fa == NULL)  		goto out; diff --git a/net/socket.c b/net/socket.c index e8db54702a6..4f417c2ddc1 100644 --- a/net/socket.c +++ b/net/socket.c @@ -236,7 +236,7 @@ static struct inode *sock_alloc_inode(struct super_block *sb)  {  	struct socket_alloc *ei; -	ei = kmem_cache_alloc(sock_inode_cachep, SLAB_KERNEL); +	ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);  	if (!ei)  		return NULL;  	init_waitqueue_head(&ei->socket.wait); diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c index 49dba5febbb..df753d0a884 100644 --- a/net/sunrpc/rpc_pipe.c +++ b/net/sunrpc/rpc_pipe.c @@ -143,7 +143,7 @@ static struct inode *  rpc_alloc_inode(struct super_block *sb)  {  	struct rpc_inode *rpci; -	rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, SLAB_KERNEL); +	rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, GFP_KERNEL);  	if (!rpci)  		return NULL;  	return &rpci->vfs_inode; diff --git a/security/keys/key.c b/security/keys/key.c index 70eacbe5abd..157bac658bf 100644 --- a/security/keys/key.c +++ b/security/keys/key.c @@ -285,7 +285,7 @@ struct key *key_alloc(struct key_type *type, const char *desc,  	}  	/* allocate and initialise the key and its description */ -	key = kmem_cache_alloc(key_jar, SLAB_KERNEL); +	key = kmem_cache_alloc(key_jar, GFP_KERNEL);  	if (!key)  		goto no_memory_2; diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 78f98fe084e..ac1aeed0b28 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -181,7 +181,7 @@ static int inode_alloc_security(struct inode *inode)  	struct task_security_struct *tsec = current->security;  	struct inode_security_struct *isec; -	isec = kmem_cache_alloc(sel_inode_cache, SLAB_KERNEL); +	isec = kmem_cache_alloc(sel_inode_cache, GFP_KERNEL);  	if (!isec)  		return -ENOMEM; diff --git a/security/selinux/ss/avtab.c b/security/selinux/ss/avtab.c index d049c7acbc8..2dfc6134c2c 100644 --- a/security/selinux/ss/avtab.c +++ b/security/selinux/ss/avtab.c @@ -36,7 +36,7 @@ avtab_insert_node(struct avtab *h, int hvalue,  		  struct avtab_key *key, struct avtab_datum *datum)  {  	struct avtab_node * newnode; -	newnode = kmem_cache_alloc(avtab_node_cachep, SLAB_KERNEL); +	newnode = kmem_cache_alloc(avtab_node_cachep, GFP_KERNEL);  	if (newnode == NULL)  		return NULL;  	memset(newnode, 0, sizeof(struct avtab_node));  |