|
Subject: Patch series to mark struct file_operations and struct inode_operations const Newsgroups: gmane.linux.kernel Date: 2007-01-14 00:51:08 GMT (2 years, 24 weeks, 4 days, 5 hours and 34 minutes ago) Hi, today a sizable portion of the "struct file_operations" variables in the kernel are const, but by far not all. Nor are any of the struct inode_operations const. Marking these read-only datastructures const has the advantage of reducing false sharing of these, often hot, datastructures. In addition there have been cases where drivers or filesystems accidentally and incorrectly wrote to such a struct forgetting that it's a shared datastructure. By marking these const, the compiler will warn/error on such instances. The series is split up for size, there isn't really any logical order for such a simple search-and-replace operation. Greetings, Arjan van de Ven |
|
|