lkml.org 
[lkml]   [2002]   [Aug]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] Designated initializers for shm
Date
[ This is the last remenant in kernel/, mm/ and ipc/ ]

Name: Designated initializers for kernel/, mm/ and ipc/
Author: Rusty Russell
Status: Trivial

D: The old form of designated initializers are obsolete: we need to
D: replace them with the ISO C forms before 2.6. Gcc has always supported
D: both forms anyway.

diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal .15522-linux-2.5.30/ipc/shm.c .15522-linux-2.5.30.updated/ipc/shm.c
--- .15522-linux-2.5.30/ipc/shm.c 2002-08-02 11:15:10.000000000 +1000
+++ .15522-linux-2.5.30.updated/ipc/shm.c 2002-08-09 16:14:44.000000000 +1000
@@ -154,13 +154,13 @@ static int shm_mmap(struct file * file,
}

static struct file_operations shm_file_operations = {
- mmap: shm_mmap
+ .mmap = shm_mmap
};

static struct vm_operations_struct shm_vm_ops = {
- open: shm_open, /* callback for a new vm-area open */
- close: shm_close, /* callback for when the vm-area is released */
- nopage: shmem_nopage,
+ .open = shm_open, /* callback for a new vm-area open */
+ .close = shm_close, /* callback for when the vm-area is released */
+ .nopage = shmem_nopage,
};

static int newseg (key_t key, int shmflg, size_t size)
--
Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:28    [W:0.033 / U:0.208 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site