[PATCH] Designated initializers for shm

Rusty Russell (rusty@rustcorp.com.au)
Wed, 28 Aug 2002 15:28:11 +1000


[ 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/