~smoser/ubuntu/quantal/module-init-tools/lp-1115710

« back to all changes in this revision

Viewing changes to elfops.h

  • Committer: Bazaar Package Importer
  • Author(s): Andy Whitcroft
  • Date: 2011-06-08 11:53:21 UTC
  • mfrom: (0.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110608115321-2zwtf5l3mbbz1sck
Tags: 3.13-1ubuntu1
* Manual Resync with Debian version 3.13-1.
  - Remaining changes:
    + Ubuntu specific control scripts carrying upgrade quirks
    + Ubuntu specific modprobe.d/depmod.d contents
    + debian/patches/ubuntu-maps_by_default -- Reenable map files
    + debian/patches/ubuntu-modinfo-wantparm-uninitialised -- fix
      performance issue due to unitialised variable in modinfo
    + switch source to 'unapply-patches' to simplify merging with
      debian upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
        char *pathname;
24
24
 
25
25
        /* File operations */
26
 
        struct module_ops *ops;
 
26
        const struct module_ops *ops;
27
27
 
28
28
        /* Convert endian? */
29
29
        int conv;
76
76
        int (*dump_modvers)(struct elf_file *module);
77
77
};
78
78
 
79
 
extern struct module_ops mod_ops32, mod_ops64;
 
79
extern const struct module_ops mod_ops32, mod_ops64;
80
80
 
81
81
struct elf_file *grab_elf_file(const char *pathname);
82
82
void release_elf_file(struct elf_file *file);